mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 15:36:50 +00:00
25 lines
414 B
SQL
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') }} |