solana-models/models/silver/staking/silver__stake_pool_actions_eversol_view.sql
tarikceric 9ab6b17123
An 4313/clean up deprecation (#425)
* depreacte models

* no new records

* test and run intervals
2023-12-18 10:43:18 -08:00

28 lines
572 B
SQL

{{ config(
materialized = 'view'
) }}
SELECT
tx_id,
block_id,
block_timestamp,
index,
succeeded,
action,
stake_pool,
stake_pool_withdraw_authority,
stake_pool_deposit_authority,
address, -- use signers instead of instruction account because of "passthrough" wallets
reserve_stake_address,
amount,
_inserted_timestamp,
_unique_key,
stake_pool_actions_eversol_id,
inserted_timestamp,
modified_timestamp,
_invocation_id
FROM
{{ source(
'solana_silver',
'stake_pool_actions_eversol'
) }}