Skip to main content

Tables

CoWSwapEthFlow_createOrder_function

CoWSwap EthFlow contract order creation function calls containing native cryptocurrency swap parameters and order hash outputs. Used for tracking intent-based DEX orders where users deposit native tokens (ETH, BNB, MATIC) to receive specified token amounts through CoWSwap settlement protocol.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueSTRINGAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_orderSTRUCT<buyToken STRING, receiver STRING, sellAmount STRING, buyAmount STRING, appData STRING, feeAmount STRING, validTo STRING, partiallyFillable BOOL, quoteId STRING>Request-for-Quote (RFQ) order details structure containing maker and taker information. Structure includes token addresses for assets being exchanged, maker address, allowed sender address, and token amounts for both maker and taker sides of the trade.
out_orderHashSTRINGUnique identifier hash for the order being filled. 66-character hex string including 0x prefix.
gasvaluestatusgas_usedin_ordersignatureto_addressblock_numberfrom_addressout_orderHashtrace_addressblock_timestamptransaction_hash
6842611400000000000000000true56216{“appData”:“0x5ea481bce4787ff414f1509feb9bbfff47b8d9849e548431765adc7996a40131”,“quoteId”:“40211”,“validTo”:“1752081933”,“buyToken”:“0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e”,“receiver”:“0xbe2727fedf92ebacf7dd3c0d87c0bb1e0c042304”,“buyAmount”:“211696891”,“feeAmount”:“0”,“sellAmount”:“11400000000000000000”,“partiallyFillable”:false}0x322bba210xba3cb449bd2b4adddbc894d8697f5170800eadec651899610xbe2727fedf92ebacf7dd3c0d87c0bb1e0c0423040xa220bd0bf765c6d5e7db431318e91083e1cfdada240dc76da68d38da440f37092025-07-09T16:55:53.000Z0x4619fba9799936f8ea8f06e6047e625a58acaf8f7009ac349daa1eafddf53962
65589641594015468121456true56228{“appData”:“0xcdcf7b9f4bb158439ecb1fd8ac509570ae7d45c08d7050d53f98963c524123ca”,“quoteId”:“40519”,“validTo”:“1752089217”,“buyToken”:“0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e”,“receiver”:“0x033199bd0158be38e911e72e2971c4a0ffdfa55e”,“buyAmount”:“11869701”,“feeAmount”:“0”,“sellAmount”:“641594015468121456”,“partiallyFillable”:false}0x322bba210xba3cb449bd2b4adddbc894d8697f5170800eadec651945160x033199bd0158be38e911e72e2971c4a0ffdfa55e0x2c9fa1d2108bb3a79c271a33cbaff8a82eb330545da345f45f855236950ae4412025-07-09T18:57:37.000Z0xe6793458c3951e0bc3995a06a6e44693436df0b9469a11164d6fbd0bb3299cf4
6558940000000000000000000true56228{“appData”:“0x06769c9558d5b8ceb47cc65e7316e40b86c9b45a2a8bd65cae975f4e31040d98”,“quoteId”:“40837”,“validTo”:“1752097750”,“buyToken”:“0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7”,“receiver”:“0x83ba210bb000a71137b9c5e69a389a2e59ec0e51”,“buyAmount”:“770817780”,“feeAmount”:“0”,“sellAmount”:“40000000000000000000”,“partiallyFillable”:false}0x322bba210xba3cb449bd2b4adddbc894d8697f5170800eadec651998950x83ba210bb000a71137b9c5e69a389a2e59ec0e510x1a0869ed0c6bba30ef6d264ab49e018d6d31564e07b50bdbc7432032a05443c72025-07-09T21:19:46.000Z0xcbd6a16b15804eaa70ecdb989571abf6c224280cfc51cb8b1ffe08157db1b28a
Query with partition filter
SELECT *
FROM `tt-contracts.cowswap_v1_avalanche.CoWSwapEthFlow_createOrder_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CoWSwapEthFlow_OrderPlacement_event

CoW Protocol native ETH order placement events emitted by the EthFlow contract. Records user-initiated swap orders that wrap native chain tokens (ETH, WBNB, WMATIC) into their wrapped equivalents for execution through CoW Protocol’s batch auction settlement system.
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 that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_orderSTRUCT<sellToken STRING, buyToken STRING, receiver STRING, sellAmount STRING, buyAmount STRING, validTo STRING, appData STRING, feeAmount STRING, kind STRING, partiallyFillable BOOL, sellTokenBalance STRING, buyTokenBalance STRING>Request-for-Quote (RFQ) order details structure containing maker and taker information. Structure includes token addresses for assets being exchanged, maker address, allowed sender address, and token amounts for both maker and taker sides of the trade.
in_signatureSTRUCT<scheme INT64, data STRING>Cryptographic signature authorizing the order execution. Hex-encoded byte string used to verify the order was signed by the maker’s private key.
in_dataSTRINGEncoded input data for the contract function call. Hex-encoded byte string representing function parameters and additional call data.
addressin_dataremovedin_orderin_senderlog_indexblock_numberin_signatureblock_timestamptransaction_hash
0xba3cb449bd2b4adddbc894d8697f5170800eadec0x0000000000008f95686b3f6efalse{“kind”:“0xf3b277728b3fee749481eb3e0b3b48980dbbab78658fc419025cb16eee346775”,“appData”:“0x6993545f3ae767acb0766470c28fe753b072f22d18f02099aa2e1ce06708bcfa”,“validTo”:“4294967295”,“buyToken”:“0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e”,“receiver”:“0x1fd4b7083a3a859fa61507900965b8c938791388”,“buyAmount”:“3492398”,“feeAmount”:“0”,“sellToken”:“0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7”,“sellAmount”:“190000000000000000”,“buyTokenBalance”:“0x5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9”,“sellTokenBalance”:“0x5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9”,“partiallyFillable”:false}0x1fd4b7083a3a859fa61507900965b8c938791388365064290{“data”:“0xba3cb449bd2b4adddbc894d8697f5170800eadec”,“scheme”:0}2025-07-07T03:02:01.000Z0x0bc475185e7b3380699b2785c0f90703dc7d74af6b2d13f99183485c24956442
0xba3cb449bd2b4adddbc894d8697f5170800eadec0x00000000000090d2686b95ebfalse{“kind”:“0xf3b277728b3fee749481eb3e0b3b48980dbbab78658fc419025cb16eee346775”,“appData”:“0x1f7a877c7b1ba42f8d04e98175459860bec4a673db1a75268c8bc97ada95a54d”,“validTo”:“4294967295”,“buyToken”:“0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e”,“receiver”:“0x80b64d1919e03f947522292b94a0053d81aef3db”,“buyAmount”:“18152732”,“feeAmount”:“0”,“sellToken”:“0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7”,“sellAmount”:“1000000000000000000”,“buyTokenBalance”:“0x5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9”,“sellTokenBalance”:“0x5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9”,“partiallyFillable”:false}0x80b64d1919e03f947522292b94a0053d81aef3db465076260{“data”:“0xba3cb449bd2b4adddbc894d8697f5170800eadec”,“scheme”:0}2025-07-07T09:10:11.000Z0xe6e809b019554ca4dee0f2aead62d513e5ea17bf3cb26bb567594dc96d6bd962
0xba3cb449bd2b4adddbc894d8697f5170800eadec0x00000000000090ce686b944dfalse{“kind”:“0xf3b277728b3fee749481eb3e0b3b48980dbbab78658fc419025cb16eee346775”,“appData”:“0x56c3b40155683cd97a098249e413735885d593909e6e6bea561ac3356eaa3ab1”,“validTo”:“4294967295”,“buyToken”:“0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e”,“receiver”:“0x80b64d1919e03f947522292b94a0053d81aef3db”,“buyAmount”:“997569”,“feeAmount”:“0”,“sellToken”:“0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7”,“sellAmount”:“55000000000000000”,“buyTokenBalance”:“0x5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9”,“sellTokenBalance”:“0x5a28e9363bb942b639270062aa6bb295f434bcdfc42c97267bf003f272060dc9”,“partiallyFillable”:false}0x80b64d1919e03f947522292b94a0053d81aef3db065076027{“data”:“0xba3cb449bd2b4adddbc894d8697f5170800eadec”,“scheme”:0}2025-07-07T09:03:13.000Z0x79fa1208751cb8ea61fc563548d5267bb9a94e952a739b06e3ab4c18e34748e5
Query with partition filter
SELECT *
FROM `tt-contracts.cowswap_v1_avalanche.CoWSwapEthFlow_OrderPlacement_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

