ONG Contract API
Fetch the balance of a specific address.
ontSdk.Native.Ong.BalanceOf(address common.Address) (uint64, error)
Fetch the balance of a specific address.
ONG has 18 decimals.
ontSdk.Native.Ong.BalanceOfV2(address common.Address) (*big.Int, error)
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
]
}
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
]
}
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)
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 tokens to be withdrawn as allowance.
ontSdk.Native.Ong.Approve(gasPrice, gasLimit uint64, from *Account, to common.Address, amount uint64) (common.Uint256, error)
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)
Return the allowance from the
from
account to the to
account.ontSdk.Native.Ong.Allowance(from, to common.Address) (uint64, error)
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)
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)
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)
Withdraw generated ONG.
ontSdk.Native.Ong.WithdrawONG(gasPrice, gasLimit uint64, address *Account, amount uint64) (common.Uint256, error)
Calculate the amount of ONG generated.
ontSdk.Native.Ong.UnboundONG(address common.Address) (uint64, error)
Last modified 1yr ago