KaskoazulAlgorand Bridge Direction
    Updated 2022-11-22
    with app_calls as (
    SELECT tx_id,
    tx_group_id
    FROM algorand.core.ez_transaction_application_call
    WHERE block_timestamp > CURRENT_DATE - {{days}}
    AND app_id = 842126029
    ),


    -- algorand: {
    -- core: "842125965",
    -- token_bridge: "842126029",
    -- nft_bridge: undefined, https://github.com/wormhole-foundation/wormhole/blob/dev.v2/sdk/js/src/utils/consts.ts

    transactions_raw as (
    SELECT tr.block_timestamp,
    tr.tx_group_id,
    tr.tx_id,
    tr.inner_tx,
    tr.tx_sender,
    tr.asset_receiver,
    tr.fee,
    tr.asset_id,
    tr.asset_name,
    tr.asset_amount / pow(10,tr.decimals) as amount,
    amount * ps.price_usd as amount_usd,
    tr.tx_message
    FROM algorand.core.ez_transaction_asset_transfer tr
    LEFT JOIN algorand.defi.ez_price_swap ps
    ON tr.asset_id = ps.asset_id and date_trunc('hour', tr.block_timestamp) = block_hour
    WHERE tr.tx_id IN (SELECT tx_id FROM app_calls)
    ),
    txs_list as (
    select BLOCK_TIMESTAMP, TX_GROUP_ID, INTRA, TX_ID, INNER_TX, TX_SENDER, ASSET_RECEIVER, TX_MESSAGE, APP_ID, tx_message:txn:aamt as ASSET_AMOUNT, tx_message:txn:xaid as ASSET_ID
    from algorand.core.fact_transaction
    Run a query to Download Data