osmosis-models/models/core/core__fact_swaps.sql
eric-laurello dd4bcc2d32
tags (#94)
2023-01-19 13:08:52 -05:00

25 lines
414 B
SQL

{{ config(
materialized = 'view',
meta={
'database_tags':{
'table': {
'PURPOSE': 'SWAPS'
}
}
}
) }}
SELECT
block_id,
block_timestamp,
tx_id,
tx_succeeded,
trader,
from_amount,
from_currency,
from_decimal,
to_amount,
to_currency,
to_decimal,
pool_ids
FROM {{ ref('silver__swaps') }}