Lotus JSON-RPC supported endpoints
The deployed Lotus cluster is meant to support basic wallet and chain exploration functionality. This documentation is broken into two sections covering each of those use cases.
Any endpoints that are not required for basic wallet and chain exploration functionality are block-listed.
Please note that the JWT's used through these docs are for example only. You will have to replace with your own token when making requests.
Message sending
When sending Filecoin in the Glif wallet, we use the following calls described in this folder, usually in this exact order.
POSTWalletBalance
First, we check to make sure the wallet address that is attempting to send Filecoin has enough Filecoin to send the desired message.
NOTE - the string returned from the JSON-RPC represents the AttoFil value. We use the filecoin-number package to convert between AttoFil and Fil denominations.
POSTMpoolGetNonce
Next, we get the address' nonce value.
IMPORTANT - if this is the first time wallet, this call will return an error. If the error contains "address not found", we assume the Nonce is 0, since no on-chain transactions reference this address.