Skip to main content

Tables

CreditManager_CloseCreditAccount_event

Credit account closure events from Gearbox V1 protocol on Ethereum, recording the owner, recipient, and remaining funds when leveraged credit positions are closed. Used for analyzing protocol liquidations, user position management, and capital efficiency.
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_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_remainingFundsSTRINGAmount of funds returned to the credit account owner after closing their position, denominated in the smallest unit of the underlying asset. Values are string-encoded integers representing wei or similar base units, typically ranging from billions to quadrillions.
in_toaddressremovedin_ownerlog_indexblock_numberblock_timestamptransaction_hashin_remainingFunds
0x2cb2e17d23ee7fcf8691afd998f52b1af362ded50x2664cc24cbad28749b3dd6fc97a6b402484de527false0x2cb2e17d23ee7fcf8691afd998f52b1af362ded5136141630982022-02-08T03:48:11.000Z0xd0ff6abd64ee4f5ee06bc309b5f3cccf6801b802c6187fc347611416577d30071101503693
0xfe22b1709a8ef6aeb49d0e35128a0d3eb315cde10x2664cc24cbad28749b3dd6fc97a6b402484de527false0xfe22b1709a8ef6aeb49d0e35128a0d3eb315cde1313141631452022-02-08T03:59:40.000Z0x0ae5ab8b50e2205c05d503ce49cc1216d98019641acb11a7032ce9da164362697832548697
0xa89c470df27ffcbe80926dcdae86a4d19aaab59d0x2664cc24cbad28749b3dd6fc97a6b402484de527false0xa89c470df27ffcbe80926dcdae86a4d19aaab59d163144812962022-03-29T13:15:26.000Z0x9043addc4758b30e723028d1d32af12264f572b179430345fe8b3d8a4a4dc9db10674235118
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.CreditManager_CloseCreditAccount_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CreditManager_LiquidateCreditAccount_event

Liquidation events from Gearbox v1 protocol credit accounts on Ethereum, recording when undercollateralized positions are closed by liquidators. Contains account owner addresses, liquidator addresses, and remaining funds after liquidation for analyzing protocol risk and liquidation efficiency.
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_liquidatorSTRINGAddress of the account executing the liquidation operation. Hex-encoded, 0x-prefixed, 42-character string.
in_remainingFundsSTRINGAmount of funds remaining in the credit account after liquidation, denominated in the smallest unit of the underlying token (e.g., wei for ETH). These are the residual funds returned to the original account owner after debt and fees are settled.
addressremovedin_ownerlog_indexblock_numberin_liquidatorblock_timestamptransaction_hashin_remainingFunds
0x777e23a2acb2fcbb35f6ccf98272d03c722ba6ebfalse0xfe32a37f15ee4a4b59715530e5817d1322b9df80105140547650xad4b61f5bce7841e0c5dea42f8f00a17e95bfd9a2022-01-22T10:07:13.000Z0xbd31df0470f24216acdf05da0a1669aa0e0152fd5c046a333ccfe9af3526cd9a430521967763687774556
0x2664cc24cbad28749b3dd6fc97a6b402484de527false0x9b3f49a186670194f625199b822fcbdfd3feacf7962140543120x43faf3f8bef053d901c572edc32f055c20efb7642022-01-22T08:28:02.000Z0x6ff228c928958b7c8837fd7bb7283c4cd9f874245abb6a12d5e1e9b83433d0ef1589808977
0x2664cc24cbad28749b3dd6fc97a6b402484de527false0xd01a2311ca001241502394d25bc08b0ad8cd2229265146881580x42ccf4f456d7c7febf274242caccd74aaa0a53d72022-04-30T22:06:28.000Z0xeed949c9174bbbe772befe4c7d8f7aec651dc0a4e8df3b8fb5e664f9ac7fb9f5373900120
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.CreditManager_LiquidateCreditAccount_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CreditManager_OpenCreditAccount_event

