KinSDK
A library for using Kin.
Installation
CocoaPods
Add the following to your Podfile
.
pod 'KinSDK'
Sub-project
- Clone this repo (as a submodule or in a different directory, it's up to you).
git clone --recursive https://github.com/kinfoundation/kin-core-ios
- Drag
KinSDK.xcodeproj
as a subproject. - In your main
.xcodeproj
file, select the desired target(s). - Go to Build Phases, expand Target Dependencies, and add
KinSDK
. - In Swift,
import KinSDK
and you are good to go! (We haven't yet tested Objective-C.)
This is how we did the Sample App - you might look at the setup for a concrete example.
API Usage
The SDK exposes two classes, KinClient
, and KinAccount
.
KinClient
KinClient
stores the configuration for the network, and is responsible for managing accounts.
let kinClient = KinClient(with: URL, networkId: NetworkId)
Account Management
public func addAccount() throws -> KinAccount
public func deleteAccount(at index: Int) throws
public private(set) var accounts: KinAccounts
KinAccount
Before an account can be used on the configured network, it must be funded with the native network currency. This step must be performed by a service, and is outside the scope of this SDK.
Activation
Before an account can receive KIN, it must be activated.
account.activate(completion: { txHash, error in
if error == nil {
// report success
}
})
KIN
To retrieve the account's current balance:
func balance(completion: @escaping BalanceCompletion)
To obtain a watcher object which will emit an event whenever the account's balance changes. See the Sample App for an example.
func watchBalance(_ balance: Decimal?) throws -> BalanceWatch
To send KIN to another user:
func sendTransaction(to recipient: String,
kin: Decimal,
memo: String?,
completion: @escaping TransactionCompletion)
The memo
field can contain a string up to 28 characters in length. A typical usage is to include an order# that a service can use to verify payment.
Miscellaneous
var publicAddress: String { get }
The account's address on the network. This is the identifier used to specify the destination for a payment, or to request account creation from a service.
func status(completion: @escaping (AccountStatus?, Error?) -> Void)
Preparing an account for use is a two-step process.
- Creating the account. This is done by an external service.
- Activating the account. This is done using the API mentioned above.
To obtain the current status of the account, call the above API.
Other Methods
Both KinClient
and KinAccount
have other methods which should prove useful. Specifically, KinAccount
has alternative methods for many operations that are either synchronous, or return a Promise, instead of using a completion handler.
Error handling
KinSDK
wraps errors in an operation-specific error for each method of KinAccount
. The underlying error is the actual cause of failure.
Common errors
StellarError.missingAccount
: The account does not exist on the Stellar network. You must create the account by issuing a CREATE_ACCOUNT
operation with KinAccount.publicAddress
as the destination. This is done using an app-specific service, and is outside the scope of this SDK.
StellarError.missingBalance
: For an account to receive KIN, it must trust the KIN Issuer. Call KinAccount.activate()
to perform this operation.
Contributing
Please review our CONTRIBUTING.md guide before opening issues and pull requests.
License
This repository is licensed under the Kin Ecosystem SDK License.