mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 13:57:16 +00:00
* merge main & add in tx_succeeded column * ready for primetime * fix more merge conflicts * locked liquidity actiions bug * transfer update * locked liquidity balances and * update seed file for tests * merge in remote branch Co-authored-by: Eric Laurello <eric.laurello@flipsidecrypto.com>
21 lines
331 B
SQL
21 lines
331 B
SQL
{{ config(
|
|
materialized = 'view'
|
|
) }}
|
|
|
|
SELECT
|
|
block_id,
|
|
block_timestamp,
|
|
blockchain,
|
|
chain_id,
|
|
tx_id,
|
|
tx_status,
|
|
tx_succeeded,
|
|
trader,
|
|
from_amount,
|
|
from_currency,
|
|
from_decimal,
|
|
to_amount,
|
|
to_currency,
|
|
to_decimal,
|
|
pool_ids
|
|
FROM {{ ref('silver__swaps') }} |