Credit account opening events from Gearbox V1 protocol on Ethereum, capturing initial collateral amounts, borrowed amounts, and account addresses when users open leveraged positions. Used for analyzing leverage ratios, borrowing patterns, and user acquisition across different Gearbox credit managers.
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_onBehalfOfSTRINGAddress of the account receiving the benefit of the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_creditAccountSTRINGAddress of the credit account associated with the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_borrowAmountSTRINGAmount borrowed in the transaction. Denominated in the smallest unit of the underlying token.
in_referralCodeSTRINGReferral code identifier associated with the operation. Numeric string representation of the code used to track referral-based incentives.
addressremovedin_amountin_senderlog_indexblock_numberin_onBehalfOfblock_timestampin_borrowAmountin_referralCodein_creditAccounttransaction_hash
0x968f9a68a98819e2e6bb910466e191a7b6cf02f0false25000000000000000000x4f952c4c5415b2609899abdc2f8f352f600d14d6315140688800x41797b5e0398af475422f6f33f2dc81d9a24ae332022-01-24T14:37:43.000Z750000000000000000000xc5d4f0bbbdf94ce68d3a88d4caafd8dc9241e4f10x298ba5c617bcc469ad03b7dae38a2fc6bee778a58b8d3f27d9a6b9a32cdfb8f0
0x968f9a68a98819e2e6bb910466e191a7b6cf02f0false3000000000000000000x4f952c4c5415b2609899abdc2f8f352f600d14d6150140704490x696969536948c9902a622ddb9d959ae4038f5cbb2022-01-24T20:25:52.000Z90000000000000000000x653d7a1a903827a5195b21283ea9714b6f1b3f7d0xa8282ef62d8a6d451e0d74d061f209abd2def9f2d17696ae919f2a1e38a37dc9
0x777e23a2acb2fcbb35f6ccf98272d03c722ba6ebfalse36574715428166643601010x67de6d9bd31f8baf7147a953fc1f42b71b0c9c6e440140706180x67de6d9bd31f8baf7147a953fc1f42b71b0c9c6e2022-01-24T20:58:58.000Z643714991535732927377700x08dd8994b7897a93c201ca7be6a16dc20422891a0xd11abbf000e12b3f7b29ce672830e0c3cabd7472ed6577d55a5805ccb2c0c2cf
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.CreditManager_OpenCreditAccount_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CreditManager_RepayCreditAccount_event

Credit account repayment events from Gearbox V1 leveraged trading protocol on Ethereum. Records when users close their leveraged positions by repaying borrowed funds, including the account owner and recipient addresses.
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_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toaddressremovedin_ownerlog_indexblock_numberblock_timestamptransaction_hash
0x092518f41762e9874d925cfbe26dc3f7e2b738810x968f9a68a98819e2e6bb910466e191a7b6cf02f0false0x092518f41762e9874d925cfbe26dc3f7e2b73881306139404282022-01-04T17:57:27.000Z0x34772f0d3ca2c59d9e18f0fb99336c05e2367cd1de0c469a9f6ea8937f715798
0x72fa7697238e2c89c9b07e9200aa05f1481ecde10x2664cc24cbad28749b3dd6fc97a6b402484de527false0x72fa7697238e2c89c9b07e9200aa05f1481ecde1589150027982022-06-21T14:48:35.000Z0xe9162d444ba3d2b8128d53b16a9682123975b3d3ea08b355c66b841d6ff83348
0x4d5daadc1bf9aa1c023fe1a9f75545b3863dfd140xc38478b0a4bafe964c3526eeff534d70e1e09017false0x4d5daadc1bf9aa1c023fe1a9f75545b3863dfd14365147414362022-05-09T08:37:11.000Z0xf7ac262a21a393d5b82e33adf93204700a1e77fda37b0ed28937487d6f0ef35c
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.CreditManager_RepayCreditAccount_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CurveGearWethPool_TokenExchange_event

