Skip to main content

Tables

MultiInvoker_Initialized_event

Contract initialization events from Cryptex’s MultiInvoker contract on Arbitrum, tracking when the contract is set up with version information. Used for monitoring contract deployments and upgrade history.
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_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestamptransaction_hash
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false322229398832024-06-17T22:02:25.000Z0xd9f0400b76fe7bf65e02abe9afbda23a9fcefd7fcefe11053eb7a8de472b6abf
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false611359219992023-09-29T23:11:24.000Z0xa761909c2597651e2bf029d1deca56908ad391b4f00320a67650dae358e3d5a6
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.MultiInvoker_Initialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MultiInvoker_InterfaceFeeCharged_event

Interface fee collection events from Cryptex protocol’s MultiInvoker contract on Arbitrum, recording fees charged to user accounts per market with amount, receiver address, and optional token unwrapping flag. Used for analyzing protocol fee revenue distribution and interface partner compensation across different perpetual markets.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_feeSTRUCT<amount STRING, receiver STRING, unwrap BOOL>Fee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
in_feeaddressremovedin_marketlog_indexin_accountblock_numberblock_timestamptransaction_hash
{“amount”:“5416”,“unwrap”:false,“receiver”:“0x8cda59615c993f925915d3eb4394badb3feef413”}0x431603567ecbb4aa1ce5a4fdbe5554caea658832false0x004e1abf70e4ff99bc572843b63a63a58faa08ff2370x366f1b6e29e7d0430dc110486ecad6b1be8619802019461892024-04-17T11:55:07.000Z0xcdcd9f9013b1f8faba4c4621a9e9f9cd4628896336ca5f37eae1b9bae10e473b
{“amount”:“5431”,“unwrap”:false,“receiver”:“0x8cda59615c993f925915d3eb4394badb3feef413”}0x431603567ecbb4aa1ce5a4fdbe5554caea658832false0x004e1abf70e4ff99bc572843b63a63a58faa08ff310x366f1b6e29e7d0430dc110486ecad6b1be8619802019411602024-04-17T11:33:52.000Z0xb21d68d20609ae855b97bea48b84709380ec0a066ad7d52c1c213ff756605cd7
{“amount”:“99036”,“unwrap”:true,“receiver”:“0x78bc83b1255d96b190848b3a8146491cd7e63134”}0x431603567ecbb4aa1ce5a4fdbe5554caea658832false0x02258be4ac91982dc1af7a3d2c4f05be6079c253620xbb46131d139b64b5739c857c1583c07ca34e7b2f2018234562024-04-17T03:15:32.000Z0xc1df506fafbb72abd9d97c2871b44e2ccc2283308cbbaf60b4439172390fa6e7
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.MultiInvoker_InterfaceFeeCharged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MultiInvoker_KeeperCall_event

Keeper bot execution records from Cryptex protocol’s MultiInvoker contract on Arbitrum, tracking automated order execution fees including base fee, calldata costs, and total keeper compensation. Used for analyzing keeper profitability and protocol automation costs.
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_applicableGasSTRINGGas units applicable to this keeper operation for fee calculation purposes. Represented as a string-encoded integer, typically zero when gas costs are covered through alternative mechanisms.
in_applicableValueSTRINGTotal value in wei charged to the user for executing this keeper operation. Typically zero when no value transfer occurs during the keeper call execution.
in_baseFeeSTRINGBase fee per gas unit for the block where the keeper call was executed, denominated in wei. This represents the network’s algorithmic base gas price on Arbitrum at the time of the transaction.
in_calldataFeeSTRINGCost in wei for processing calldata associated with this keeper operation. Represents the fee component attributed to transaction data size on Arbitrum.
in_keeperFeeSTRINGFee paid to the keeper for executing the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
addressremovedin_senderlog_indexin_baseFeeblock_numberin_keeperFeein_calldataFeeblock_timestampin_applicableGastransaction_hashin_applicableValue
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false0x8b4e6f5e1b2be9c4a9fd4dee216fdbbdd67b05b64039486000000000249107079977180000000000003288026720002024-09-01T22:22:18.000Z00x813110ba82fa4ddf7e2e01d47a5d9a16ec8f328a1da502af2736c130d91702d50
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false0x8b4e6f5e1b2be9c4a9fd4dee216fdbbdd67b05b673655800000000002491090581604330000000000003721935712002024-09-01T22:30:38.000Z00x818ee8fe554034377a318a63e87112cd5aab111a14af876885b7fe113b5604580
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false0x8b4e6f5e1b2be9c4a9fd4dee216fdbbdd67b05b6918018000000000248864922455720000000000003906190112002024-09-01T05:26:59.000Z00xeba7eb23bddd6fd0fbf0723b1ef5127484195dbbe598bb37411388bde8fac43f0
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.MultiInvoker_KeeperCall_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MultiInvoker_KeeperFeeCharged_event

