RippleAPI
RippleAPI
All URIs are relative to https://beta.usemoon.ai
createRippleAccount
POST /ripple
getRippleAccount
GET /ripple/{accountName}
listRippleAccounts
GET /ripple
signRippleTransaction
POST /ripple/{accountName}/sign-tx
createRippleAccount
open class func createRippleAccount(authorization: String, rippleInput: RippleInput, 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 rippleInput = RippleInput(network: "network_example", privateKey: "privateKey_example") // RippleInput |
RippleAPI.createRippleAccount(authorization: authorization, rippleInput: rippleInput) { (response, error) in
guard error == nil else {
print(error)
return
}
if (response) {
dump(response)
}
}Parameters
authorization
String
rippleInput
RippleInput
Return type
AccountAPIResponse
Authorization
ApiKeyAuth, BearerAuth
HTTP request headers
Content-Type: application/json
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
getRippleAccount
Example
Parameters
authorization
String
accountName
String
Return type
AccountAPIResponse
Authorization
ApiKeyAuth, BearerAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
listRippleAccounts
Example
Parameters
authorization
String
Return type
AccountAPIResponse
Authorization
ApiKeyAuth, BearerAuth
HTTP request headers
Content-Type: Not defined
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
signRippleTransaction
Example
Parameters
authorization
String
accountName
String
rippleTransactionInput
RippleTransactionInput
Return type
RippleAPIResponse
Authorization
ApiKeyAuth, BearerAuth
HTTP request headers
Content-Type: application/json
Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]