COLLECTION | USERS | TRANSACTIONS | |
---|---|---|---|
1 | Baby Bears | 235 | 518 |
2 | Band Bears | 432 | 1052 |
3 | Bit Bears | 919 | 2111 |
4 | Bond Bears | 79 | 133 |
5 | Bong Bears | 61 | 81 |
6 | Boo Bears | 132 | 261 |
freemartianBridgers
Updated 2025-02-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
32
33
34
35
36
›
⌄
WITH bridges AS (
SELECT block_timestamp AS time, 'Bong Bears' AS collection, tx_hash, from_address, value, tx_fee
FROM ethereum.core.fact_transactions
WHERE to_address = '0x1897c001341f81ca72154b75b882ae708e06bf48'
AND origin_function_signature = '0x21eb730b'
AND block_timestamp::date >= '2025-02-06'
UNION ALL
SELECT block_timestamp AS time, 'Bond Bears' AS collection, tx_hash, from_address, value, tx_fee
FROM ethereum.core.fact_transactions
WHERE to_address = '0x6b1c374105467d1fc1090c989bcbbcc172c8a89c'
AND origin_function_signature = '0x21eb730b'
AND block_timestamp::date >= '2025-02-06'
UNION ALL
SELECT block_timestamp AS time, 'Boo Bears' AS collection, tx_hash, from_address, value, tx_fee
FROM ethereum.core.fact_transactions
WHERE to_address = '0x7591992f1a98636c6b7207f30382ca4bec83d9be'
AND origin_function_signature = '0x21eb730b'
AND block_timestamp::date >= '2025-02-06'
UNION ALL
SELECT block_timestamp AS time, 'Baby Bears' AS collection, tx_hash, from_address, value, tx_fee
FROM ethereum.core.fact_transactions
WHERE to_address = '0xc48c54e92d135b356dd0cbf50f803a8c8d38968b'
AND origin_function_signature = '0x21eb730b'
AND block_timestamp::date >= '2025-02-06'
UNION ALL
SELECT block_timestamp AS time, 'Band Bears' AS collection, tx_hash, from_address, value, tx_fee
FROM ethereum.core.fact_transactions
WHERE to_address = '0x392faa1b0ef108ded69897ba5382e909c39fc09e'
Last run: about 2 months ago
6
136B
12s