Token swap events from the Gearbox V1 Curve-GEAR-WETH liquidity pool on Ethereum. Tracks exchanges between GEAR tokens and WETH with buyer addresses, token amounts, and pool identifiers for analyzing liquidity provision and trading patterns.
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_buyerSTRINGAddress of the account purchasing tokens or assets in the transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_sold_idSTRINGIndex of the token sold in the exchange transaction within the pool’s token array. String-encoded integer identifier.
in_tokens_soldSTRINGQuantity of tokens sold by the buyer in the exchange transaction. String-encoded integer representing the amount in the smallest unit of the token.
in_bought_idSTRINGIndex of the token purchased in the exchange transaction within the pool’s token array. String-encoded integer identifier.
in_tokens_boughtSTRINGQuantity of tokens received by the buyer in the exchange transaction. String-encoded integer representing the amount in the smallest unit of the token.
addressremovedin_buyerlog_indexin_sold_idblock_numberin_bought_idin_tokens_soldblock_timestampin_tokens_boughttransaction_hash
0x0e9b5b092cad6f1c5e6bc7f89ffe1abb5c95f1c2false0x0000000000a84d1a9b0063a910315c7ffa9cd24832116690778015137400500000000002023-02-23T11:23:59.000Z1516614387881476881624340xb0abf7546bf0dc8676ea92eb24086af875e0ba45a48166c7910c5310fb6ddfc1
0x0e9b5b092cad6f1c5e6bc7f89ffe1abb5c95f1c2false0x0000000000a84d1a9b0063a910315c7ffa9cd2485116693545029001952100000000002023-02-23T20:43:35.000Z2923035924245773093070410xdc2e88779500024919ffaba935a17f9c5b4c24cc3891d344efdb2639e4c649ce
0x0e9b5b092cad6f1c5e6bc7f89ffe1abb5c95f1c2false0x0000000000a84d1a9b0063a910315c7ffa9cd2485116693557019888960900000000002023-02-23T20:46:11.000Z2005034653751102840179550xa49a6491f0d90baef47489a7de5574541d1578c70bc42951cdb76e948e8d6a9c
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.CurveGearWethPool_TokenExchange_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_AddLiquidity_event

Liquidity provision events recording deposits into decentralized exchange (DEX) pools. Contains deposited asset addresses, amounts, liquidity position identifiers, and updated pool liquidity balances for tracking capital inflows and position creation.
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_onBehalfOfSTRINGAddress of the account receiving the benefit of the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_referralCodeSTRINGReferral code identifier associated with the operation. Numeric string representation of the code used to track referral-based incentives.
addressremovedin_amountin_senderlog_indexblock_numberin_onBehalfOfblock_timestampin_referralCodetransaction_hash
0x24946bcbbd028d5abb62ad9b635eb1b1a67af668false283070006977216178670x39be637c2d57c3b3f3bb4d732eed83b95aa19f55536182092040x39be637c2d57c3b3f3bb4d732eed83b95aa19f552023-09-25T00:22:59.000Z00xc1ce75600b983d9634da2bde47ade25302876ea1694f7d6649c754a0686923b8
0x24946bcbbd028d5abb62ad9b635eb1b1a67af668false570169606956860674540x6dcdddaae2bb72bdc6e04548d86c19fb819f863b1262182096040x6dcdddaae2bb72bdc6e04548d86c19fb819f863b2023-09-25T01:43:35.000Z00x68ec976062ce3b815fb0d3ca64cd9a6da8815db4d41e92ca1f63ec8e53b35c94
0x24946bcbbd028d5abb62ad9b635eb1b1a67af668false314719501842561608980xe50b139167c8eb1a29d686e65a1c11f173cda156148182094460xe50b139167c8eb1a29d686e65a1c11f173cda1562023-09-25T01:11:59.000Z00x363ced3c42fa5aa2f691986c9baeb0a5018b42d8c8684ed18adace17c64d9c83
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.Pool_AddLiquidity_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Borrow_event

Borrow events emitted when users take loans from lending pools, recording borrower address, borrowed amount, and applicable interest rate. Used for tracking lending protocol utilization and debt positions.
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_creditManagerSTRINGAddress of the credit manager contract that controls the credit account. Hex-encoded, 0x-prefixed, 42-character string.
in_creditAccountSTRINGAddress of the credit account associated with the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_amountlog_indexblock_numberblock_timestampin_creditAccountin_creditManagertransaction_hash
0x86130bdd69143d8a4e5fc50bf4323d48049e98e4false199013154866365170186092023-04-10T15:14:47.000Z0x3989960db37ed4c56aae29f950d923b7b70684d00x95357303f995e184a7998da6c6ea35cc728a19000xe18485c0ca9f2869b8d9be2f05b1c6b5226db3263d8163760f61eb7b50a4eb35
0xb03670c20f87f2169a7c4ebe35746007e9575901false175400000000000000000205162942372022-12-30T01:15:59.000Z0xe7fcb650ed4265680300c52326bc5057730c5ff00x5887ad4cb2352e7f01527035faa3ae0ef2ce2b9b0x44df42d9b2f980f39109bbede7cab8ca822e62e5b480f47464bfb3b7e30643c9
0x24946bcbbd028d5abb62ad9b635eb1b1a67af668false999228308218207772645437107162958282022-12-30T06:34:47.000Z0x489a6804aa6232f61f9bd47de4b810d265ab22510x672461bfc20dd783444a830ad4c38b345ab6e2f70x4193baad4e3711b1067c182d3275e43b8501336300b4a28836608bb77447a8e5
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.Pool_Borrow_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_RemoveLiquidity_event

