Skip to main content

Tables

Comptroller_NewLiquidationIncentive_event

Comptroller governance event emitted when the liquidation incentive parameter is updated. Records old and new mantissa values (18-decimal scaled integers) representing the bonus percentage liquidators receive for repaying undercollateralized loans in Compound-based lending protocols.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_oldLiquidationIncentiveMantissaSTRINGPrevious liquidation incentive parameter in mantissa format. 18-decimal fixed-point integer representation where 1e18 equals 1.0 (e.g., ‘1080000000000000000’ represents 1.08 or 8% incentive).
in_newLiquidationIncentiveMantissaSTRINGUpdated liquidation incentive parameter in mantissa format. 18-decimal fixed-point integer representation where 1e18 equals 1.0 (e.g., ‘1080000000000000000’ represents 1.08 or 8% incentive).
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_newLiquidationIncentiveMantissain_oldLiquidationIncentiveMantissa
0xe0b57feed45e7d908f2d0dacd26f113cf26715bffalse0126607002022-06-22T07:12:00.000Z0xdd4772093877aaecef3d0b5773117d4d54a347fbac339df28700b9d99a30d3ae10800000000000000000
0x896aecb9e73bf21c50855b7874729596d0e511cbfalse0330382021-11-13T02:42:43.000Z0x15a3935e9a28d405b3bcaf39a7ffc2d09ff5d22b50c111e30ff59ed086abacc810800000000000000000
0x60cf091cd3f50420d50fd7f707414d0df4751c58false0265480592022-09-30T17:37:06.000Z0x2f7ad626143d94e43a130998c28418222271de444252da263e70b10f7b33e5f810800000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.Comptroller_NewLiquidationIncentive_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_AccrueInterest_event

Interest accrual events from Compound fork lending markets on Optimism, capturing periodic updates to borrow indexes and accumulated interest. Used for analyzing borrowing costs, yield generation, and protocol health across different cToken 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_cashPriorSTRINGCash balance in the market prior to the interest accrual event. Denominated in the smallest unit of the underlying token.
in_interestAccumulatedSTRINGInterest accrued during the period since the last interest calculation. Denominated in the smallest unit of the underlying token.
in_borrowIndexSTRINGCumulative borrow interest index for the market. Scaled by 1e18, representing the accumulated interest per unit borrowed since market inception.
in_totalBorrowsSTRINGTotal amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.
addressremovedlog_indexblock_numberin_cashPriorin_borrowIndexblock_timestampin_totalBorrowstransaction_hashin_interestAccumulated
0x33865e09a572d4f1cc4d75afc9abcc5d3d4d867dfalse671116322102478080921410887922589909073952023-11-01T18:26:37.000Z41908798350x2e36a66d90f4f06adce5e85f780285f52975fe8f899db18f717e98b18cea65604322
0x33865e09a572d4f1cc4d75afc9abcc5d3d4d867dfalse1551116362432478503831710888091566239367972023-11-01T20:41:03.000Z41868726090xb923092a8caea49018bbda9096b4d59dc3694a79c8f6aa91cc5c2eda6bf26fcc1465
0x5ff29e4470799b982408130efaabdeeae7f66a10false172111614562126268368292210671365008730114352023-11-01T08:38:21.000Z69835455721970x806d6b324f3d28193667fecdfc83b1138a7c4eb2f15e0dc831bb217d345e76d680347358
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_AccrueInterest_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_Borrow_event

Borrow event logs from Compound V2 fork lending markets on Optimism, recording loan originations with borrower address, amount borrowed, and updated account and total borrow balances. Used for tracking lending protocol utilization and individual borrower debt positions across different cToken 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_borrowerSTRINGAddress of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_borrowAmountSTRINGAmount borrowed in the transaction. Denominated in the smallest unit of the underlying token.
in_accountBorrowsSTRINGTotal amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.
in_totalBorrowsSTRINGTotal amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.
addressremovedlog_indexin_borrowerblock_numberblock_timestampin_borrowAmountin_totalBorrowstransaction_hashin_accountBorrows
0x1d073cf59ae0c169cbc58b6fdd518822ae89173afalse20x6870c0f827522bdf847a11999ac685f71ed4c959216863502022-09-02T13:15:08.000Z40000000014208725832950x950f216da40a029de3f13b14ffa70bf15ed2f4adcd03a322c53c7201e4db66172600363089
0x1d073cf59ae0c169cbc58b6fdd518822ae89173afalse120xffa51a5ec855f8e38dd867ba503c454d8bbc5ab9217072592022-09-02T16:20:40.000Z28364714370601805580xd2e412cc221f5b08c6903e42e74148fd12532362af3070e13a31606b869854341426809581591
0x17533a1bde957979e3977ebbfbc31e6deeb25c7dfalse50xffa51a5ec855f8e38dd867ba503c454d8bbc5ab9217072592022-09-02T16:20:40.000Z287315157512101415624743553382690175510xd2e412cc221f5b08c6903e42e74148fd12532362af3070e13a31606b869854341562410440567775791757
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_Borrow_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_LiquidateBorrow_event

