Account
This function creates a new sugarfunge account to interact with the node.
- 1.Call the account/create endpoint.
{
"seed": "//074a488cc87418a474b5ac30dbcf979caf2099110af805fa208b1a0c53097fc2",
"account": "5EcFZ4EkYFMYcpJWyjgDde4zG8tVvmdanXeSyNTyD42r552b"
}
- seed: represents the private key of the new account.
- account: represents the public key of the new account.
This function checks if the account exists and is active.
- 1.Call the account/exists endpoint with the following request body:
- account: the account address that will be checked.
{
"account": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"
}
{
"account": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",
"exists": true
}
- account: the checked account address.
- exists: the account current status.
This function computes the account from seed.
- 1.Call the account/seeded endpoint with the following request body:
- seed: the seed of the account to be computed.
{
"seed": "//Alice"
}
{
"seed": "//Alice",
"account": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY"
}
- seed: the seed of the account.
- account: the account address thas was computed.
This function funds an account to be able to carry out different operations on the node.
- 1.Call the account/fund endpoint with the following request body:
- seed: the seed of the account that would be doing the funding.
- to: the account address that will be funded.
- amount: the specific amount to be added to the account.
{
"seed": "//Alice",
"amount": 750000000000,
"to": "5EcFZ4EkYFMYcpJWyjgDde4zG8tVvmdanXeSyNTyD42r552b"
}
{
"from": "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY",
"to": "5EcFZ4EkYFMYcpJWyjgDde4zG8tVvmdanXeSyNTyD42r552b",
"amount": 750000000000
}
- from: the account address that did the funding.
- to: the account address thas was funded.
- amount: the specific amount that was added to the account.
This function checks the balance of sugar in an account.
- 1.Call the account/balance endpoint with the following request body:
- account: the account address that will be checked.
{
"account": "5EcFZ4EkYFMYcpJWyjgDde4zG8tVvmdanXeSyNTyD42r552b"
}
{
"amount": 750000000000
}
- amount: the amount of sugar in an account.
Last modified 6mo ago