Returns a list of EVM (ERC-20, ...) tokens on the runtime.
Path parameters
The runtime which to query.
Query parameters
The maximum numbers of items to return.
The number of items to skip before starting to collect the result set.
A filter on the name, the name or symbol must contain this value as a substring.
The field to sort the tokens by. If unset, the tokens will be sorted by number of holders.
Response
The requested tokens.
Example response
{
"total_count": 412,
"is_total_count_clipped": true,
"evm_tokens": [
{
"contract_addr": "oasis1qp2hssandc7dekjdr6ygmtzt783k3gn38uupdeys",
"name": "Uniswap",
"symbol": "USDT",
"decimals": 18,
"total_supply": "1234567890123456789012",
"num_holders": 123,
"ref_swap": {
"reserve0": "1234567890123456789012",
"reserve1": "1234567890123456789012"
},
"ref_token": {
"name": "Wrapped ROSE",
"symbol": "wROSE",
"decimals": 18
}
}
]
}Changes
Changed in 2 of the 3 revisions of this API.66
- ○
added the new optional
queryrequest parametersort_bynew-optional-request-parameter
- ○
added the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/ref_swapto the response with the200statusresponse-optional-property-added
- ○
added the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/ref_tokento the response with the200statusresponse-optional-property-added
- ○
added the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/relative_priceto the response with the200statusresponse-optional-property-added
- ○
added the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/relative_token_addressto the response with the200statusresponse-optional-property-added
- ○
added the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/relative_total_valueto the response with the200statusresponse-optional-property-added
- ○
- ●
deleted the
queryrequest parametersort_byrequest-parameter-removed
- ●
removed the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/ref_swapfrom the response with the200statusresponse-optional-property-removed
- ●
removed the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/ref_tokenfrom the response with the200statusresponse-optional-property-removed
- ●
removed the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/relative_pricefrom the response with the200statusresponse-optional-property-removed
- ●
removed the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/relative_token_addressfrom the response with the200statusresponse-optional-property-removed
- ●
removed the optional property
allOf[subschema #2]/evm_tokens/items/allOf[EvmToken]/relative_total_valuefrom the response with the200statusresponse-optional-property-removed
This revision also has 5 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ●