saadiqMoonbirds Items
Updated 2023-03-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
SELECT
sum(1) AS wallets,
sum(current_bal_unadj) AS items
FROM
ethereum.core.ez_current_balances
WHERE
user_address IN (
SELECT DISTINCT
user_address
FROM
ethereum.core.ez_current_balances
WHERE
contract_address IN ('0x23581767a106ae21c074b2276d25e5c3e136a68b')
/* MB */
)
AND (
contract_address IN ('0x23581767a106ae21c074b2276d25e5c3e136a68b')
);
Run a query to Download Data