Returns the current supply for an SPL Token mint.
Source
$ curl https://api.devnet.solana.com -s -X \> POST -H "Content-Type: application/json" -d '> {> "jsonrpc": "2.0",> "id": 1,> "method": "getTokenSupply",> "params": [> "Gh9ZwEmdLJ8DscKNTkTqPbNwLNNBjuSzaG9Vp2KGtKJr",> {> "commitment": "finalized"> }> ]> }> '
params
stringrequired
Pubkey of the token Mint to query, as base-58 encoded string
objectoptional
Configuration object containing the following fields:
result
Response
{"jsonrpc": "2.0","result": {"context": { "apiVersion": "3.1.8", "slot": 1114 },"value": {"amount": "100000","decimals": 2,"uiAmount": 1000,"uiAmountString": "1000"}},"id": 1}
object
RpcResponse object containing:
Is this page helpful?