TOTAL_MINTS | TOTAL_TXS | TOTAL_MINTER | TOTAL_FEE | |
---|---|---|---|---|
1 | 513547 | 512752 | 513547 | 1283.720413794 |
hbd1994mint.fun Overview
Updated 2024-01-29
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
count(distinct a.DECODED_LOG:tokenId) as total_mints,
count(distinct a.tx_hash) as total_txs,
count(distinct a.DECODED_LOG:to) as total_Minter,
sum(tx_fee) as total_fee
from ethereum.core.ez_decoded_event_logs a
left join ethereum.core.fact_transactions b on a.tx_hash = b.tx_hash and a.BLOCK_TIMESTAMP = b.BLOCK_TIMESTAMP
where a.CONTRACT_ADDRESS = '0x0000000000664ceffed39244a8312bd895470803'
and a.DECODED_LOG:from = '0x0000000000000000000000000000000000000000'
and b.status = 'SUCCESS'
Last run: about 1 year agoAuto-refreshes every 3 hours
1
39B
140s