Liquidation events from Compound V2 forks on Optimism, capturing when undercollateralized positions are liquidated with borrower/liquidator addresses, repayment amounts, and seized collateral tokens. Used for analyzing liquidation activity, liquidator profitability, and protocol risk management across Compound-compatible lending 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_liquidatorSTRINGAddress of the account executing the liquidation operation. Hex-encoded, 0x-prefixed, 42-character string.
in_borrowerSTRINGAddress of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_repayAmountSTRINGAmount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.
in_CTokenCollateralSTRINGContract address of the cToken received as collateral during liquidation. This represents the collateral market where seized tokens are transferred from the borrower to the liquidator.
in_seizeTokensSTRINGQuantity of collateral tokens seized from the borrower during liquidation. Numeric string representing the amount in the smallest unit of the collateral token.
addressremovedlog_indexin_borrowerblock_numberin_liquidatorin_repayAmountin_seizeTokensblock_timestamptransaction_hashin_CTokenCollateral
0x8cd6b19a07d754bf36adeee79edf4f2134a8f571false120x1b56403289ce09ed7afe2e11b220cf373cb043a0481078990x44257b9171d5e3b6c01bb8fd64a617a1b8b7162418484101104470001051979909130662022-12-11T18:33:09.000Z0xf371829b0b2befa8bdc1fe5033afc11da9433da8ac428443fa963a9c5bb2cdd40x8cd6b19a07d754bf36adeee79edf4f2134a8f571
0x8cd6b19a07d754bf36adeee79edf4f2134a8f571false140x1b56403289ce09ed7afe2e11b220cf373cb043a0481392890x44257b9171d5e3b6c01bb8fd64a617a1b8b716242784191098507206640400147596755066362022-12-11T20:53:25.000Z0x69e68932304cc4032800638417dd6e3d8e4c790846068b7efacfe30c0860d76a0x8cd6b19a07d754bf36adeee79edf4f2134a8f571
0x5ff29e4470799b982408130efaabdeeae7f66a10false140xe2255aea86b7b11ca757f9721478008c599d4014477879870x44257b9171d5e3b6c01bb8fd64a617a1b8b7162411408950606202769392022-12-11T03:25:11.000Z0x7076014ec325005ec0cbdc7263aede5770346fa75ea74660d21f0efefa6507370xd14451e0fa44b18f08aeb1e4a4d092b823caca68
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_LiquidateBorrow_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_Mint_event

Mint events from Compound protocol forks on Optimism, recording when users deposit underlying assets to receive cTokens (interest-bearing tokens). Used to track lending pool deposits and liquidity provision across Compound-compatible protocols.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_minterSTRINGAddress authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos.
in_mintAmountSTRINGQuantity of underlying asset deposited into the lending protocol. Numeric string representing token amount in smallest denomination.
in_mintTokensSTRINGQuantity of protocol-specific interest-bearing tokens minted to the depositor. Numeric string representing token amount in smallest denomination.
addressremovedin_minterlog_indexblock_numberin_mintAmountin_mintTokensblock_timestamptransaction_hash
0x0493bf8b6dbb159ce2db2e0e8403e753abd1235bfalse771219077002024-06-26T15:02:57.000Z0xd44a31bb30e180fe811573cb258649ca643eb9c2ea94308b5410633e2deee6eb
0x0493bf8b6dbb159ce2db2e0e8403e753abd1235bfalse771219221422024-06-26T23:04:21.000Z0x9aea13946bcd5a59fc3f95e2117758db3a21d1a8410b05c7971d6c5c298dbd65
0x0493bf8b6dbb159ce2db2e0e8403e753abd1235bfalse4141219196352024-06-26T21:40:47.000Z0x5090886cffa9b2869382727325e1a2e817c6de827d500a38437edb61628d3f59
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_NewProtocolSeizeShare_event

