osmosis-models/models/core/core__fact_swaps.sql
Jessica Huhnke 27e55bb913
An 2482/succeeded (#83)
* 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>
2022-12-14 13:56:57 -06:00

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') }}