getSupply RPC Method
Returns information about the current supply.Parameters
object optionalConfiguration object containing the following fields:commitment
string optionalThe level of commitment desired when querying stateexcludeNonCirculatingAccountsList
bool optionalExclude non-circulating accounts list from response
Result Details
The result is an RpcResponse JSON object withvalue containing:
-
total: <u64>- Total supply in lamports
- Represents the entire token supply of the blockchain
-
circulating: <u64>- Circulating supply in lamports
- Represents the number of tokens currently in circulation
-
nonCirculating: <u64>- Non-circulating supply in lamports
- Represents tokens not currently available for trading or use
-
nonCirculatingAccounts: <array>- List of account addresses with non-circulating tokens
- Returned as an array of strings
- Will be an empty array if
excludeNonCirculatingAccountsListis set totrue