cfx_getNextNonce - Conflux

Returns the next nonce that should be used by the given account when sending a transaction.

Parameters

  • BASE32 - Address to check for balance.
  • QUANTITY|TAG - (optional, default: "latest_state") Integer epoch number, or the string "latest_state", "latest_confirmed", "latest_checkpoint" or "earliest"

Returns

QUANTITY - Integer of the next nonce that should be used by the given address.


Example

Request

curl -X POST \
--data '{"jsonrpc":"2.0","method":"cfx_getNextNonce","params":["cfx:aan8jr1vfpfctx5z68j0mfesn5y6e9b0ta16f4mc0f", "latest_state"],"id":1}' \
-H "Content-Type: application/json" \
https://cfx-core.unifra.io/v1/ad2eb3c7a9404cc6a35a6641eaf70577 


Result

{
    "jsonrpc": "2.0",
    "result": "0x8",
    "id": 1
}
Language
URL
Click Try It! to start a request and see the response here!