Skip to content

Commit fbb210a

Browse files
committed
added token sniffer link to pump fun doc
1 parent d3ddd3a commit fbb210a

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

docs/blockchain/Solana/Pumpfun/Pump-Fun-API.mdx

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ Get data for New, Migrating, Graduated Pump.Fun Tokens through our Pump.Fun API.
1010
The below graphQL APIs and Streams are examples of data points you can get with Bitquery.
1111
If you have any question on other data points reach out to [support](https://t.me/Bloxy_info)
1212

13+
:::tip 🛡️ **Try Our PumpFun Token Sniffer**
14+
Want to analyze Pump.fun tokens for potential phishing risks? Check out our [**PumpFun Token Sniffer**](https://docs.bitquery.io/pumpfun-token-sniffer/) — a proof-of-concept tool that helps identify suspicious token behavior by analyzing transfers and trades.
15+
:::
16+
1317
Need zero-latency Pumpfun data? [Read about our Shred Streams and Contact us for a Trial](https://docs.bitquery.io/docs/streams/real-time-solana-data/).
1418

1519
You may also be interested in:
@@ -1222,10 +1226,22 @@ Gets pool token balances for liquidity estimation across multiple known pool acc
12221226
{
12231227
Solana {
12241228
BalanceUpdates(
1225-
where: {BalanceUpdate: {Currency: {Native: false}, PostBalance: {gt: "0"},
1226-
Account: {Owner: {in: ["7jVYY8nUjbt5gzLt3tZJaHD9NSMyaTuvPhJLfazmjjyy", "7iDwUGUDLccKdWN5hUppoqxLeUMjw7BieQAFdTwj3F5V"]}}}} # add pool address here
1227-
limit: {count: 10}
1228-
orderBy: {descending: Block_Time}
1229+
where: {
1230+
BalanceUpdate: {
1231+
Currency: { Native: false }
1232+
PostBalance: { gt: "0" }
1233+
Account: {
1234+
Owner: {
1235+
in: [
1236+
"7jVYY8nUjbt5gzLt3tZJaHD9NSMyaTuvPhJLfazmjjyy"
1237+
"7iDwUGUDLccKdWN5hUppoqxLeUMjw7BieQAFdTwj3F5V"
1238+
]
1239+
}
1240+
}
1241+
}
1242+
} # add pool address here
1243+
limit: { count: 10 }
1244+
orderBy: { descending: Block_Time }
12291245
) {
12301246
BalanceUpdate {
12311247
Account {
@@ -1244,7 +1260,6 @@ Gets pool token balances for liquidity estimation across multiple known pool acc
12441260
}
12451261
}
12461262
}
1247-
12481263
```
12491264

12501265
</details>

0 commit comments

Comments
 (0)