TXCOUNT_BNB | TXCOUNT_BASE | TOTAL_TXN | |
---|---|---|---|
1 | 2086219 | 812765 | 2898984 |
0xHedmanDmail Transactions
Updated 2024-01-26
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
›
⌄
with A AS(
SELECT count(FROM_ADDRESS) as txcount_BNB
FROM
bsc.core.fact_transactions
WHERE TO_ADDRESS = '0x98f39d0f8c67885071cc99c5af1d4cacbcc89b0c'),
B AS(
SELECT count(FROM_ADDRESS) as txcount_BASE
FROM
base.core.fact_transactions
WHERE TO_ADDRESS = '0x47fbe95e981c0df9737b6971b451fb15fdc989d9')
SELECT txcount_BNB, txcount_BASE, (txcount_BNB + txcount_BASE) as Total_txn
FROM
A JOIN B
Last run: about 1 year ago
1
26B
40s