GPv2AllowListAuthentication_SolverAdded_event

Event logs recording solver addresses being added to the CoW Protocol GPv2 (Gnosis Protocol v2) authentication allow list. Tracks authorization of solver accounts permitted to execute settlements on the protocol.
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_solverSTRINGAddress of the solver that executed the settlement or was added to the allow list. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_solverlog_indexblock_numberblock_timestamptransaction_hash
0x2c4c28ddbdac9c5e7055b4c863b72ea0149d8afefalse0x9da8b48441583a2b93e2ef8213aad0ec0b392c6976723318392025-11-21T12:12:53.000Z0x16461aaa2b76fe9ab27bf400fddc493bf1a4171e91bd0aaac6c9de20da1cfe54
0x2c4c28ddbdac9c5e7055b4c863b72ea0149d8afefalse0xc3d3151324f04b0d072a74abfda84e1a99b19b229643897582025-06-24T11:30:53.000Z0x5a29ea7b03a4d757d6ea1e7d687167bca3cbd0b7e001d07a25000e05c6d551ed
0x2c4c28ddbdac9c5e7055b4c863b72ea0149d8afefalse0xa8e64684149ec4f3253904c1cd3c5a3adb9793e510643897582025-06-24T11:30:53.000Z0x5a29ea7b03a4d757d6ea1e7d687167bca3cbd0b7e001d07a25000e05c6d551ed
Query with partition filter
SELECT *
FROM `tt-contracts.cowswap_v1_avalanche.GPv2AllowListAuthentication_SolverAdded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

GPv2Settlement_settle_function

CoW Protocol GPv2Settlement contract settle function calls containing batched trade executions with tokens, clearing prices, and interaction sequences. Records complete settlement transactions for intent-based order matching and execution.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueSTRINGAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_tokensARRAY<STRING>Array of token contract addresses involved in the operation. Hex-encoded, 0x-prefixed, 42-character strings.
in_clearingPricesARRAY<STRING>Array of token prices used to settle the batch of trades. String-encoded integer values representing exchange rates between tokens in the settlement.
in_tradesARRAY<STRUCT<sellTokenIndex STRING, buyTokenIndex STRING, receiver STRING, sellAmount STRING, buyAmount STRING, validTo STRING, appData STRING, feeAmount STRING, flags STRING, executedAmount STRING, signature STRING>>Array of trade orders included in the settlement batch. Each struct contains sell and buy token indices referencing in_tokens array, receiver address, amounts, order validity timestamp, application data hash, fee amount, execution flags, actual executed amount, and cryptographic signature for order verification.
in_interactionsARRAY<STRING>Array of encoded contract interactions executed during trade settlement. Each element is a concatenated string containing target address, value, and calldata for contract calls made as part of the settlement process.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.cowswap_v1_avalanche.GPv2Settlement_settle_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

GPv2Settlement_Settlement_event

Settlement execution events from the CoW Protocol GPv2Settlement contract recording solver addresses that successfully executed trade batches.
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_solverSTRINGAddress of the solver that executed the settlement or was added to the allow list. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_solverlog_indexblock_numberblock_timestamptransaction_hash
0x9008d19f58aabd9ed0d60971565aa8510560ab41false0xad3ce441a497bc64f77b5e05fb598f2caffae30e11690110002025-09-20T07:26:09.000Z0x341a3a54f9e4ef7dfebd68cd7327934fef2413717cd2c2f772712d9868a5dac3
0x9008d19f58aabd9ed0d60971565aa8510560ab41false0x423cec87f19f0778f549846e0801ee267a91793512690044292025-09-20T04:00:46.000Z0x6220797e4e1f280f7d7c036638925700a187dfe86c723f00863df88abfe56332
0x9008d19f58aabd9ed0d60971565aa8510560ab41false0xad3ce441a497bc64f77b5e05fb598f2caffae30e12690283742025-09-20T16:01:18.000Z0x1fb2aa4187539fc6ae2a380d3c6e6e440daf4ff0fdaed968073c61cb438ab7ae
Query with partition filter
SELECT *
FROM `tt-contracts.cowswap_v1_avalanche.GPv2Settlement_Settlement_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

