GraphQL Schema
Basic Entiies
Jetton Entity
type Jetton {
"Raw address of the jetton on the blockchain"
address: String!
"Bounceable address of the jetton on the blockchain"
bounceableAddress: String!
"Jetton symbol"
symbol: String!
"Jetton name"
name: String!
"Jetton decimals"
decimals: Int!
"Jetton image"
image: String!
"Jetton description"
description: String!
"Jetton wallet"
wallet: String!
"Jetton total supply across all pools that include this token"
totalSupply: Float!
"Transactions across all pools that include this token"
txCount: Int!
"Jetton volume across all pools that include this token in token units"
volume: Float!
"Jetton volume across all pools that include this token in USD"
volumeUsd: Float!
"Jetton fees across all pools that include this token in USD"
feesUsd: Float!
"Jetton TVL across all pools that include this token"
totalValueLocked: Float!
"Jetton TVL across all pools that include this token in USD"
totalValueLockedUsd: Float!
"Jetton price derived in TON"
derivedTon: Float!
"Jetton price derived in USD"
derivedUsd: Float!
}Pool Entity
Position Entity
Historical Data Entities
Historical DEX Data Entity
Historical Jetton Data Entity
Historical Pool Data Entity
Historical Position Data Entity
Transaction Entities
Swap Transaction Enitity
Mint Transaction Entity
Burn Transaction Entity
Collect Transaction Entity
Last updated