Shows the list of tokens, sorted by token creation timestamp (DESC) - fresh ones go first.
Filter
You can optionally filter by symbol substring.
Pagination
Use cursor, {first, after} or {last, before} filters for pagination.
We followed GraphQL best practices and implemented Relay Cursor Connections Specification for pagination for all list types. You can read more here https://relay.dev/graphql/connections.htm
query{
ft{
tokens(symbolSubstring:"EVER", first:4){
edges{
node{
address
symbol
standard
name
decimals
rootOwner
totalSupply
}
cursor
}
}
}
}
Token info
Returns info about the token by its root contract address
query{
ft{
token(address:"0:a49cd4e158a9a15555e624759e2e4e766d22600b7800d891e46f9291f044a93d"){
address
symbol
name
decimals
rootOwner
totalSupply
}
}
}
Holder info
Returns info about token owner by its address.
Pagination
Use cursor, {first, after} or {last, before} filters for pagination of list fields.