Here is my query copied from pumpfun docs to return all pump tokens with market cap > 1m. It currently returns only 29 records. There should be many more. How come there is so few?
{
Solana {
DEXTrades(
limitBy: {by: Trade_Buy_Currency_MintAddress, count: 1}
limit: {count: 200, offset: 0}
orderBy: {descending: Trade_Buy_Price}
where: {Trade: {Dex: {ProtocolName: {is: "pump_amm"}}, Buy: {Currency: {UpdateAuthority: {is: "TSLvdd1pWpHVjahSpsvCXUbgwsL3JAcvokwaKt1eokM"}}, PriceInUSD: {gt: 0.0001}}, Sell: {AmountInUSD: {gt: "10"}}}, Transaction: {Result: {Success: true}}, Block: {Time: {since: "2025-01-01T13:31:12.411241Z"}}}
) {
Trade {
Buy {
Price(maximum: Block_Time)
PriceInUSD(maximum: Block_Time)
Currency {
Name
Symbol
MintAddress
Decimals
Fungible
Uri
}
}
Market {
MarketAddress
}
}
joinTokenSupplyUpdates(
TokenSupplyUpdate_Currency_MintAddress: Trade_Buy_Currency_MintAddress
join: inner
where: {Instruction: {Program: {Address: {is: "6EF8rrecthR5Dkzon8Nwu78hRvfCKubJ14M5uBEwF6P"}, Method: {is: "create"}}}}
) {
Block {
Time
}
Transaction {
Dev: Signer
Signature
}
}
}
}
}