mirror of
https://github.com/FlipsideCrypto/arbitrum-models.git
synced 2026-02-06 11:06:55 +00:00
* initial build pt 1 * decoder changes * dbt project * arbtrace_block history * global node url * comments * removed macro * partition_key * prod uri
405 lines
8.9 KiB
SQL
405 lines
8.9 KiB
SQL
-- depends_on: {{ ref('bronze__transactions') }}
|
|
{{ config(
|
|
materialized = 'incremental',
|
|
incremental_strategy = 'delete+insert',
|
|
unique_key = "block_number",
|
|
cluster_by = "block_timestamp::date, _inserted_timestamp::date",
|
|
post_hook = "ALTER TABLE {{ this }} ADD SEARCH OPTIMIZATION",
|
|
tags = ['core','non_realtime']
|
|
) }}
|
|
|
|
WITH base AS (
|
|
|
|
SELECT
|
|
block_number,
|
|
DATA,
|
|
_inserted_timestamp
|
|
FROM
|
|
|
|
{% if is_incremental() %}
|
|
{{ ref('bronze__transactions') }}
|
|
WHERE
|
|
_inserted_timestamp >= (
|
|
SELECT
|
|
MAX(_inserted_timestamp) _inserted_timestamp
|
|
FROM
|
|
{{ this }}
|
|
)
|
|
AND IS_OBJECT(DATA)
|
|
{% else %}
|
|
{{ ref('bronze__transactions_fr') }}
|
|
WHERE
|
|
IS_OBJECT(DATA)
|
|
{% endif %}
|
|
),
|
|
base_tx AS (
|
|
SELECT
|
|
A.block_number AS block_number,
|
|
A.data :blockHash :: STRING AS block_hash,
|
|
TRY_TO_NUMBER(
|
|
utils.udf_hex_to_int(
|
|
A.data :blockNumber :: STRING
|
|
)
|
|
) AS blockNumber,
|
|
TRY_TO_NUMBER(
|
|
utils.udf_hex_to_int(
|
|
A.data :chainId :: STRING
|
|
)
|
|
) AS chain_id,
|
|
A.data :from :: STRING AS from_address,
|
|
TRY_TO_NUMBER(
|
|
utils.udf_hex_to_int(
|
|
A.data :gas :: STRING
|
|
)
|
|
) AS gas,
|
|
TRY_TO_NUMBER(
|
|
utils.udf_hex_to_int(
|
|
A.data :gasPrice :: STRING
|
|
)
|
|
) / pow(
|
|
10,
|
|
9
|
|
) AS gas_price,
|
|
A.data :hash :: STRING AS tx_hash,
|
|
A.data :input :: STRING AS input_data,
|
|
SUBSTR(
|
|
input_data,
|
|
1,
|
|
10
|
|
) AS origin_function_signature,
|
|
TRY_TO_NUMBER(
|
|
utils.udf_hex_to_int(
|
|
A.data :maxFeePerGas :: STRING
|
|
)
|
|
) / pow(
|
|
10,
|
|
9
|
|
) AS max_fee_per_gas,
|
|
TRY_TO_NUMBER(
|
|
utils.udf_hex_to_int(
|
|
A.data :maxPriorityFeePerGas :: STRING
|
|
)
|
|
) / pow(
|
|
10,
|
|
9
|
|
) AS max_priority_fee_per_gas,
|
|
TRY_TO_NUMBER(
|
|
utils.udf_hex_to_int(
|
|
A.data :nonce :: STRING
|
|
)
|
|
) AS nonce,
|
|
A.data :r :: STRING AS r,
|
|
A.data :s :: STRING AS s,
|
|
A.data :to :: STRING AS to_address1,
|
|
CASE
|
|
WHEN to_address1 = '' THEN NULL
|
|
ELSE to_address1
|
|
END AS to_address,
|
|
TRY_TO_NUMBER(
|
|
utils.udf_hex_to_int(
|
|
A.data :transactionIndex :: STRING
|
|
)
|
|
) AS POSITION,
|
|
A.data :type :: STRING AS TYPE,
|
|
A.data :v :: STRING AS v,
|
|
utils.udf_hex_to_int(
|
|
A.data :value :: STRING
|
|
) AS value_precise_raw,
|
|
utils.udf_decimal_adjust(
|
|
value_precise_raw,
|
|
18
|
|
) AS value_precise,
|
|
value_precise :: FLOAT AS VALUE,
|
|
A._INSERTED_TIMESTAMP,
|
|
A.data
|
|
FROM
|
|
base A
|
|
),
|
|
new_records AS (
|
|
SELECT
|
|
t.block_number,
|
|
t.block_hash,
|
|
t.chain_id,
|
|
t.from_address,
|
|
t.gas,
|
|
t.gas_price,
|
|
t.tx_hash,
|
|
t.input_data,
|
|
t.origin_function_signature,
|
|
t.max_fee_per_gas,
|
|
t.max_priority_fee_per_gas,
|
|
t.nonce,
|
|
t.r,
|
|
t.s,
|
|
t.to_address,
|
|
t.position,
|
|
t.type,
|
|
t.v,
|
|
t.value_precise_raw,
|
|
t.value_precise,
|
|
t.value,
|
|
block_timestamp,
|
|
CASE
|
|
WHEN block_timestamp IS NULL
|
|
OR tx_status IS NULL THEN TRUE
|
|
ELSE FALSE
|
|
END AS is_pending,
|
|
r.gas_used,
|
|
tx_success,
|
|
tx_status,
|
|
cumulative_gas_used,
|
|
utils.udf_decimal_adjust(
|
|
r.effective_gas_price,
|
|
9
|
|
) AS effective_gas_price,
|
|
utils.udf_decimal_adjust(
|
|
r.effective_gas_price * r.gas_used,
|
|
18
|
|
) AS tx_fee_precise,
|
|
COALESCE(
|
|
tx_fee_precise :: FLOAT,
|
|
0
|
|
) AS tx_fee,
|
|
r.type AS tx_type,
|
|
r.l1BlockNumber AS l1_block_number,
|
|
r.gas_used_for_l1,
|
|
t._inserted_timestamp,
|
|
t.data
|
|
FROM
|
|
base_tx t
|
|
LEFT OUTER JOIN {{ ref('silver__blocks') }}
|
|
b
|
|
ON t.block_number = b.block_number
|
|
LEFT OUTER JOIN {{ ref('silver__receipts') }}
|
|
r
|
|
ON t.block_number = r.block_number
|
|
AND t.tx_hash = r.tx_hash
|
|
|
|
{% if is_incremental() %}
|
|
AND r._INSERTED_TIMESTAMP >= (
|
|
SELECT
|
|
MAX(_inserted_timestamp) :: DATE - 1
|
|
FROM
|
|
{{ this }}
|
|
)
|
|
{% endif %}
|
|
)
|
|
|
|
{% if is_incremental() %},
|
|
missing_data AS (
|
|
SELECT
|
|
t.block_number,
|
|
t.block_hash,
|
|
t.chain_id,
|
|
t.from_address,
|
|
t.gas,
|
|
t.gas_price,
|
|
t.tx_hash,
|
|
t.input_data,
|
|
t.origin_function_signature,
|
|
t.max_fee_per_gas,
|
|
t.max_priority_fee_per_gas,
|
|
t.nonce,
|
|
t.r,
|
|
t.s,
|
|
t.to_address,
|
|
t.position,
|
|
t.type,
|
|
t.v,
|
|
t.value_precise_raw,
|
|
t.value_precise,
|
|
t.value,
|
|
b.block_timestamp,
|
|
FALSE AS is_pending,
|
|
r.gas_used,
|
|
r.tx_success,
|
|
r.tx_status,
|
|
r.cumulative_gas_used,
|
|
utils.udf_decimal_adjust(
|
|
r.effective_gas_price,
|
|
9
|
|
) AS effective_gas_price,
|
|
utils.udf_decimal_adjust(
|
|
r.effective_gas_price * r.gas_used,
|
|
18
|
|
) AS tx_fee_precise_heal,
|
|
COALESCE(
|
|
tx_fee_precise_heal :: FLOAT,
|
|
0
|
|
) AS tx_fee,
|
|
r.type AS tx_type,
|
|
r.l1BlockNumber AS l1_block_number,
|
|
r.gas_used_for_l1,
|
|
GREATEST(
|
|
t._inserted_timestamp,
|
|
b._inserted_timestamp,
|
|
r._inserted_timestamp
|
|
) AS _inserted_timestamp,
|
|
t.data
|
|
FROM
|
|
{{ this }}
|
|
t
|
|
INNER JOIN {{ ref('silver__blocks') }}
|
|
b
|
|
ON t.block_number = b.block_number
|
|
INNER JOIN {{ ref('silver__receipts') }}
|
|
r
|
|
ON t.tx_hash = r.tx_hash
|
|
AND t.block_number = r.block_number
|
|
WHERE
|
|
t.is_pending
|
|
)
|
|
{% endif %},
|
|
exclusions AS (
|
|
SELECT
|
|
CONCAT(
|
|
block_number,
|
|
'-',
|
|
tx_hash
|
|
) AS block_tx_id
|
|
FROM
|
|
{{ ref('silver_observability__excluded_receipt_blocks') }}
|
|
),
|
|
FINAL AS (
|
|
SELECT
|
|
block_number,
|
|
block_hash,
|
|
chain_id,
|
|
from_address,
|
|
gas,
|
|
gas_price,
|
|
tx_hash,
|
|
input_data,
|
|
origin_function_signature,
|
|
max_fee_per_gas,
|
|
max_priority_fee_per_gas,
|
|
nonce,
|
|
r,
|
|
s,
|
|
to_address,
|
|
POSITION,
|
|
TYPE,
|
|
v,
|
|
value_precise_raw,
|
|
value_precise,
|
|
VALUE,
|
|
block_timestamp,
|
|
is_pending,
|
|
gas_used,
|
|
tx_success,
|
|
tx_status,
|
|
cumulative_gas_used,
|
|
effective_gas_price,
|
|
tx_fee,
|
|
tx_fee_precise,
|
|
tx_type,
|
|
l1_block_number,
|
|
gas_used_for_l1,
|
|
_inserted_timestamp,
|
|
DATA
|
|
FROM
|
|
new_records
|
|
|
|
{% if is_incremental() %}
|
|
UNION
|
|
SELECT
|
|
block_number,
|
|
block_hash,
|
|
chain_id,
|
|
from_address,
|
|
gas,
|
|
gas_price,
|
|
tx_hash,
|
|
input_data,
|
|
origin_function_signature,
|
|
max_fee_per_gas,
|
|
max_priority_fee_per_gas,
|
|
nonce,
|
|
r,
|
|
s,
|
|
to_address,
|
|
POSITION,
|
|
TYPE,
|
|
v,
|
|
value_precise_raw,
|
|
value_precise,
|
|
VALUE,
|
|
block_timestamp,
|
|
is_pending,
|
|
gas_used,
|
|
tx_success,
|
|
tx_status,
|
|
cumulative_gas_used,
|
|
effective_gas_price,
|
|
tx_fee,
|
|
tx_fee_precise_heal AS tx_fee_precise,
|
|
tx_type,
|
|
l1_block_number,
|
|
gas_used_for_l1,
|
|
_inserted_timestamp,
|
|
DATA
|
|
FROM
|
|
missing_data
|
|
{% endif %}
|
|
)
|
|
SELECT
|
|
block_number,
|
|
block_hash,
|
|
chain_id,
|
|
from_address,
|
|
gas,
|
|
gas_price,
|
|
tx_hash,
|
|
input_data,
|
|
origin_function_signature,
|
|
max_fee_per_gas,
|
|
max_priority_fee_per_gas,
|
|
nonce,
|
|
r,
|
|
s,
|
|
to_address,
|
|
POSITION,
|
|
TYPE,
|
|
v,
|
|
VALUE,
|
|
value_precise_raw,
|
|
value_precise,
|
|
block_timestamp,
|
|
CASE
|
|
WHEN CONCAT(
|
|
block_number,
|
|
'-',
|
|
tx_hash
|
|
) IN (
|
|
SELECT
|
|
block_tx_id
|
|
FROM
|
|
exclusions
|
|
) THEN FALSE
|
|
ELSE is_pending
|
|
END AS is_pending,
|
|
gas_used,
|
|
tx_success,
|
|
tx_status,
|
|
cumulative_gas_used,
|
|
effective_gas_price,
|
|
tx_fee,
|
|
tx_fee_precise,
|
|
tx_type,
|
|
l1_block_number,
|
|
gas_used_for_l1,
|
|
_inserted_timestamp,
|
|
DATA,
|
|
{{ dbt_utils.generate_surrogate_key(
|
|
['tx_hash']
|
|
) }} AS transactions_id,
|
|
SYSDATE() AS inserted_timestamp,
|
|
SYSDATE() AS modified_timestamp,
|
|
'{{ invocation_id }}' AS _invocation_id
|
|
FROM
|
|
FINAL
|
|
WHERE
|
|
block_hash IS NOT NULL qualify(ROW_NUMBER() over (PARTITION BY block_number, POSITION
|
|
ORDER BY
|
|
_inserted_timestamp DESC, is_pending ASC)) = 1
|