Skip to main content

Tables

Factory_PairCreated_event

Decentralized exchange (DEX) liquidity pool creation events emitted by Automated Market Maker (AMM) factory contracts. Records new trading pair deployments with token addresses, deployed pair contract address, and creation sequence number for tracking pool instantiation across DEX protocols.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_token0STRINGContract address of the first token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_token1STRINGContract address of the second token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_pairSTRINGContract address of the liquidity pool pair created for trading between two tokens. Hex-encoded, 0x-prefixed, 42-character string.
in_anon3STRINGSequential counter tracking the total number of pairs created by the factory contract.
addressin_pairremovedin_anon3in_token0in_token1log_indexblock_numberblock_timestamptransaction_hash
0xb255d6a720bb7c39fee173ce22113397119cb9300x363475ce45aef7ce55850d51872639464f993dd4false80x1b918543b518e34902e1e8dd76052bee43c762ff0xe514d9deb7966c8be0ca922de8a064264ea6bcd413288509962023-10-27T04:21:26.000Z0xb5796f2de1e57374a236b7702862463ff50cf08bea113cabafedca3e21189c59
0xb255d6a720bb7c39fee173ce22113397119cb9300x306a28279d04a47468ed83d55088d0dcd1369294false20xa8754b9fa15fc18bb59458815510e40a12cd20140xc99a6a985ed2cac1ef41640596c5a5f9f4e19ef54678609222021-10-25T09:43:36.000Z0x8489e5fe75bf1abee9fb2c36b083a6209a9b021583b9b1202b497075160efd8d
0xb255d6a720bb7c39fee173ce22113397119cb9300xc6344bc1604fcab1a5aad712d766796e2b7a70b9false10x97a9107c1793bc407d6f527b77e7fff4d812bece0xc99a6a985ed2cac1ef41640596c5a5f9f4e19ef52578609142021-10-25T09:43:12.000Z0x8ce53adfedb66360bb3c0e17fe0d3211c2add586450398bc52740bc7bad03331
Query with partition filter
SELECT *
FROM `tt-contracts.katana_v1_ronin.Factory_PairCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Burn_event

Liquidity removal events from DEX (Decentralized Exchange) trading pairs recording amounts of both tokens withdrawn when liquidity providers burn LP tokens. Used for tracking liquidity provision activity and calculating total value locked (TVL) changes in automated market maker (AMM) pools.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in__senderSTRINGAddress of the account initiating the contract function call or event emission. Hex-encoded, 0x-prefixed, 42-character string.
in__amount0STRINGAmount of the first token in the liquidity pair removed from the pool during this burn event. Value stored as a string representing the token quantity in its smallest unit (wei-equivalent).
in__amount1STRINGToken amount of the second asset in the liquidity pair being burned from the pool. Represented in the token’s smallest unit (wei-equivalent) as a string to preserve precision for large values.
in__toSTRINGDestination address for the transaction or transfer. Hex-encoded, 0x-prefixed, 42-character string.
in__toaddressremovedlog_indexin__senderin__amount0in__amount1block_numberblock_timestamptransaction_hash
0x7d0556d55ca1a92708681e2e231733ebd922597d0x2ecb08f87f075b5769fe543d0e52e40140575ea7false50x7d0556d55ca1a92708681e2e231733ebd922597d166830433072463865389870042143814156383255392772023-07-04T04:15:56.000Z0x1c33b69cc99ef610087363522d56c01e7a02e86f96d80244fff2cf5bb3b5f888
0x7d0556d55ca1a92708681e2e231733ebd922597d0x2ecb08f87f075b5769fe543d0e52e40140575ea7false50x7d0556d55ca1a92708681e2e231733ebd922597d164314124752041277389306098542998623207255516192023-07-04T14:33:04.000Z0x1e7f42d80f16f52ae9d4d922fbb969bafa27dd7de06528b52ecb43db518289fe
0x7d0556d55ca1a92708681e2e231733ebd922597d0x2ecb08f87f075b5769fe543d0e52e40140575ea7false50x7d0556d55ca1a92708681e2e231733ebd922597d2293146222641389654328932030792434134255513342023-07-04T14:18:49.000Z0x1cdce89392a0f17074476c11f7eca8541284d5bcbd7908c945938a07dfbc357c
Query with partition filter
SELECT *
FROM `tt-contracts.katana_v1_ronin.Pair_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Mint_event

