Tokens
Tokens
Get list of tokens
Typescript Core SDK
📚SDK REFERENCE
listTokens
Get a list of tokens ordered by contract_address:
Request
const getListTokens = async (
orderBy: 'contract_address' | 'name' | 'symbol'
) => {
const response = await client.listTokens({
orderBy,
});
return response;
};
getListTokens('contract_address')
.then((result) => {
console.log(result);
})
.catch((e) => {
console.log(e);
});Example response
Kotlin (JVM) Core SDK
📚SDK REFERENCE
listTokens
Swift Core SDK
📚SDK REFERENCE
listTokens
Golang Core SDK
📚SDK REFERENCE
ListTokens
C# Core SDK
📚SDK REFERENCE
ListTokens
Get details about a token
Typescript Core SDK
📚SDK REFERENCE
getToken
Request
Get details about the token with address 0x1facdd0165489f373255a90304650e15481b2c85:
Example response
Kotlin (JVM) Core SDK
📚SDK REFERENCE
getToken
Swift Core SDK
📚SDK REFERENCE
getToken
Golang Core SDK
📚SDK REFERENCE
GetToken
C# Core SDK
📚SDK REFERENCE
GetToken
Last updated