Protocol fee parameter updates for liquidation seizures in Compound V2 fork markets on Optimism. Tracks changes to the protocol’s share of collateral seized during liquidations, with mantissa values representing the fee percentage (3% in samples).
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_oldProtocolSeizeShareMantissaSTRINGPrevious protocol seize share value in mantissa format. Represented as a string-encoded integer with 18 decimal places of precision.
in_newProtocolSeizeShareMantissaSTRINGUpdated protocol seize share value in mantissa format. Represented as a string-encoded integer with 18 decimal places of precision.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_newProtocolSeizeShareMantissain_oldProtocolSeizeShareMantissa
0x866b838b97ee43f2c818b3cb5cc77a0dc22003fcfalse471236474432024-08-05T21:34:23.000Z0x624c6928854fec4de5ab9c345f7dce722fd99febf2112e82ee2caa3c40640b65300000000000000000
0x181ba797ccf779d8ab339721ed6ee827e758668efalse541265451192024-10-11T23:23:35.000Z0x43e2ebed1be884e0f0a26a3c0302e53c657f0f3865a8fe005d4bad72b1edf66c300000000000000000
0xa3a53899ee8f9f6e963437c5b3f805fec538bf84false661225315572024-07-11T01:38:11.000Z0xc6661dacead95c66be457083985009461056df5da534c647da1a42e489cdfbd9300000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_NewProtocolSeizeShare_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_NewReserveFactor_event

Reserve factor parameter changes for Compound-fork lending markets on Optimism, tracking updates to the protocol’s fee percentage stored as mantissa values (e.g., 100000000000000000 = 10%). Used to monitor governance decisions affecting protocol revenue allocation between reserves and lenders.
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_oldReserveFactorMantissaSTRINGPrevious reserve factor for the lending market before the update. 18-decimal fixed-point integer stored as string.
in_newReserveFactorMantissaSTRINGUpdated reserve factor for the lending market. 18-decimal fixed-point integer stored as string.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_newReserveFactorMantissain_oldReserveFactorMantissa
0xe7de932d50efc9ea0a7a409fc015b4f71443528efalse31065215862023-07-06T11:12:29.000Z0xf6edbbdb5ca0ab50c6692df2bc682ae252002292674316af2fa70f43eb964bba2000000000000000000
0x9f4089ea33773a090ac514934517990df04ae5a7false261216451392024-06-20T13:10:55.000Z0x044c13bae41921f47b86da41f6837db3ad5f94f7e71aa451c622cbb56e10ed591000000000000000000
0x53b1d15b24d93330b2fd359c798de7183255e7f2false81216450692024-06-20T13:08:35.000Z0xd4597671c10fef00df4b90c6454a36513ef2414b41cb5acb4bba818b7ea972771000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_NewReserveFactor_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_Redeem_event

Redemption events from Compound V2 fork lending markets on Optimism, tracking when users withdraw underlying assets by burning cTokens. Used for analyzing withdrawal patterns, liquidity flows, and cToken-to-underlying exchange rates in lending protocols.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_redeemerSTRINGAddress of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_redeemAmountSTRINGAmount of underlying asset tokens withdrawn from the lending pool during redemption.
in_redeeCTokensSTRINGAmount of cTokens (Compound protocol interest-bearing tokens) being redeemed by the user in this transaction. Value is represented in the smallest unit of the cToken (wei-equivalent), and may be null for failed or incomplete redemption events.
addressremovedlog_indexin_redeemerblock_numberblock_timestampin_redeeCTokensin_redeemAmounttransaction_hash
0x5039cde9ed71256be27a36440380f36cad45d270false221153692172024-01-27T06:33:31.000Z0xbdc8d5b287dd95303b3ad22cf73169d1960dc49f3721d346fd23ed2d8349589a
0x722ef09f933f09069257c68563b715486365b895false531153999272024-01-27T23:37:11.000Z0xe7a1178cf54b6642f90c2346c70fa005ee9c193c341a2f5712a40771a70fbdbd
0x17533a1bde957979e3977ebbfbc31e6deeb25c7dfalse80x72195dda0361f43ce544b750f318d04b358369331153915352024-01-27T18:57:27.000Z960397999999123851060x703a449a1b56c7532c60c38e9a106c2a847830d0c1657d73d42f19faa083a5bd
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_Redeem_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_RepayBorrow_event

