mirror of
https://github.com/FlipsideCrypto/external-models.git
synced 2026-02-06 17:36:46 +00:00
24 lines
414 B
SQL
24 lines
414 B
SQL
{{ config(
|
|
materialized = "view",
|
|
tags = ['flashbots'],
|
|
meta={
|
|
'database_tags':{
|
|
'table': {
|
|
'PROTOCOL': 'flashbots'
|
|
}
|
|
}
|
|
}
|
|
) }}
|
|
|
|
SELECT
|
|
tx_hash,
|
|
from_address,
|
|
to_address,
|
|
created_at_block_number,
|
|
tx_id,
|
|
hints_selected,
|
|
num_of_builders_shared,
|
|
refund_percent
|
|
FROM
|
|
{{ ref('silver__flashbots_protect_txs') }}
|