SECONDS | TOTAL_GAS | GAS_PER_SECOND | |
---|---|---|---|
1 | 168883 | 1281665894 | 7589.075834 |
Movement TeamGas per Second
Updated 2025-02-06
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT
count(distinct date_trunc('second', block_timestamp)) as seconds,
sum(gas_used) as total_gas,
total_gas / seconds as Gas_per_second
-- ((gas_used * gas_unit_price)/1e8) as tx_fee_MOVE
FROM
aptos.core.fact_transactions
where
block_timestamp >= current_date - 1
and TX_TYPE = 'user_transaction'
Last run: 2 months ago
1
33B
3s