OSTKit is an api wrapper written in swift for ost kit . The complete blockchain toolkit for business
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
CocoaPods 1.1+ is required to build OSTKit 4.0+.
To integrate OSTKit into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod 'OSTKit', '~> 0.0.5'
end
Then, run the following command:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate OSTKit into your Xcode project using Carthage, specify it in your Cartfile
:
github "ost-sdk/ostkit-ios" ~> 0.0.9
Run carthage update
to build the framework and drag the built ostkit.framework
into your Xcode project.
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler.
Once you have your Swift package set up, adding OSTKit as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/ost-sdk/ostkit-ios.git", from: "0.0.8")
]
import ostkit
let sdk = OSTSDK(
baseURLString: BASE_URL_STRING,
key: API_KEY,
serect: API_SECRET,
debugMode: true
)
/// create user services instance
let userServices = sdk.userServices()
/// create user
userServices.create(name: 'steve') {
[weak self] response in
guard let strongSelf = self else { return }
switch response {
case .success(let user):
debugPrint(user)
case .failure(let error):
debugPrint(error)
}
}
/// listing user
userServices.list {
[weak self] response in
guard let strongSelf = self else { return }
switch response {
case .success(let json):
if let data = json["data"] as? [String: Any] {
let users = data["economy_users"] as? [[String: Any]] ?? []
}
case .failure(let error):
debugPrint(error)
}
}
/// create transaction type services instance
let services = sdk.transactionServices()
/// create
let kind = TransactionTypeServices.Kind.userToUser
let type = TransactionTypeServices.CurrencyType.bt
services.create(name: 'Upvote', kind: kind,
currencyType: type, currencyValue: 0.1, commissionPercent: 10) {
[weak self] response in
guard let strongSelf = self else { return }
switch response {
case .success(let user):
debugPrint(user)
case .failure(let error):
debugPrint(error)
}
}
/// listing
services.list {
[weak self] response in
guard let strongSelf = self else { return }
switch response {
case .success(let json):
if let data = json["data"] as? [String: Any] {
let trans = data["transaction_types"] as? [[String: Any]] ?? []
}
case .failure(let error):
debugPrint(error)
}
}
OSTKit is owned by @vanductai and maintained by @duong1521991
You can contact me at email [duong1521991@gmail.com]()