Liquidity provision events emitted when users add tokens to a DEX pair contract. Records sender address and token amounts deposited for liquidity pool operations.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in__senderSTRINGAddress of the account initiating the contract function call or event emission. Hex-encoded, 0x-prefixed, 42-character string.
in__amount0STRINGAmount of token0 added to the liquidity pool in this mint event, denominated in the token’s smallest unit (wei-equivalent). Values are stored as strings to preserve precision for large token amounts.
in__amount1STRINGAmount of the second token (token1) added to the liquidity pool in this mint event. Denominated in the token’s smallest unit (wei equivalent).
addressremovedlog_indexin__senderin__amount0in__amount1block_numberblock_timestamptransaction_hash
0x2ecb08f87f075b5769fe543d0e52e40140575ea7false50x7d0556d55ca1a92708681e2e231733ebd922597d3633948309569791929999999999997222192567172022-11-26T22:36:28.000Z0xa1d60b4e472c31e277ac466cd1faef045890e9ca9a2559daf79208ba1a0e8e98
0x2ecb08f87f075b5769fe543d0e52e40140575ea7false50x7d0556d55ca1a92708681e2e231733ebd922597d2057122476524921087666301181934834192320122022-11-26T01:56:35.000Z0x0ec9bdd94858d23db2f9a981f9dee80d4babacd3fbb562acf960ef036b51fb61
0x2ecb08f87f075b5769fe543d0e52e40140575ea7false50x7d0556d55ca1a92708681e2e231733ebd922597d4094654570552782166289761635888830192343792022-11-26T03:55:17.000Z0x8aa82dc529983720c29a45e1312b6a44f2f3d6e61f35bdf40ee8dacc87683749
Query with partition filter
SELECT *
FROM `tt-contracts.katana_v1_ronin.Pair_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Swap_event

Token swap events from decentralized exchange (DEX) liquidity pairs recording input and output amounts for both tokens. Primary source for tracking DEX trading activity and price discovery.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in__senderSTRINGAddress of the account initiating the contract function call or event emission. Hex-encoded, 0x-prefixed, 42-character string.
in__amount0InSTRINGAmount of token0 flowing into the liquidity pair during the swap transaction. String-formatted to preserve precision for high-decimal tokens; zero indicates token0 was received as output rather than provided as input.
in__amount1InSTRINGAmount of token1 deposited into the liquidity pair during the swap transaction. Non-zero values indicate token1 was part of the input, while zero means token0 was swapped for token1.
in__amount0OutSTRINGAmount of token0 sent out of the liquidity pool to the recipient during this swap. Zero when token0 is being traded in (amount0In is non-zero).
in__amount1OutSTRINGAmount of token1 sent out of the liquidity pair in this swap transaction. Stored as a string to preserve precision for large token amounts with varying decimal places.
in__toSTRINGDestination address for the transaction or transfer. Hex-encoded, 0x-prefixed, 42-character string.
in__toaddressremovedlog_indexin__senderblock_numberin__amount0Inin__amount1Inin__amount0Outin__amount1Outblock_timestamptransaction_hash
0x7d0556d55ca1a92708681e2e231733ebd922597d0x8f1c5eda143fa3d1bea8b4e92f33562014d30e0dfalse30x7d0556d55ca1a92708681e2e231733ebd922597d2086694710051918743545052432023-01-22T04:01:49.000Z0x3595917317054f6655a1ba5fd6efadc38893b346b151948cb33012645aa3629e
0xc6344bc1604fcab1a5aad712d766796e2b7a70b90x306a28279d04a47468ed83d55088d0dcd1369294false30x7d0556d55ca1a92708681e2e231733ebd922597d20869876900151269692828702023-01-22T06:29:37.000Z0x1c86914f478289009be21c55b3dccbd019234cc46dca5f876495a2c40de39739
0x1ae48c6f0439716812b1a7022b384eaf72e253160x306a28279d04a47468ed83d55088d0dcd1369294false30x7d0556d55ca1a92708681e2e231733ebd922597d208843761200211233908721692023-01-22T18:38:37.000Z0x1eb28cd43f3fb21fb71323541c74adc02cccf99e293dc519f5d24f4bc85f51d9
Query with partition filter
SELECT *
FROM `tt-contracts.katana_v1_ronin.Pair_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Sync_event