No description available.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.MultiInvoker_KeeperFeeCharged_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MultiInvoker_OrderCancelled_event

Order cancellation events from Cryptex MultiInvoker contract on Arbitrum, tracking when users cancel pending orders by account, market, and unique nonce identifier. Used for analyzing order management behavior and unfilled order patterns across perpetual markets.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_nonceSTRINGUnique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros.
addressremovedin_noncein_marketlog_indexin_accountblock_numberblock_timestamptransaction_hash
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false6380x02258be4ac91982dc1af7a3d2c4f05be6079c25300x2588253cc1daac3e7d823b9190ec87e75c67f2c41516396002023-11-18T12:04:41.000Z0xea8c616ba0d9f5397fbac1b8b26f4bc4df503f3c5e87616ee4447559beb0287e
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false6390x02258be4ac91982dc1af7a3d2c4f05be6079c25300x2588253cc1daac3e7d823b9190ec87e75c67f2c41516402162023-11-18T12:07:16.000Z0x24216702938920eb617cfd24192f25b29ae5b9d7d6cb12598ebdc78735f47825
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false6400x02258be4ac91982dc1af7a3d2c4f05be6079c25300x2588253cc1daac3e7d823b9190ec87e75c67f2c41516401462023-11-18T12:06:57.000Z0x40cca15b950e5d01bb8fcb88cc9f6f445880fb73124e27af2f67dda6cf8c72bd
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.MultiInvoker_OrderCancelled_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MultiInvoker_OrderExecuted_event

Order execution events from Cryptex protocol’s MultiInvoker contract on Arbitrum, tracking fulfilled orders with unique nonces, account addresses, and market identifiers. Used for analyzing order flow, account activity, and market-specific trading patterns across Cryptex markets.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_nonceSTRINGUnique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros.
addressremovedin_noncein_marketlog_indexin_accountblock_numberblock_timestamptransaction_hash
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false103140x004e1abf70e4ff99bc572843b63a63a58faa08ff1190x1bd8ed941d9e9b447d0fcf91abb5822a5d08b3c12578320122024-09-27T08:24:46.000Z0xbbfd669a0ec879108a1e2e75436bcf6d820f395937dbbd50ac94d81fbf253b86
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false103470x90a664846960aafa2c164605aebb8e9ac338f9a0380x639f8cf1c6bbcd2a7d351ce84f61af3f488c34bc2577989722024-09-27T06:06:30.000Z0xab2e4b87219edc2d0693250ef980286a5a0c68c5ff3048b66ba36f2e3a14facc
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false103880x90a664846960aafa2c164605aebb8e9ac338f9a0230xcf421a0140f1ebdb2f0eea975b12e4256891ec992580347452024-09-27T22:34:26.000Z0x2a306ab6b06638b5adc493191ac9754493daf13de1106e5ec0f11cba56b4cc2c
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.MultiInvoker_OrderExecuted_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MultiInvoker_OrderPlaced_event

