Unique contract deployer | Contract deployed | |
---|---|---|
1 | 638 | 5401 |
Mrftiinquisitive-crimson copy
Updated 7 hours ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
-- forked from inquisitive-crimson @ https://flipsidecrypto.xyz/studio/queries/a0241ef3-6933-4870-a674-dc824315d75b
with tbl AS
(
SELECT
creator_address AS "Address",
COUNT(*) as "Contract deployed",
RANK() OVER (ORDER BY COUNT(*) DESC) as deployer_rank
FROM swell.core.dim_contracts
GROUP BY 1
)
SELECT
count (DISTINCT "Address") as "Unique contract deployer",
sum ("Contract deployed") as "Contract deployed"
from tbl
Last run: about 7 hours agoAuto-refreshes every 12 hours
1
12B
1s