BitcoincashAPI
BitcoincashAPI
Method
HTTP request
Description
createBitcoinCashAccount
open class func createBitcoinCashAccount(authorization: String, bitcoinCashInput: BitcoinCashInput, completion: @escaping (_ data: AccountAPIResponse?, _ error: Error?) -> Void)Example
// The following code samples are still beta. For any issue, please report via http://github.com/OpenAPITools/openapi-generator/issues/new
import OpenAPIClient
let authorization = "authorization_example" // String |
let bitcoinCashInput = BitcoinCashInput(network: "network_example", privateKey: "privateKey_example") // BitcoinCashInput |
BitcoincashAPI.createBitcoinCashAccount(authorization: authorization, bitcoinCashInput: bitcoinCashInput) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
getBitcoinCashAccount
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
listBitcoinCashAccounts
Example
Parameters
Name
Type
Description
Notes
Return type
Authorization
HTTP request headers
signBitcoinCashTransaction
Example
Parameters
Name
Type
Description
Notes