ONG Contract API
Index
Methods
BalanceOf
BalanceOf
Fetch the balance of a specific address.
ontSdk.Native.Ong.BalanceOf(address common.Address) (uint64, error)
BalanceOfV2
BalanceOfV2
Fetch the balance of a specific address.
ONG has 18 decimals.
ontSdk.Native.Ong.BalanceOfV2(address common.Address) (*big.Int, error)
Transfer
Transfer
Initiate a transaction.
ontSdk.Native.Ong.Transfer(gasPrice, gasLimit uint64, from *Account, to common.Address, amount uint64) (common.Uint256, error)
Emit a corresponding contract event. For example:
{
"ContractAddress": "0200000000000000000000000000000000000000",
"States": [
"transfer",
"APS1wGGVUjsJYLUvncckzgsdqGT3KRqMtx",
"AFmseVrdL9f9oyCzZefL9tG6UbviEH9ugK",
50000000
]
}
TransferV2
TransferV2
Initiate a transaction.
ONG has 18 decimals.
ontSdk.Native.Ong.TransferV2(gasPrice, gasLimit uint64, from *Account, to common.Address, amount *big.Int) (common.Uint256, error)
If the transfer amount is divisible by 10^9, the event emitted will be the same as the one by Transfer
.
Otherwise, the amount consists of two integers. The first one represents amount
/10^9, and the second one represents amount
%10^9. For example, if the transaction amount is 0.050000000123456789 ONG, the event looks like:
{
"ContractAddress": "0200000000000000000000000000000000000000",
"States": [
"transfer",
"APS1wGGVUjsJYLUvncckzgsdqGT3KRqMtx",
"AFmseVrdL9f9oyCzZefL9tG6UbviEH9ugK",
50000000,
123456789
]
}
MultiTransfer
MultiTransfer
Initiate a batch transfer from one address to multiple addresses.
ontSdk.Native.Ong.MultiTransfer(gasPrice, gasLimit uint64, states []*ont.State, signer *Account) (common.Uint256, error)
MultiTransferV2
MultiTransferV2
Initiate a batch transfer from one address to multiple addresses.
ONG has 18 decimals.
ontSdk.Native.Ong.MultiTransferV2(gasPrice, gasLimit uint64, states []*ont.State, signer *Account) (common.Uint256, error)
Approve
Approve
Approve tokens to be withdrawn as allowance.
ontSdk.Native.Ong.Approve(gasPrice, gasLimit uint64, from *Account, to common.Address, amount uint64) (common.Uint256, error)
ApproveV2
ApproveV2
Approve tokens to be withdrawn as allowance.
ONG has 18 decimals.
ontSdk.Native.Ong.ApproveV2(gasPrice, gasLimit uint64, from *Account, to common.Address, amount *big.Int) (common.Uint256, error)
Allowance
Allowance
Return the allowance from the from
account to the to
account.
ontSdk.Native.Ong.Allowance(from, to common.Address) (uint64, error)
AllowanceV2
AllowanceV2
Return the allowance from the from
account to the to
account.
ONG has 18 decimals.
ontSdk.Native.Ong.AllowanceV2(from, to common.Address) (*big.Int, error)
TransferFrom
TransferFrom
Allow tokens to be transferred from allowance.
ontSdk.Native.Ong.TransferFrom(gasPrice, gasLimit uint64, sender *Account, from, to common.Address, amount uint64) (common.Uint256, error)
TransferFromV2
TransferFromV2
Allow tokens to be transferred from allowance.
ONG has 18 decimals.
ontSdk.Native.Ong.TransferFrom(gasPrice, gasLimit uint64, sender *Account, from, to common.Address, amount *big.Int) (common.Uint256, error)
WithdrawONG
WithdrawONG
Withdraw generated ONG.
ontSdk.Native.Ong.WithdrawONG(gasPrice, gasLimit uint64, address *Account, amount uint64) (common.Uint256, error)
UnboundONG
UnboundONG
Calculate the amount of ONG generated.
ontSdk.Native.Ong.UnboundONG(address common.Address) (uint64, error)
Last updated
Was this helpful?