GPv2Settlement_Trade_event

Trade execution events from CoW Protocol’s GPv2Settlement contract containing order details, token addresses, and executed amounts. Records completed swaps with owner address, unique order identifier, buy/sell token pairs, traded quantities, and associated fees for order settlement 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_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_sellTokenSTRINGContract address of the token being sold in the trade. Hex-encoded, 0x-prefixed, 42-character string.
in_buyTokenSTRINGContract address of the token being purchased in the trade. Hex-encoded, 0x-prefixed, 42-character string.
in_sellAmountSTRINGAmount of tokens sold in the trade. Numeric string representation of token quantity in smallest denomination.
in_buyAmountSTRINGAmount of tokens received in the trade. Numeric string representation of token quantity in smallest denomination.
in_feeAmountSTRINGFee amount charged for the flash loan or transaction. Numeric string representation of fee quantity in smallest denomination.
in_orderUidSTRINGUnique identifier for the order being executed in the trade. Hex-encoded string containing order hash, owner address, and validity timestamp.
addressremovedin_ownerlog_indexin_buyTokenin_orderUidblock_numberin_buyAmountin_feeAmountin_sellTokenin_sellAmountblock_timestamptransaction_hash
0x9008d19f58aabd9ed0d60971565aa8510560ab41false0xd16f39990092033ee2fab400bf3364379c616c4e360x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c70x9a0676e822992985426bc2e26f61d193492b115a1ce6f31af8d257eea8e0ae86d16f39990092033ee2fab400bf3364379c616c4e683616cd62825450999258600xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e100000002025-05-27T19:17:42.000Z0x9ef25471e412fab5557baec9f7470020ff8850c06e01f085375d940b1b9470f2
0x9008d19f58aabd9ed0d60971565aa8510560ab41false0xd16f39990092033ee2fab400bf3364379c616c4e420x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c70xd3c8d3ab1d911d371990867689e726fd4f0763018039adc5faa9197a88a4210cd16f39990092033ee2fab400bf3364379c616c4e6835ee2662817599999303500xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e100000002025-05-27T16:24:18.000Z0x7c198e3c4fc6cdb15699748c87e233b374b81860f81744cd06fe6337dbdad8ff
0x9008d19f58aabd9ed0d60971565aa8510560ab41false0xd16f39990092033ee2fab400bf3364379c616c4e70x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c70x1a15dabbb28abda3b82f8dbd5b9f4861b9ddbf5f98ce335c9e107ef74619ac10d16f39990092033ee2fab400bf3364379c616c4e68358eb962800503999434200xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e100000002025-05-27T09:37:11.000Z0xf7a80333b397ee3ab845754a1432c856d531a475a3368df7eb4c7d9c78307c9d
Query with partition filter
SELECT *
FROM `tt-contracts.cowswap_v1_avalanche.GPv2Settlement_Trade_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100