Limit order placement events from Cryptex protocol on Arbitrum, capturing order parameters including side, price, comparison type, and associated fees. Used for analyzing order book activity and trading strategies across Cryptex perpetual futures markets.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_nonceSTRINGUnique numeric identifier for an order, transaction, or operation used to prevent replay attacks. Numeric string representation without leading zeros.
in_orderSTRUCT<side INT64, comparison INT64, fee STRING, price STRING, delta STRING, interfaceFee1 STRUCT<amount STRING, receiver STRING, unwrap BOOL>, interfaceFee2 STRUCT<amount STRING, receiver STRING, unwrap BOOL>>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.
addressremovedin_noncein_orderin_marketlog_indexin_accountblock_numberblock_timestamptransaction_hash
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false7407{“fee”:“20000000”,“side”:2,“delta”:“0”,“price”:“440000”,“comparison”:-1,“interfaceFee1”:{“amount”:“0”,“unwrap”:false,“receiver”:“0x0000000000000000000000000000000000000000”},“interfaceFee2”:{“amount”:“0”,“unwrap”:false,“receiver”:“0x0000000000000000000000000000000000000000”}}0x3d1d603073b3ceab5974db5c54568058a9551ccc00x0a0ae914771ec0a5851049864ccc27b1baa8cd432496250062024-09-03T10:32:13.000Z0xa4cde9c64e3b66c256506b84ee0861b1b8672bdd59b9787d286f870627dfcf23
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false7459{“fee”:“20000000”,“side”:1,“delta”:“0”,“price”:“893600”,“comparison”:-1,“interfaceFee1”:{“amount”:“0”,“unwrap”:false,“receiver”:“0x0000000000000000000000000000000000000000”},“interfaceFee2”:{“amount”:“0”,“unwrap”:false,“receiver”:“0x0000000000000000000000000000000000000000”}}0xc8b73ecfdb775cb9899a0d22ffc8d11228ac35cb200x0def0bacf09a27e0836ef3096f9c3ae859ac13ea2496920242024-09-03T15:12:18.000Z0x56cc4e8e833395fa49393d49b0a73481ac973b9c9b16be00f1c6fa0f73189b9a
0x431603567ecbb4aa1ce5a4fdbe5554caea658832false7458{“fee”:“20000000”,“side”:1,“delta”:“0”,“price”:“893700”,“comparison”:-1,“interfaceFee1”:{“amount”:“0”,“unwrap”:false,“receiver”:“0x0000000000000000000000000000000000000000”},“interfaceFee2”:{“amount”:“0”,“unwrap”:false,“receiver”:“0x0000000000000000000000000000000000000000”}}0xc8b73ecfdb775cb9899a0d22ffc8d11228ac35cb40x55bcc5c24ef24fe3483d1df138db0eb648342ab82496919522024-09-03T15:11:59.000Z0x6cfc72e48bb5c31ae36a19937616b8107e54278e9d65bd4265a0f9efa6de149c
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.MultiInvoker_OrderPlaced_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_AccountSettle_event

Account settlement events from Cryptex Finance’s TCAP (Total Crypto Market Cap) token on Arbitrum, tracking version transitions for user positions. Useful for monitoring account state changes and settlement frequency across TCAP holders.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_preVersionSTRINGAccount version identifier before the settlement event. Numeric string identifier tracking the account state prior to this settlement action.
in_toVersionSTRINGAccount’s version number after the settlement event completed. Incrementing integer value tracking the account’s state version in the TCAP protocol.
addressremovedlog_indexin_accountblock_numberin_toVersionin_preVersionblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false30xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a110133484222222222023-07-11T14:00:14.000Z0x3317f67baf8f48e19c9e68222e18b2a8aad33dc692fd1ce8ba0641a97303171d
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false30xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a110245681223022302023-07-11T22:00:29.000Z0x8c5e405e4971c61b8dad435dc517f4223b894ebe7f457968a2a0a93a53282eaf
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false30xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a110018318221422142023-07-11T06:00:15.000Z0xa0362d9c7e8ad279b3765ca7d45f75d6ddd52afda65a2e3129c1abbf3f149750
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_AccountSettle_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_ClosedUpdated_event

No description available.
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_newClosedBOOL-
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_ClosedUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_FundingFeeUpdated_event

Funding fee parameter changes for Cryptex’s TCAP (Total Crypto Market Cap) token vaults on Arbitrum. Tracks governance or automated adjustments to vault funding rates, useful for monitoring protocol fee structure evolution.
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_newFundingFeeSTRINGThe updated funding fee rate for the TCAP protocol, denominated in wei (18 decimal places). For example, ‘50000000000000000’ represents 0.05 or 5% funding fee.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestampin_newFundingFeetransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false30760237542023-04-01T18:48:54.000Z500000000000000000x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c4
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false1699917728882023-05-18T00:19:07.000Z00x1c73cf5abfd7340386e835ef1915466b574276990c5790e72de533150e8da2bf
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_FundingFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_Initialized_event

