CONTRACT_ADDRESS | TOTAL_GAS_USED_GWEI | TOTAL_GAS_SPENT | |
---|---|---|---|
1 | 0x4c4eabd5fb1d1a7234a48692551eaecff8194ca7 | 4098.720297 | 0.0002220085126 |
2 | 0x8462c247356d7deb7e26160dbfab16b351eef242 | 2896.715221 | 0.000150693681 |
3 | 0x760afe86e5de5fa0ee542fc7b7b713e1c5425701 | 2561.630339 | 0.0001333534863 |
4 | 0xca810d095e90daae6e867c19df6d9a8c56db2c89 | 1614.215587 | 0.00008510428766 |
5 | 0xedb0f17e5b701c8a1278b94b961384cf4015f240 | 1438.356499 | 0.00007407536098 |
6 | 0x758d80767a751fc1634f579d76e1ccaab3485c9c | 1381.176001 | 0.00007233122171 |
7 | 0x88b96af200c8a9c35442c8ac6cd3d22695aae4f0 | 1245.431129 | 0.00006698805127 |
8 | 0x2c9c959516e9aaedb2c748224a41249202ca8be7 | 1235.874397 | 0.00006464848631 |
9 | 0x822eb1add41cf87c3f178100596cf24c9a6442f6 | 1190.115465 | 0.00006346124882 |
10 | 0x2555223a15a931a71951707cb32a541f14e2c730 | 1180.470571 | 0.00006320625127 |
monadmetrics-JFe1_Rfun-amaranth
Updated 2025-03-16
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT
t.to_address AS contract_address,
SUM(COALESCE(t.gas_used, 0)) / 1e9 AS total_gas_used_gwei, -- تبدیل به Gwei برای مقادیر واقعیتر
SUM(COALESCE(t.gas_used * t.gas_price, 0)) / 1e18 AS total_gas_spent
FROM MONAD.testnet.fact_transactions t
JOIN MONAD.testnet.dim_contracts c ON t.to_address = c.address
WHERE t.block_timestamp >= '2025-02-19 14:00:00'
GROUP BY contract_address
ORDER BY total_gas_used_gwei DESC
LIMIT 10;
Last run: 15 days ago
10
757B
10s