AMLBotfinal daily token creation
Updated 2024-01-10Copy Reference Fork
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 final token creation @ https://flipsidecrypto.xyz/edit/queries/f3240b1a-ac8a-4795-99ee-e1f5401cb251
with contract_creation as(
select
distinct
block_timestamp,
origin_from_address deployer,
tx_hash,
contract_address
from
--ethereum.core.fact_transactions
ethereum.core.ez_decoded_event_logs
where
block_timestamp::date >= '2023-12-01'
and
origin_to_address is null
-- and
-- origin_function_signature = '0x60c06040'
),
initial_token_mints as(
select
distinct
contract_address,
symbol
from
ethereum.core.ez_token_transfers
where
block_timestamp::date >= '2023-12-01'
and
contract_address in (select contract_address from contract_creation)
and
from_address = '0x0000000000000000000000000000000000000000'
),
prep as(
select
distinct
QueryRunArchived: QueryRun has been archived