Liquidity withdrawal events from decentralized exchange pools recording the removal of assets by liquidity providers. Contains withdrawal amounts, recipient addresses, and pool state changes including updated liquidity balances and token identifiers.
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_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_toaddressremovedin_amountin_senderlog_indexblock_numberblock_timestamptransaction_hash
0xbe0affe00de6bbdb717d2c7af7f9feb45311320d0x24946bcbbd028d5abb62ad9b635eb1b1a67af668false156300000000000000000000xbe0affe00de6bbdb717d2c7af7f9feb45311320d295165202632023-01-30T14:33:23.000Z0xa463759c76d5e60a6f63744dae1883e97a064730f2cbcc2a4c77e2057a946333
0x64163b7f5558c54c2494fe18e09ba8ee2ec7bc8a0x24946bcbbd028d5abb62ad9b635eb1b1a67af668false996326324615008436913470x64163b7f5558c54c2494fe18e09ba8ee2ec7bc8a366165204412023-01-30T15:09:23.000Z0x2614acf012b1f5cdf864b72d6039b85a6ff2b7ca7a55aca9c945796816e4811b
0xac03363f1dfd8087f8ee7775a703ace890a06d7f0x24946bcbbd028d5abb62ad9b635eb1b1a67af668false336936011303275692568710xac03363f1dfd8087f8ee7775a703ace890a06d7f534165218482023-01-30T19:51:47.000Z0x545157df0cea336342004a9cc29e9e842a289dfdc89bb9dca618060b1cf2f283
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.Pool_RemoveLiquidity_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Repay_event

Loan repayment events from Gearbox V1 credit accounts on Ethereum, recording borrowed amounts repaid and resulting profit or loss to the lending pool. Tracks credit manager addresses and pool-level P&L for analyzing protocol performance and leverage usage.
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_creditManagerSTRINGAddress of the credit manager contract that controls the credit account. Hex-encoded, 0x-prefixed, 42-character string.
in_borrowedAmountSTRINGPrincipal amount borrowed that is being repaid in this transaction, denominated in the pool’s base token with full precision. Values are string-encoded integers representing the smallest token unit.
in_profitSTRINGProfit amount generated by the protocol operation or position. String-encoded integer representing token amounts in the smallest denomination.
in_lossSTRINGLoss amount incurred by the protocol operation or position. String-encoded integer representing token amounts in the smallest denomination.
addressin_lossremovedin_profitlog_indexblock_numberblock_timestampin_creditManagertransaction_hashin_borrowedAmount
0x86130bdd69143d8a4e5fc50bf4323d48049e98e40false2649309479195174268202023-06-07T06:47:47.000Z0x95357303f995e184a7998da6c6ea35cc728a19000x0a8c0b67be351399e04542c55faa64009790b52cb04f6fcaf34ad66eee0ac316999353671351
0x86130bdd69143d8a4e5fc50bf4323d48049e98e40false22576732976177908502023-07-28T10:05:59.000Z0x95357303f995e184a7998da6c6ea35cc728a19000x8b4bd538259981198398e6404e06e951b3bd8221d33a781ae67f4c9fdcbc95a4300000000000
0x86130bdd69143d8a4e5fc50bf4323d48049e98e40false2150293332158049292022-10-22T16:46:11.000Z0x2664cc24cbad28749b3dd6fc97a6b402484de5270xbfd7fddbeb193d0d713cea31f87297b47af046be75f3a5cdd07b358e971f31146000000000
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.Pool_Repay_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TokenDistributor_NewVestingContract_event

