mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 13:17:02 +00:00
26 lines
472 B
SQL
26 lines
472 B
SQL
{{ config(
|
|
materialized = 'view',
|
|
meta={
|
|
'database_tags':{
|
|
'table': {
|
|
'PURPOSE': 'STAKING'
|
|
}
|
|
}
|
|
}
|
|
) }}
|
|
|
|
SELECT
|
|
block_id,
|
|
block_timestamp,
|
|
tx_id,
|
|
tx_succeeded,
|
|
tx_caller_address,
|
|
action,
|
|
delegator_address,
|
|
validator_address,
|
|
redelegate_source_validator_address,
|
|
amount,
|
|
currency,
|
|
decimal,
|
|
completion_time
|
|
FROM {{ ref('silver__staking') }} |