jkhuhnke11AAVE Fees & Gas
Updated 2023-05-06
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with
votes AS (
SELECT
block_timestamp,
tx_hash,
proposal_id,
support,
voter,
voting_power
FROM
ethereum.aave.ez_votes v
),
txs AS (
SELECT
block_timestamp,
tx_hash,
gas_used,
tx_fee,
gas_price
FROM
ethereum.core.fact_transactions
),
final AS (
SELECT
v.block_timestamp,
v.tx_hash,
v.support,
v.proposal_id,
v.voter,
v.voting_power::number as voting_pow,
t.gas_used,
t.tx_fee,
t.gas_price
FROM
votes v
LEFT JOIN txs t on v.tx_hash = t.tx_hash
Run a query to Download Data