Date | Number of Holders | Chain | |
---|---|---|---|
1 | 2023-02-17 00:00:00.000 | 4 | Arbitrum |
2 | 2023-02-18 00:00:00.000 | 4 | Arbitrum |
3 | 2023-02-19 00:00:00.000 | 4 | Arbitrum |
4 | 2023-02-20 00:00:00.000 | 4 | Arbitrum |
5 | 2023-02-21 00:00:00.000 | 4 | Arbitrum |
6 | 2023-02-22 00:00:00.000 | 6 | Arbitrum |
7 | 2023-02-23 00:00:00.000 | 6 | Arbitrum |
8 | 2023-02-24 00:00:00.000 | 6 | Arbitrum |
9 | 2023-02-25 00:00:00.000 | 6 | Arbitrum |
10 | 2023-02-26 00:00:00.000 | 6 | Arbitrum |
11 | 2023-02-27 00:00:00.000 | 6 | Arbitrum |
12 | 2023-02-28 00:00:00.000 | 6 | Arbitrum |
13 | 2023-03-01 00:00:00.000 | 6 | Arbitrum |
14 | 2022-10-29 00:00:00.000 | 14 | Avalanche |
15 | 2022-10-30 00:00:00.000 | 14 | Avalanche |
16 | 2022-10-31 00:00:00.000 | 18 | Avalanche |
17 | 2022-11-01 00:00:00.000 | 16 | Avalanche |
18 | 2022-11-02 00:00:00.000 | 16 | Avalanche |
19 | 2022-11-03 00:00:00.000 | 16 | Avalanche |
20 | 2022-11-04 00:00:00.000 | 16 | Avalanche |
Eman-RazNumber of $AXL Holders Across Different Chains Over Time
Updated 2025-03-11
999
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
›
⌄
-----------------------------------------------------------------------
--------------------------------arbitrum-------------------------------
-----------------------------------------------------------------------
with arbitrum as (with transactions as (
select
block_timestamp :: date as date,
from_address as address,
- amount as amount
from
arbitrum.core.ez_token_transfers
where
contract_address = lower('0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f')
union
all
select
block_timestamp :: date as date,
to_address as address,
amount as amount
from
arbitrum.core.ez_token_transfers
where
contract_address = lower('0x23ee2343B892b1BB63503a4FAbc840E0e2C6810f')
),
date_list as (
select
block_timestamp :: date as date
from
arbitrum.core.ez_token_transfers
where
block_timestamp :: date >= '2022-12-01'
),
all_dates AS (
SELECT
DISTINCT date
FROM
date_list
Last run: about 1 month ago
...
6191
254KB
212s