Skip to content

Commit ad142b7

Browse files
committed
mayhem mode api
1 parent 534a833 commit ad142b7

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

docs/Examples/Solana/transfers.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,34 @@ Try the query [here](https://ide.bitquery.io/pumpfun-transfers-type-v1-to-pumpfu
199199
}
200200
```
201201

202+
## Check if a pump fun token was launched in Mayhem mode - Historical Query
203+
204+
This query finds "Pump Fun" token launches in Mayhem mode by filtering for a transfer of exactly 1,000,000,000,000,000 units (1 Billion if adjusted to 6 decimal places) to the specified receiver and token mint. It returns currency info, amount, and transaction signature. In mayhem mode token, 1 Billion token supply is minted to `BwWK17cbHxwWBKZkUYvzxLcNQ1YVyaFezduWbtm2de6s` Mayhem Autonomous AI agent.
205+
Try out the API [here](https://ide.bitquery.io/check-if-a-pump-fun-token-was-in-mayhem-mode).
206+
207+
```
208+
query MyQuery {
209+
solana {
210+
transfers(
211+
amount:{is:1000000000000000}
212+
receiverAddress: {is: "BwWK17cbHxwWBKZkUYvzxLcNQ1YVyaFezduWbtm2de6s"}
213+
currency: {is: "8ZVajuCD45RHs53LaCLpnqeKY519Ns64XZd12ZcLpump"}
214+
){
215+
currency{
216+
name
217+
symbol
218+
decimals
219+
address
220+
}
221+
amount
222+
transaction{
223+
signature
224+
}
225+
}
226+
}
227+
}
228+
```
229+
202230
## Currency Sent and Received by an address between a time period
203231

204232
Below API will give you details on the aggreated currency sent and received by an address in a timeperiod.

0 commit comments

Comments
 (0)