mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 11:47:03 +00:00
39 lines
794 B
SQL
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'
|