Initialization events for Cryptex TCAP (Total Crypto Market Cap) token contracts on Arbitrum, capturing contract deployment and setup transactions. Used for tracking when new TCAP token instances are created and configured.
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_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false91760237542023-04-01T18:48:54.000Z0x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c4
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_Initialized_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_JumpRateUtilizationCurveUpdated_event

Interest rate curve parameter updates for Cryptex’s TCAP (Total Crypto Market Cap) token vault on Arbitrum. Tracks changes to the jump rate model including minimum, target, and maximum rates based on vault utilization thresholds.
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_anon0STRUCT<minRate STRING, maxRate STRING, targetRate STRING, targetUtilization STRING>Contract address of the lending pool. Hex-encoded, 0x-prefixed, 42-character string.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedin_anon0log_indexin_versionblock_numberblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false{“maxRate”:“800000000000000000”,“minRate”:“0”,“targetRate”:“60000000000000000”,“targetUtilization”:“800000000000000000”}80760237542023-04-01T18:48:54.000Z0x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c4
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false{“maxRate”:“1000000000000000000”,“minRate”:“80000000000000000”,“targetRate”:“300000000000000000”,“targetUtilization”:“800000000000000000”}21699917728942023-05-18T00:19:08.000Z0xa469740d2a9ed74e09fd63975a3463d37c6e520c3d7683383da82559caa3bc9c
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_JumpRateUtilizationCurveUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_MaintenanceUpdated_event

Maintenance ratio parameter updates for Cryptex’s TCAP (Total Crypto Market Cap) token contract on Arbitrum. Tracks changes to collateralization requirements with version tracking for protocol governance and risk management analysis.
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_newMaintenanceSTRINGUpdated maintenance parameter value for the TCAP vault, denominated in wei (18 decimals). Represents the minimum collateralization ratio required after the maintenance update event.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestamptransaction_hashin_newMaintenance
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false20760237542023-04-01T18:48:54.000Z0x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c450000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_MaintenanceUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_MakeClosed_event

Position closure events from Cryptex’s TCAP (Total Crypto Market Cap) vault on Arbitrum. Used for tracking when users close their synthetic positions, including closure amounts and version states.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_amountlog_indexin_accountin_versionblock_numberblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false13904079236521049506960xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a29581191627412023-08-07T21:01:43.000Z0x52eed037e721ce346a5adb938975b63622d89dd0c8155718a7b9f08350f482e8
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false298353521107832190xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a29591191765722023-08-07T22:04:14.000Z0x4fcfc079b211b65f7650435b073eaa8a528c6fc498e01d927dd3d407047e0f20
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false35530033407561009150xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a29441189944622023-08-07T09:00:20.000Z0x23c72204deda8ee23fe85c15e72e16fe09fb94b6e6c081a2ab74dead4eb604f2
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_MakeClosed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_MakeOpened_event

Position opening events from Cryptex’s TCAP (Total Crypto Market Cap) token protocol on Arbitrum. Tracks maker positions with account addresses, collateral amounts, and version identifiers for analyzing TCAP vault activity.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_amountlog_indexin_accountin_versionblock_numberblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false1690087658758339499150xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a18391054881542023-06-27T16:00:16.000Z0x62bc229a2c6a2aece3ca0575bd35aa5e673f8b8b38c339ea69b03dba1d2d0cc8
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false57536727513536951150xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a18261053305072023-06-27T05:00:21.000Z0x4cf7a1f179f7a6b9d7e8721b7da62e0228aae98cae2638a607d45de768feb4ce
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false5455062466377431318150xea281a4c70ee2ef5ce3ed70436c81c0863a3a75a18381054824592023-06-27T15:36:26.000Z0x413ac7913e66cc9afc1c6218fe1cd42b9423b05329220f533647ba69e75eb81a
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_MakeOpened_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_MakerFeeUpdated_event

Maker fee configuration change events from the Cryptex TCAP (Total Crypto Market Cap) token contract on Arbitrum. Tracks fee adjustments (e.g., 0.15% to 0.2125%) for market makers with version numbers and timestamps for monitoring protocol economics and fee structure evolution.
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_newMakerFeeSTRINGUpdated maker fee value in the TCAP protocol, denominated in wei (18 decimal places). Sample values like ‘1500000000000000’ represent 0.15% (0.0015 in decimal terms) of the transaction amount.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberin_newMakerFeeblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false407602375415000000000000002023-04-01T18:48:54.000Z0x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c4
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false0364013896013621250000000000002023-10-09T07:43:09.000Z0x976bdf6073958e1a0e06a835ed87f82ddcef29369a2e1bac71b55de3dadc1370
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_MakerFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_MakerLimitUpdated_event

