osmosis-models/models/gold/mars/mars__ez_redbank_reward_claims.sql
2024-11-05 10:50:33 -05:00

39 lines
794 B
SQL

{{ config(
materialized = 'view',
meta ={ 'database_tags':{ 'table':{ 'PROTOCOL': 'MARS',
'PURPOSE': 'DEFI' }} },
tags = ['noncore'],
enabled = false
) }}
SELECT
block_id,
block_timestamp,
tx_id,
tx_succeeded,
msg_group,
msg_sub_group,
msg_index,
contract_name,
action,
USER,
mars_rewards,
COALESCE(
red_bank_actions_id,
{{ dbt_utils.generate_surrogate_key(
['tx_id','msg_index']
) }}
) AS ez_red_bank_reward_claims_id,
COALESCE(
inserted_timestamp,
'2000-01-01'
) AS inserted_timestamp,
COALESCE(
modified_timestamp,
'2000-01-01'
) AS modified_timestamp
FROM
{{ ref('silver__red_bank_actions') }}
WHERE
action = 'claim_rewards'