contract address | creator address | total interactions | |
---|---|---|---|
1 | 0x96fb2981524cef46b3382eeae4cbc59d30addfc1 | 0x6e80164ea60673d64d5d6228beb684a1274bb017 | 51148 |
2 | 0xa14cba6dd12d537a8decc7dd3c4ac413b8711eba | 0x6e80164ea60673d64d5d6228beb684a1274bb017 | 715 |
3 | 0x4ed875fe83738271e5d4ff5a4e4f91c616459f90 | 0x6e80164ea60673d64d5d6228beb684a1274bb017 | 313 |
4 | 0xfcf932ae02dd6be980f5c31d6e394ac6450d23b9 | 0x6e80164ea60673d64d5d6228beb684a1274bb017 | 208 |
5 | 0x0792e04e7265ff2b40e8fb750b2a2fcc388eca5e | 0x7e80bd5a2e8fca0b160254d43ac9f43ac2cc1052 | 188 |
defi__joshMost Active Contract Deployments on Mezo Testnet
Updated 2025-05-19
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
SELECT
c.address as "contract address",
--c.created_block_timestamp as "deployment date",
c.creator_address as "creator address",
COUNT(DISTINCT t.tx_hash) as "total interactions"
FROM mezo.testnet.dim_contracts c
LEFT JOIN mezo.testnet.fact_transactions t
ON c.address = t.to_address
WHERE c.created_block_timestamp >= (
SELECT MIN(block_timestamp)
FROM mezo.testnet.fact_transactions
)
GROUP BY 1,2
ORDER BY 3 DESC
LIMIT 5;
Last run: 12 days ago
5
483B
1s