Maker limit configuration changes for Cryptex TCAP (Total Crypto Market Cap) token on Arbitrum. Tracks administrative updates to maximum minting capacity with version control for analyzing protocol parameter governance.
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_newMakerLimitSTRINGThe updated maximum limit for maker positions in the TCAP protocol, denominated in the smallest unit (wei-equivalent). This value represents the new cap on the total amount that can be minted or created by makers, typically set in 18-decimal token units.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestampin_newMakerLimittransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false70760237542023-04-01T18:48:54.000Z40000000000000000000000x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c4
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_MakerLimitUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_OracleUpdated_event

Oracle configuration change events for Cryptex’s TCAP (Total Crypto Market Cap) token on Arbitrum, recording when price feed oracle addresses are updated. Used for tracking oracle infrastructure changes and understanding price data source history.
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_newOracleSTRINGAddress of the newly set oracle contract for the TCAP token price feed. Hex-encoded, 0x-prefixed 40-character Ethereum address on Arbitrum.
in_oracleVersionSTRINGVersion identifier of the oracle being updated in the TCAP contract. Typically a numeric string (e.g., ‘0’, ‘1’) used to track oracle implementation changes.
addressremovedlog_indexblock_numberin_newOracleblock_timestampin_oracleVersiontransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false1760237540xaab5bf2353cc58de50c54bb0d02d8e0a0333f3222023-04-01T18:48:54.000Z00x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c4
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_OracleUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_PendingMakerFeeUpdated_event

Event log tracking proposed maker fee changes for Cryptex’s TCAP (Total Crypto Market Cap) token on Arbitrum, capturing pending fee updates before governance approval. Used to monitor fee governance proposals and protocol parameter change history.
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_newMakerFeeSTRINGThe proposed new maker fee value in wei, pending governance approval or timelock execution. Typically represents basis points scaled to 18 decimals (e.g., 2125000000000000 = 0.2125% fee).
addressremovedlog_indexblock_numberin_newMakerFeeblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false013875344821250000000000002023-10-08T14:10:54.000Z0x86981ef48bbff61def86914bd138d0702e81023fed544598f1dcc6364da1e1be
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_PendingMakerFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_PendingPositionFeeUpdated_event

No description available.
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_newPositionFeeSTRING-
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_PendingPositionFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_PendingTakerFeeUpdated_event

Pending taker fee update events from Cryptex TCAP (Total Crypto Market Cap) token contract on Arbitrum. Tracks proposed fee changes before they are finalized, useful for monitoring protocol governance and fee structure modifications.
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_newTakerFeeSTRINGProposed taker fee amount in wei (smallest unit of ETH) pending implementation in the TCAP vault contract. This value represents the fee charged to users taking positions, typically requiring a governance approval or timelock before activation.
addressremovedlog_indexblock_numberin_newTakerFeeblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false013875345521250000000000002023-10-08T14:10:56.000Z0xda317ccc471763300a747962ceeddb6ae2d125151f69afb412e5b7b5d8466c20
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_PendingTakerFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_PositionFeeUpdated_event

Fee configuration changes for Cryptex’s TCAP (Total Crypto Market Cap) token vault on Arbitrum. Tracks updates to position fees charged by the protocol, useful for monitoring fee parameter adjustments and governance actions.
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_newPositionFeeSTRINGThe updated fee amount in wei (base units) charged for opening or managing a position in the TCAP protocol. Based on sample data showing 1e18 (1 full token unit), this represents fee rates stored with 18 decimal precision.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberblock_timestamptransaction_hashin_newPositionFee
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false60760237542023-04-01T18:48:54.000Z0x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c41000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_PositionFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_Settle_event