Liquidity pair reserve synchronization events emitted after each swap, mint, or burn operation. Contains updated reserve balances for both tokens in AMM (Automated Market Maker) pools, enabling real-time price calculation and liquidity tracking.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in__reserve0STRINGUpdated reserve balance of the first token in the Katana DEX liquidity pair after a sync event. Value is represented in the token’s smallest unit (wei-equivalent) as an integer string.
in__reserve1STRINGUpdated reserve balance of token1 in the liquidity pool pair contract, represented in the smallest denomination (wei for EVM tokens). Emitted by Katana DEX (Ronin chain) whenever pool reserves are synchronized after swaps or liquidity changes.
addressremovedlog_indexblock_numberin__reserve0in__reserve1block_timestamptransaction_hash
0x2ecb08f87f075b5769fe543d0e52e40140575ea7false32507041410135751474909549930310206081662073923111779334262023-06-17T21:32:42.000Z0x0da157907bb0382da2d59110b012af11efb05880b2d6647c8e72841821d90fc6
0x2ecb08f87f075b5769fe543d0e52e40140575ea7false32506868610134734511532380790834206080866447026422785460662023-06-17T20:06:18.000Z0x1a788bcfd78e4d22118ff3a6a5acac6c84e57d46453df1bb4141186860761d76
0x2ecb08f87f075b5769fe543d0e52e40140575ea7false32504959310039053444251747493861207351457439931941704142102023-06-17T04:11:39.000Z0x99d71cb5582d29230fc22c0c89ad70023a4f0100c0466af3a0d3a5a633e6a445
Query with partition filter
SELECT *
FROM `tt-contracts.katana_v1_ronin.Pair_Sync_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Transfer_event

ERC20 Transfer events emitted by liquidity pair contracts in automated market maker (AMM) decentralized exchanges (DEXs). Records minting, burning, and transfer of LP (liquidity provider) tokens representing ownership shares in trading pairs.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in__fromSTRINGAddress initiating the transaction or transfer. Hex-encoded, 0x-prefixed, 42-character string.
in__toSTRINGDestination address for the transaction or transfer. Hex-encoded, 0x-prefixed, 42-character string.
in__valueSTRINGAmount transferred, approved, deposited, or withdrawn in the transaction. String-encoded integer representing token quantity in smallest denomination (wei for ETH, base units for ERC20 tokens).
in__toaddressremovedin__fromin__valuelog_indexblock_numberblock_timestamptransaction_hash
0xe432d61a90604aef42c65d2c7f6565006dd29fe60x306a28279d04a47468ed83d55088d0dcd1369294false0x3c27c7e21fbee4bc6c61d610d0263189fb0f3520140598330250565212023-06-17T09:58:03.000Z0x92c480c77edd74ef049218a59aa0c84de46add4d762ca36dcb859dc4ee596ca3
0xe432d61a90604aef42c65d2c7f6565006dd29fe60x306a28279d04a47468ed83d55088d0dcd1369294false0xcca8fb1ccaeca624fce33081177131dbcce14a15218107710250565052023-06-17T09:57:15.000Z0x74d7fbf3e32323bef656a7276c0052b7f1d47bb0378e3d600770cece37ec6458
0xd3c7b90a064f64e6987b3a0e95d0f71f10b12d8e0x306a28279d04a47468ed83d55088d0dcd1369294false0x953e1b5200f961c49e68c2d4e23ac02326c3e8db228505760250553202023-06-17T08:58:00.000Z0x7b3fba8cb38e9c4639f5ef9cad099db19dd3366336879119645973f484d60dae
Query with partition filter
SELECT *
FROM `tt-contracts.katana_v1_ronin.Pair_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100