Vesting contract creation events from Gearbox V1 protocol’s TokenDistributor on Ethereum, linking token holders to their vesting contract addresses. Used for tracking token distribution schedules and analyzing vesting participant allocations.
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_holderSTRINGEthereum address of the token holder for whom the vesting contract was created. This is the beneficiary who will receive tokens according to the vesting schedule.
in_vestingContractSTRINGContract address of the newly created vesting contract for the token holder. Hex-encoded, 0x-prefixed 40-character Ethereum address unique to each holder in the distribution event.
in_votingPowerINT64Voting power allocated to the token holder in the vesting contract at the time of creation. All sample values are 0, indicating voting power may be granted later in the vesting schedule.
addressremovedin_holderlog_indexblock_numberin_votingPowerblock_timestamptransaction_hashin_vestingContract
0xbf57539473913685688d224ad4e262684b23dd4cfalse0x512de6920f4d78401ec759a4ba6a81cceaf2a4861531381117802021-12-15T17:51:13.000Z0x6b1ca4a9f7ca8689955ab3a16258fda068eb4c162bc3e0454a638f2107f2733c0x01756dcf8248f5e5c5a6e8e2bdfe47439008e231
0xbf57539473913685688d224ad4e262684b23dd4cfalse0xc524ed0fd1af56ce04becfa8ffbc73ffc085be3a1631381117802021-12-15T17:51:13.000Z0x6b1ca4a9f7ca8689955ab3a16258fda068eb4c162bc3e0454a638f2107f2733c0x151a79fb8ba57b04613d955cb48d59879c552268
0xbf57539473913685688d224ad4e262684b23dd4cfalse0x4d108e41b380aecd04693690996192beee29174c1331381117802021-12-15T17:51:13.000Z0x6b1ca4a9f7ca8689955ab3a16258fda068eb4c162bc3e0454a638f2107f2733c0xdf63f75cac46e0d7ec18ebcd35e1dfe15318fa26
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.TokenDistributor_NewVestingContract_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TokenDistributorV2_VestingContractAdded_event

Event logs tracking vesting contract registrations in Gearbox V1 token distribution system on Ethereum. Records holder addresses, vesting amounts, contract addresses, and voting power categories for governance token allocation 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_holderSTRINGEthereum address of the token recipient who will receive vested tokens through the associated vesting contract. Always appears as a hex-encoded, 0x-prefixed 40-character string.
in_vestingContractSTRINGContract address of the vesting schedule created for the token holder. Hex-encoded, 0x-prefixed 40-character Ethereum address representing the deployed vesting contract instance.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_votingPowerCategorySTRINGCategory classifying the voting power tier of the vesting contract holder. Common values include TYPE_ONE, with other tiers potentially used to differentiate governance weight in the Gearbox protocol.
addressremovedin_amountin_holderlog_indexblock_numberblock_timestamptransaction_hashin_vestingContractin_votingPowerCategory
0xf7512b2b20cf427add8b01d8cdeef97a4b0e2c27false11111110000000000000000000xe27b57a99e5cac0e0f16ee0d5d768126b05422a8373180475552023-09-02T08:10:47.000Z0xc9dfca10342d2cd2ee57f12e7d05a422db2c9dc34668af21a7c3cddf6ed986160xc287d91e1ca0e10a5bd47e900f71d6a5ca75e3e5TYPE_ONE
0xf7512b2b20cf427add8b01d8cdeef97a4b0e2c27false300000000000000000000000x32945e04d34fdc2431aa3370e82393a6141769fe158169885162023-04-06T08:46:59.000Z0x076625ba475cdfee19da6f52de7af914a76c2deb10bae51a53913b7819383d240xb4c69c8c5dc1a51064bff83edb47ea17b481554dTYPE_ONE
0xf7512b2b20cf427add8b01d8cdeef97a4b0e2c27false333330000000000000000000xc9396c19c5ce1cb80be5a2c7f52d1cef88ac866e55169884822023-04-06T08:39:47.000Z0xc5e094082d724456d6b8211fddeec153dfec4d4d5e5113968e8a6ac03798cfa40x22f5d645c4a24dad2501b7ed84de6d54e23d7cc1TYPE_ONE
Query with partition filter
SELECT *
FROM `tt-contracts.gearbox_v1_ethereum.TokenDistributorV2_VestingContractAdded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100