AMLBot2024-01-09 07:26 PM copy
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
›
⌄
with contract_creation as(
select
block_timestamp::date date,
from_address deployer,
tx_hash
from
ethereum.core.fact_transactions
--ethereum.core.ez_decoded_event_logs
where
block_timestamp::date = '2024-01-05'
and
to_address is null
-- and
-- origin_function_signature = '0x60c06040'
),
initial_token_mints as(
select
tx_hash,
contract_address,
symbol
from
ethereum.core.ez_token_transfers
where
block_timestamp::date = '2024-01-05'
)
select
distinct
date,
contract_creation.tx_hash,
deployer,
contract_address token_contract,
symbol
from
QueryRunArchived: QueryRun has been archived