RANGE | NUM_TRADERS | |
---|---|---|
1 | More 200 trades | 211339 |
2 | 50 - 100 trades | 22606 |
3 | 1 - 5 trades | 23555 |
4 | 10 - 50 trades | 38956 |
5 | 5 - 10 trades | 14397 |
6 | Only one trade | 122293 |
7 | 100 - 200 trades | 25916 |
saeedmzn[Thurster on Blast] Distribution by number of trades
Updated 2025-02-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from [Thurster on Blast] Distribution by number of trades @ https://flipsidecrypto.xyz/edit/queries/bb8fddb4-fbb4-4c09-a44f-58961cf0ef35
-- forked from [Thurster on Blast] Top assets by traded volume @ https://flipsidecrypto.xyz/edit/queries/59738417-3e01-49f7-abd5-09beecafa590
-- forked from [Thurster on Blast] Top assets by number of trades @ https://flipsidecrypto.xyz/edit/queries/1e380abd-0c91-4170-bba4-7e050aa95532
-- forked from [Thurster on Blast] swaps over time @ https://flipsidecrypto.xyz/edit/queries/f49ca891-3bae-4e37-9d29-0ac57f5c5ad2
with eth_transfers as (
select
ORIGIN_FROM_ADDRESS trader,
TRACE_INDEX EVENT_INDEX ,
'ETH' symbol ,
AMOUNT_USD,
BLOCK_TIMESTAMP,
TX_HASH ,
from_address,
TO_ADDRESS
from blast.core.ez_native_transfers
where ORIGIN_TO_ADDRESS = '0x337827814155ecbf24d20231fca4444f530c0555'
),
token_transfers as (
select ORIGIN_FROM_ADDRESS trader,
EVENT_INDEX ,
SYMBOL,
AMOUNT_USD,
BLOCK_TIMESTAMP,
TX_HASH,
from_address,
TO_ADDRESS
from blast.core.ez_token_transfers
where ORIGIN_TO_ADDRESS = '0x337827814155ecbf24d20231fca4444f530c0555'
),
swaps as (
select * from eth_transfers
UNION
Last run: 3 months ago
7
180B
40s