Loan repayment events from Compound Protocol forks on Optimism, tracking when borrowers repay debt against cToken markets. Includes repayment amounts, updated borrow balances, and payer/borrower addresses for analyzing lending activity and debt reduction 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_payerSTRINGAddress of the account that provided the funds for the repayment or payment transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_borrowerSTRINGAddress of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_repayAmountSTRINGAmount of debt repaid in the transaction. Denominated in the smallest unit of the underlying token.
in_accountBorrowsSTRINGTotal amount currently borrowed by the individual account. Denominated in the smallest unit of the underlying token.
in_totalBorrowsSTRINGTotal amount borrowed from the market across all borrowers. Denominated in the smallest unit of the underlying token.
addressremovedin_payerlog_indexin_borrowerblock_numberin_repayAmountblock_timestampin_totalBorrowstransaction_hashin_accountBorrows
0x8cd6b19a07d754bf36adeee79edf4f2134a8f571false0x24dc43d37852e8008a9934c519bb7483dee70cbe30x24dc43d37852e8008a9934c519bb7483dee70cbe48178944200000000000000000002022-12-12T00:48:59.000Z19068252172456211393918960x59b14db16bc74aaf195a36b4adb0d818c5ba89ebf51fe05226f1cc443338a1ff63348720634209592322
0x103f2ca2148b863942397dbc50a425cc4f4e9a27false0xc473e3e7d305b6f83419565f3aaf0ba9044f8e4830xc473e3e7d305b6f83419565f3aaf0ba9044f8e4848563713224695194862022-12-12T18:49:07.000Z84673235780x948430c9a5b774c2c6cf645464e7721b11e0f8c4d28a36f1388c4dd73b71c6677542590159
0xf7b5965f5c117eb1b5450187c9dcfccc3c317e8efalse0x711c071f1a0c0cc85cafd4120daa7b252533b57e5400x711c071f1a0c0cc85cafd4120daa7b252533b57e486046742796982282029702556152022-12-12T22:22:39.000Z88127712906165141329540x0e0a2c0db54fbed8fd505d7de77935f541e39318ac28b4d423ca28bd7fb4f82e7377022188187046026536
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_RepayBorrow_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

CToken_ReservesAdded_event

Reserve addition events from Compound V2 fork lending markets on Optimism, tracking when protocol reserves are increased through interest accrual. Used for analyzing protocol revenue accumulation and reserve management across different cToken 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_benefactorSTRINGAddress of the account that provided or contributed the reserves being added to the lending market contract. Hex-encoded, 0x-prefixed, 42-character string.
in_addAmountSTRINGAmount of reserves added to the lending market contract. String-encoded integer representing the token amount in smallest denomination.
in_newTotalReservesSTRINGUpdated total reserves held by the lending market contract after reserves are added or reduced. String-encoded integer representing the token amount in smallest denomination.
addressremovedlog_indexblock_numberin_addAmountin_benefactorblock_timestamptransaction_hashin_newTotalReserves
0xd14451e0fa44b18f08aeb1e4a4d092b823caca68false97456289117521126237380013290xd14451e0fa44b18f08aeb1e4a4d092b823caca682023-02-15T20:55:53.000Z0x639e65d8a4f86c4c19b25e6697c8274b834ebba17cd2c39ff3fbcc5dc9f82948213182805763222075822
0xec8fea79026ffed168ccf5c627c7f486d77b765ffalse117449227113704710xec8fea79026ffed168ccf5c627c7f486d77b765f2023-02-15T14:01:02.000Z0xd291a09496fb39e7fa953d66f5db20e8cc59f697ca6fcc5db74d354fc9069b433401010881
0x5569b83de187375d43fbd747598bfe64fc8f6436false1174569990124546762603861724825660x5569b83de187375d43fbd747598bfe64fc8f64362023-02-15T21:33:36.000Z0x34050f03e4f0e04f9dba682d200a870a49ff56d131deb0f731e9ca4ce7a8328214341860894241141189660
Query with partition filter
SELECT *
FROM `tt-contracts.compoundforks_v2_optimism.CToken_ReservesAdded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100