diff --git a/models/evm/gold/core/core_evm__fact_blocks.sql b/models/evm/gold/core/core_evm__fact_blocks.sql index 98105da..a99dcf7 100644 --- a/models/evm/gold/core/core_evm__fact_blocks.sql +++ b/models/evm/gold/core/core_evm__fact_blocks.sql @@ -20,7 +20,7 @@ SELECT extra_data, gas_limit, gas_used, - block_hash, + block_hash AS HASH, parent_hash, receipts_root, sha3_uncles, diff --git a/models/evm/gold/core/core_evm__fact_transactions.sql b/models/evm/gold/core/core_evm__fact_transactions.sql index 8fa4da3..951e373 100644 --- a/models/evm/gold/core/core_evm__fact_transactions.sql +++ b/models/evm/gold/core/core_evm__fact_transactions.sql @@ -29,6 +29,7 @@ SELECT cumulative_gas_used, input_data, tx_status AS status, + tx_succeeded, r, s, v, diff --git a/models/evm/gold/core/core_evm__fact_transactions.yml b/models/evm/gold/core/core_evm__fact_transactions.yml index bfd34c2..9f24e74 100644 --- a/models/evm/gold/core/core_evm__fact_transactions.yml +++ b/models/evm/gold/core/core_evm__fact_transactions.yml @@ -45,12 +45,10 @@ models: description: '{{ doc("flowevm_tx_gas_used") }}' - name: CUMULATIVE_GAS_USED description: '{{ doc("flowevm_cumulative_gas_used") }}' - - name: MAX_FEE_PER_GAS - description: The maximum fee per gas of the transaction, in Gwei. - - name: MAX_PRIORITY_FEE_PER_GAS - description: The maximum priority fee per gas of the transaction, in Gwei. - name: STATUS description: '{{ doc("flowevm_tx_status") }}' + - name: TX_SUCCEEDED + description: '{{ doc("tx_succeeded") }}' - name: INPUT_DATA description: '{{ doc("flowevm_tx_input_data") }}' - name: ORIGIN_FUNCTION_SIGNATURE