Average Token Hold Time
Returns the average ERC tokens hold time in a wallet.
Last updated
Returns the average ERC tokens hold time in a wallet.
Last updated
query TokensAverageHoldTime($walletAddress: String!){
tokensHoldTime(walletAddress: $walletAddress){
walletAddress
averageHoldTime
}
}
{
"walletAddress": String // Wallet Address
}
{
"data": {
"walletHoldings": {
"walletAddress": String, // The wallet address
"erc20TokensList": Array<{
"chain": String, // Blockchain network of the token
"tokenAddress": String, // Contract address of the token
"tokenName": String, // Name of the token
"tokenSymbol": String // Symbol of the token
}>,
"erc721TokensList": Array<{
"chain": String, // Blockchain network of the token
"tokenAddress": String, // Contract address of the token
"tokenName": String, // Name of the token
"tokenSymbol": String // Symbol of the token
}>,
"erc1155TokensList": Array<{
"chain": String, // Blockchain network of the token
"tokenAddress": String, // Contract address of the token
"tokenName": String, // Name of the token
"tokenSymbol": String // Symbol of the token
}>
}
}
}