Settlement events from Cryptex’s TCAP (Total Crypto Market Cap) token contract on Arbitrum, recording version transitions during oracle price updates. Used for tracking TCAP price settlement frequency and version history.
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_preVersionSTRINGPrevious version number before the settlement event. Numeric identifier stored as string, typically incrementing sequentially with each settlement.
in_toVersionSTRINGVersion number of the TCAP contract state after the settlement operation. Represented as a string-encoded integer that increments sequentially with each settlement event.
addressremovedlog_indexblock_numberin_toVersionin_preVersionblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false1883016294004002023-05-07T17:00:35.000Z0x8e0ceac3dea1b57a65c94d4f67aa19701b334dbce849f8670ded1693c9c34c99
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false2881582613893892023-05-07T07:04:08.000Z0xb37b291bc48c90eec7db64a8ce6c3d369a3e7975e99ed00f41ff83c8ca323717
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false2883161194014012023-05-07T18:01:59.000Z0xf2b88fd53dc369c22a7aa551963c0382e72d9f35a79e9d2203c320262a935acd
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_Settle_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_TakeClosed_event

Position closure events from Cryptex TCAP (Total Crypto Market Cap) protocol on Arbitrum, recording when users close synthetic positions with closure amounts and version identifiers for tracking protocol state changes.
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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_amountlog_indexin_accountin_versionblock_numberblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false528317048115417976480x7bc0ceafffc2f2322f07c3058ffbcc2fa7c2af7d34651301403152023-09-11T14:56:10.000Z0xcaac01dd8b6d430a91f100aa0f64157f24ad61e48e6a7c340e3eb37091b23283
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false313451896460361737260x8643c722031a05fcbb12212804693b81ccf5a4d534641301376892023-09-11T14:45:11.000Z0x1f01322c090ee2c4ca45ca5f7aa6030bcaa32bd1e3123ce848bb0553a2dac6d0
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false461667516730829964480xc4a98221155f5d2d49b6395d0a9f94c6f0ff2e8634641301376862023-09-11T14:45:10.000Z0x75a5007c3f925fe65f9599c972e135a7b08f2996160dc18b48d741f66cf6e963
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_TakeClosed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_TakeOpened_event

TCAP position opening events from Cryptex protocol on Arbitrum, capturing when users take (open) positions with account addresses, token amounts, and version identifiers. Used for tracking position creation activity and analyzing user behavior in the Total Crypto Market Cap (TCAP) synthetic asset 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_accountSTRINGAccount address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_amountlog_indexin_accountin_versionblock_numberblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false82386969767360224240xb43d843538635aef1b49114bb72ae083ab63be3042171486793512023-11-09T11:42:11.000Z0x529ebeee2e102b71770522d3471e387d0ed36ec7cfa0d27a4d12867210b17004
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false695227038756709161130x5c7404cfa34e53661b7e0243f2e96ae0422436e242161486616012023-11-09T10:27:32.000Z0x2a34c3ef61cb712c612934242f066ce94546ef39674d1b8c9ce0eed3775917dd
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false140576196873851664130xd88fed07219ba97abaa81f6e08376f90a4b2022342121486232502023-11-09T07:47:27.000Z0xf8824e35055d4ce3be573b58f498031366bf01bcb86a1545c8d9daab974d4e44
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_TakeOpened_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TCAP_TakerFeeUpdated_event

Event log tracking taker fee parameter changes for Cryptex’s TCAP (Total Crypto Market Cap) token on Arbitrum. Records the new fee values (in wei) and version numbers for analyzing fee structure evolution and protocol governance updates.
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_newTakerFeeSTRINGThe updated taker fee value denominated in wei (smallest unit of ETH), represented as a string. Based on samples, typical values range from 0.0015 to 0.002125 ETH when converted from wei.
in_versionSTRINGVersion identifier for the contract or event schema. String or integer value indicating the initialization or state version.
addressremovedlog_indexin_versionblock_numberin_newTakerFeeblock_timestamptransaction_hash
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false1364013896013621250000000000002023-10-09T07:43:09.000Z0x976bdf6073958e1a0e06a835ed87f82ddcef29369a2e1bac71b55de3dadc1370
0x1cd33f4e6edeee8263aa07924c2760cf2ec8aad0false507602375415000000000000002023-04-01T18:48:54.000Z0x6af676880cf1619915ae6ff8e61ccb98959dfa4aaeca6553c49e3a7910b714c4
Query with partition filter
SELECT *
FROM `tt-contracts.cryptex_v1_arbitrum.TCAP_TakerFeeUpdated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100