Skip to main content

Tables

LoanFactory_createLoanToken_function

Loan origination function calls on TrueFi v2 Ethereum protocol, capturing loan token creation with parameters including pool address, loan amount, annual percentage yield (APY in basis points), and term duration in seconds. Used for analyzing lending activity, borrowing costs, and loan issuance patterns across TrueFi pools.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in__poolSTRINGContract address of the TrueFi lending pool originating the loan. Hex-encoded, 0x-prefixed Ethereum address identifying the pool providing liquidity for this loan token.
in__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
in__termSTRINGLoan term duration in seconds. Typically 2,592,000 (30 days) or 7,776,000 (90 days) in TrueFi V2 lending pools.
in__apySTRINGAnnual percentage yield (APY) for the loan expressed in basis points. Multiply by 0.01 to convert to percentage (e.g., 1157 = 11.57% APY).
gasvaluestatusin__apygas_usedin__poolin__termsignaturein__amountto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
27162090true115726563120x6002b1dcb26e7b1aa797a17551c6f487923299d725920000xe3f22b6528000000000000x69d844fb5928d0e7bc530cc6325a88e53d6685bc140016910x6dc861183f6c477e95c5325230fbedc10a8085700,02022-01-14T05:10:08.000Z0x7fdb16b9cee3145a92dd0f462ea67075c5ea096fa60fa41ea1cb35147c798125
31269290true89926563120xa991356d261fbaf194463af6df8f0464f8f1c74277760000xe3f22b6588200000000000x69d844fb5928d0e7bc530cc6325a88e53d6685bc132317330x495f8bc43b920279d33d1b34873ab8832440c3222021-09-15T17:44:07.000Z0x77e4a9c61c399b0d3a348b18c96ea8f2a1ec913ef6cd1120b1dd17936b62305b
31269290true93326563120xa991356d261fbaf194463af6df8f0464f8f1c74225920000xe3f22b6584900000000000x69d844fb5928d0e7bc530cc6325a88e53d6685bc132315810x3ccf39e3f47a8bf6145b781f8236454f73079b412021-09-15T17:08:02.000Z0x0e23c6cefc6ac3df40f01f249c35495f16af24d1910e64b8f8a29182858d3054
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanFactory_createLoanToken_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanFactory_LoanTokenCreated_event

LoanToken creation events from TrueFi V2’s LoanFactory contract on Ethereum, capturing each new loan origination with the deployed loan token contract address. Used for tracking loan issuance activity and identifying individual loan contracts for portfolio 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_contractAddressSTRINGContract address on the destination blockchain that is the target of the cross-chain call or deployment. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_contractAddress
0x69d844fb5928d0e7bc530cc6325a88e53d6685bcfalse100127461552021-07-02T04:45:46.000Z0x3bb31e6cabec4305d7f05adec145d328f502229f88c08d12e1658165750ca74b0x9fb208196fa3505f531efd7d89712f5e18d96a5d
0x69d844fb5928d0e7bc530cc6325a88e53d6685bcfalse139133242792021-09-30T01:55:17.000Z0xe4101892232e3fa805a92471eeb8cca9aff9bf14aecb8261bc34a421f818239c0x7d6ae84a8fff85e75bccade39a237c7d9a0a6c71
0x69d844fb5928d0e7bc530cc6325a88e53d6685bcfalse36133282582021-09-30T17:03:36.000Z0x524c0138589b5c8a8ed176add3a07b997b1fe0af93dc188385e6e585bdd70ac30x37b8010decf23bd0ab0dc88cd971ce2912d8964c
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanFactory_LoanTokenCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_Defaulted_event

Loan default events from TrueFi v2 lending protocol on Ethereum, recording when individual loans fail to be repaid with the returned amount recovered. Used for tracking protocol risk events and analyzing borrower default 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_returnedAmountSTRINGAmount of tokens returned to the user after completing the swap or settlement operation. String-encoded integer representing the quantity in the smallest denomination of the output token.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_returnedAmount
0x97688fb5a06b6f3d3b524f7530afbeb883cdc642false379158686172022-10-31T14:24:11.000Z0xb20d6ae7422e9dd8d477b20f39c87fa6b5a5843d8d8d9084853e5392dbd219530
0x4a66a867f52df4ed1d8580a1c383b2dd036a3c47false137157340952022-10-12T19:24:23.000Z0x9a4309bad5a047f128ca62bd69e12ef47992da5eca3fd540256a9fe4507975f5645405815696064463503820
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_Defaulted_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_fund_function

LoanToken fund() function calls on TrueFi V2 lending protocol on Ethereum, tracking when loan tokens receive funding from the originating pool. Used for analyzing loan origination timing and borrower funding 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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
gasvaluestatusgas_usedsignatureto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
41297960true1068360xb60d42880x30eb1e7fb76ae6feda7efb1bc6a4d3490f2e61d2125378420xa606dd423df7dfb65efe14ab66f5fdebf62ff5830,102021-05-30T20:30:40.000Z0x582df55fb9f503a2ba9fa4f8c4b1222a98dc4137634f201ab75e9f3932009b84
1572700true1089320xb60d42880xf0974bb470037dcbdf5e0001caa883e84589d76f142131830xa606dd423df7dfb65efe14ab66f5fdebf62ff5830,112022-02-15T21:32:53.000Z0x066d4024acb343befbcd78a30f094c4fab3d95b6edd6938ada4ced87cc5eca29
2299770true1089320xb60d42880xf590649cbacdb392658d4436f2328768c9f2caaa135237780xa606dd423df7dfb65efe14ab66f5fdebf62ff5830,112021-10-31T08:38:50.000Z0x1c59fa79dcb2ef4fe2a1d0f42d08ceb9ae86c16a4676329180e2595d89917c13
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_fund_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_Funded_event

Loan funding events from TrueFi V2 lending protocol on Ethereum, emitted when a loan token receives capital from the lending pool. Tracks individual loan originations with lender address and loan token contract for analyzing lending pool deployment 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_lenderSTRINGAddress of the lender providing funds in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_lenderlog_indexblock_numberblock_timestamptransaction_hash
0x232e0a81c41c0b0999e7b671cb5046beb808c49ffalse0xa606dd423df7dfb65efe14ab66f5fdebf62ff583279158339552022-10-26T18:11:11.000Z0x0cf5fe80ab2ddd2208568bafeac5834b1ffdec5ffd27c70a43f0defd0edf5bf2
0x033e25dde1cfdb4f5183e924d4ff93b678cf8f74false0xa606dd423df7dfb65efe14ab66f5fdebf62ff583331131704892021-09-06T06:02:55.000Z0x1d088c3b6c65cc70b207f92b6f9ecdde258e51bfa29e8a409990ecca6ffe0b16
0xccfceb165345e9c5231cf1465aa8e956dc28e2fbfalse0xa606dd423df7dfb65efe14ab66f5fdebf62ff583300153761982022-08-20T07:00:39.000Z0xc09ac8e337c5ec07a5e3a85fc385ee18dd698b5b91ca0f0672dcdf1b98310440
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_Funded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_liquidate_function

Liquidation event traces for TrueFi v2 loans on Ethereum, capturing when loan tokens are liquidated due to borrower default or undercollateralization. Used for analyzing protocol risk events, liquidation timing, and recovery processes.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
gasvaluestatusgas_usedsignatureto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
19001730true66830x28a070250x4a66a867f52df4ed1d8580a1c383b2dd036a3c47157341230x7ac899754dd042024bb168fd5c9a07420f444bdf0,4,0,102022-10-12T19:29:59.000Z0xedd04254b5177c78112f236c807bdf5da0c09e950b8c9952e3d1f795e4669e3e
18123040true66830x28a070250x97688fb5a06b6f3d3b524f7530afbeb883cdc642158837160x7ac899754dd042024bb168fd5c9a07420f444bdf0,3,0,102022-11-02T17:05:59.000Z0x6301a634575377750fd9cbd41b27a672bc96e70f14845a353ca14b7388d19eb6
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_liquidate_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_Liquidated_event

Liquidation events from TrueFi V2 loan tokens on Ethereum, capturing when undercollateralized loans are liquidated with status codes and contract addresses. Used for tracking loan defaults and protocol risk management across TrueFi’s lending pools.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_statusINT64Status code representing the state of the entity or operation. Integer value with meaning specific to the contract context.
addressremovedin_statuslog_indexblock_numberblock_timestamptransaction_hash
0x97688fb5a06b6f3d3b524f7530afbeb883cdc642false5149158837162022-11-02T17:05:59.000Z0x6301a634575377750fd9cbd41b27a672bc96e70f14845a353ca14b7388d19eb6
0x4a66a867f52df4ed1d8580a1c383b2dd036a3c47false5121157341232022-10-12T19:29:59.000Z0xedd04254b5177c78112f236c807bdf5da0c09e950b8c9952e3d1f795e4669e3e
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_Liquidated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_reclaim_function

TrueFi V2 loan token reclaim function calls on Ethereum, tracking attempts to recover collateral or funds from defaulted or completed loans with transaction-level execution details.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
gasvaluestatusgas_usedsignatureto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
28289360false46380x80e9071b0x9997d247ac85af038cfe49d0ca393b90bd664e19152949630x748e8726cac8f58e366829d9c2b72ba97e1cf2f62022-08-07T11:43:19.000Z0x0d254ffb30124db1d17f3679ed543954477631d852d56314ea9d7da8db812411
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_reclaim_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_redeem_function

LoanToken redemption function calls on TrueFi v2 lending protocol (Ethereum), capturing when lenders withdraw their principal and interest by burning loan tokens. Contains redemption amounts, transaction execution details, and caller addresses for analyzing loan repayment flows and lender exit behavior.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
gasvaluestatusgas_usedsignaturein__amountto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
15335540true549330xdb006a7561624367026686066371812300xfd73553fac90fb32f91f8f98bf6e2d913add613d135518890xa606dd423df7dfb65efe14ab66f5fdebf62ff5830,52021-11-04T18:46:18.000Z0xe1cfcf914e48c5808bd151297b4f30fbd78ed566a608e23e4223fb2d51f27853
15397860true720270xdb006a7586571917808219178082191780xdb7754d0ca2c62896bf1f745288f7008f13ba599135519070xa606dd423df7dfb65efe14ab66f5fdebf62ff5830,52021-11-04T18:51:24.000Z0x15801e97075e348ad35024f34a09e647cab5bd1da1539d81be5d3debd9940925
15329310true720270xdb006a7591134767123287671232876710x17314ce9a99a98be1a2537af925b488499c10102135519000xa606dd423df7dfb65efe14ab66f5fdebf62ff5830,52021-11-04T18:49:24.000Z0x5c80c2953b36d58c806a578899e9d3b9255b2cc9749352cb7508507b0f2a3ec5
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_redeem_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_Redeemed_event

Redemption events from TrueFi v2 loan tokens on Ethereum, capturing when lenders burn loan tokens to reclaim underlying assets. Records burned token amounts, redeemed principal, and receiver addresses for analyzing loan repayment activity and liquidity withdrawals.
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_receiverSTRINGAddress that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_burnedAmountSTRINGAmount of loan tokens burned when redeemed, denominated in the token’s smallest unit (wei-equivalent). This value typically matches in_redeemedAmount as burned tokens are exchanged 1:1 for the underlying asset upon redemption.
in_redeemedAmountSTRINGAmount of underlying tokens redeemed by burning TrueFi LoanTokens, denominated in the smallest token unit (wei for 18-decimal tokens). Matches the burned amount in all sample cases, representing the 1:1 conversion value from loan tokens to underlying assets.
addressremovedlog_indexin_receiverblock_numberblock_timestampin_burnedAmounttransaction_hashin_redeemedAmount
0x864641e8040798da2e680f4bb3c93ed6ebb62982false220xa606dd423df7dfb65efe14ab66f5fdebf62ff583127880492021-07-08T17:29:14.000Z10139724901660x5a16daf6f3f40ddf2c48dcaf7ade439917d3d504e982633548b130f405e1ae5e1013972490166
0x164c6f974a9dab180bc763412624107e413af8a2false1980xa606dd423df7dfb65efe14ab66f5fdebf62ff583130526542021-08-19T01:17:39.000Z32168644702770x15fed0eec726f76bf76d63ad9cf54530511fb25e900b54414652810decee03973216864470277
0xdddca5cf3a53868428ea428cdc6b30bca0f05921false3550xa606dd423df7dfb65efe14ab66f5fdebf62ff583156900102022-10-06T15:39:59.000Z192050814246570x73210b0261dafd3c18ebec820fe240e4c1c1618f06dc192fe57a2df9607838cc19205081424657
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_Redeemed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_Repaid_event

Loan repayment events from TrueFi v2 lending protocol on Ethereum, tracking when borrowers repay principal and interest on tokenized loans. Contains repayment amounts, borrower addresses, and loan token contracts for analyzing loan performance and protocol cash flows.
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_repayerSTRINGAddress of the account that executed the repayment transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_repaidAmountSTRINGAmount of tokens repaid by the borrower in the loan repayment transaction, denominated in the smallest unit of the loan token (wei for ETH-based tokens). Values are stored as strings to preserve precision for large token amounts.
addressremovedlog_indexin_repayerblock_numberblock_timestampin_repaidAmounttransaction_hash
0x232e0a81c41c0b0999e7b671cb5046beb808c49ffalse1780xb868dd38a23b0ad901b635d7b7fe235f2460dc2b164711312023-01-23T17:54:59.000Z56491780821910x70b107fc343464d96b76950adb53204cc8abc81cdd802b6a9624aa23eb10d013
0x4a66a867f52df4ed1d8580a1c383b2dd036a3c47false4200x5ef538da06e6e41e14c788728054436b0a64e4eb157340772022-10-12T19:20:47.000Z5070820238031324909397820x45c8489d5c64fe26e67a42b3925dcf1ddaaf39799fe0b092b2d07534a9566859
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_Repaid_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_repay_function

Loan repayment transaction records from TrueFi v2 lending protocol on Ethereum. Captures repayment amounts, sender addresses, and execution details for tracking borrower payment activity and loan performance.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in__senderSTRINGAddress of the account initiating the contract function call or event emission. Hex-encoded, 0x-prefixed, 42-character string.
in__amountSTRINGAmount of tokens involved in the transaction. String-encoded integer representing token quantity in smallest unit (wei for ETH, base units for ERC20 tokens).
gasvaluestatusgas_usedsignaturein__amountin__senderto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
834580true484120x22867d785070820238031324909397820x5ef538da06e6e41e14c788728054436b0a64e4eb0x4a66a867f52df4ed1d8580a1c383b2dd036a3c47157340770x5ef538da06e6e41e14c788728054436b0a64e4eb2022-10-12T19:20:47.000Z0x45c8489d5c64fe26e67a42b3925dcf1ddaaf39799fe0b092b2d07534a9566859
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_repay_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_repayInFull_function

Loan repayment transactions from TrueFi v2 protocol on Ethereum where borrowers fully repay their outstanding loan principal and interest. Used for tracking loan closure events and analyzing borrower repayment behavior.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in__senderSTRINGAddress of the account initiating the contract function call or event emission. Hex-encoded, 0x-prefixed, 42-character string.
gasvaluestatusgas_usedsignaturein__senderto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
6366150true485260x780f9e370xb868dd38a23b0ad901b635d7b7fe235f2460dc2b0x232e0a81c41c0b0999e7b671cb5046beb808c49f164711310xb868dd38a23b0ad901b635d7b7fe235f2460dc2b0,0,0,0,1,22023-01-23T17:54:59.000Z0x70b107fc343464d96b76950adb53204cc8abc81cdd802b6a9624aa23eb10d013
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_repayInFull_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

LoanToken_Settled_event

Loan settlement events from TrueFi V2 on Ethereum, recording when loan tokens are repaid with the returned principal and interest amounts. Used for tracking loan performance, default rates, and protocol revenue across TrueFi lending pools.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_returnedAmountSTRINGAmount of tokens returned to the user after completing the swap or settlement operation. String-encoded integer representing the quantity in the smallest denomination of the output token.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_returnedAmount
0xadf046a62c1a1a01289176a015dff0995bba46e9false247136143042021-11-14T13:39:00.000Z0x40af7c75b5cb17f5589af4eed84e74705ceaa749abd667d9210145a164ab027453833938630136
0x8ab3055722c62be1673a194cc9c7a0fbdd898ecafalse319128542542021-07-19T02:02:34.000Z0xbc5998c0747fee3d7eb6ecf96cca1fc861f1804d590dd3975afc6b8481079c1e506986301369
0xd425b404a8ba51dc4b260fdbb284d55b7a970a13false66145288242022-04-05T23:16:43.000Z0x0f9cb40ea6bf5796c74a9c7c3250984fb353f2191fbc9e2dced6f22028804b1f55768335095890
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.LoanToken_Settled_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_borrowerSTRINGAddress of the borrower in the lending or loan transaction. 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_indexin_borrowerblock_numberblock_timestamptransaction_hash
0xa991356d261fbaf194463af6df8f0464f8f1c742false5000000000003290xa606dd423df7dfb65efe14ab66f5fdebf62ff583126682072021-06-20T01:05:40.000Z0xa552dfe34250e4038363135c7fb46e659714c2b91d7bc6e902db972a88eabaee
0xa991356d261fbaf194463af6df8f0464f8f1c742false85980000000003010xa606dd423df7dfb65efe14ab66f5fdebf62ff583135958162021-11-11T15:53:16.000Z0xda66d614b6a3fc8d480a59aac16f7bf1cc7d7a090f1e8deefe518f80073e1772
0x1ed460d149d48fa7d91703bf4890f97220c09437false200000000000000000000000002620xa606dd423df7dfb65efe14ab66f5fdebf62ff583148285132022-05-23T08:30:14.000Z0x062b4aec76049471adce8ed33d5a50f69241f320ec3a4a8225a9aafce5943403
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.Pool_Borrow_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Exited_event

Withdrawal events from TrueFi V2 lending pools on Ethereum, recording staker exits with withdrawn amounts and pool addresses. Used for tracking liquidity provider activity and pool outflow 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_stakerSTRINGAddress of the account that deposited or staked tokens into the protocol. 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_amountin_stakerlog_indexblock_numberblock_timestamptransaction_hash
0x1ed460d149d48fa7d91703bf4890f97220c09437false17734463156568825877578260x2bbde8e38badf38603c8c66869faeb0117bfb1bf169147605282022-05-12T10:22:57.000Z0xd32407ebd35272a17fc603af3e3b021fe09444bbfcda5f51fcf8dee48b0fd02d
0x6002b1dcb26e7b1aa797a17551c6f487923299d7false5597064690270x0b5a91adc9a867501fd814cea2caba28f9770b63202147592922022-05-12T05:32:21.000Z0x217269cd3b56fb09cf482baa6912c13f27f160e97831e6642c8bbfd415f674c3
0xa991356d261fbaf194463af6df8f0464f8f1c742false46486339956620x4460c8c57b8094d64076e6c26711c3b65554c8d9188147595672022-05-12T06:34:25.000Z0x1942cbf72cbf8da423fbe23c5c2ed8e93bb56d4f2e4b4e2f12c213f88b62b6dc
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.Pool_Exited_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Joined_event

Deposit events from TrueFi V2 lending pools on Ethereum, capturing when stakers join pools by depositing assets and receiving minted pool tokens. Used for tracking liquidity provider activity and pool token issuance across TrueFi 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_stakerSTRINGAddress of the account that deposited or staked tokens into the protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_depositedSTRINGAmount of underlying tokens deposited into the TrueFi v2 pool by the staker, denominated in the smallest unit of the token. Values typically range from billions to trillions, representing deposits with token-specific decimal precision.
in_mintedSTRINGAmount of tokens minted and issued to the user. String-encoded integer value representing the quantity in the smallest unit of the token.
addressremovedin_mintedin_stakerlog_indexblock_numberin_depositedblock_timestamptransaction_hash
0x6002b1dcb26e7b1aa797a17551c6f487923299d7false4795815925560x8c14ac5b17cff2612e48334935db48cfd56cbc09345126979734795815925562021-06-24T16:49:50.000Z0xc303d421f7eeb2b2fb799df9f4d03205e2d790b61f4dffb63f3f5fbd0bc51d53
0x6002b1dcb26e7b1aa797a17551c6f487923299d7false14310143176830x818b0246ee14f772847404c12bdc313b1c71bfee1901269877214310143176832021-06-24T19:41:49.000Z0x7cfd68d993b6c0bc59b625fc904e5ac1a53b3cc93d7dd62d03d6847f5365c870
0x6002b1dcb26e7b1aa797a17551c6f487923299d7false500000000000xe4cbd73a353c11030c98b4166cba7afa594895b07212696437500000000002021-06-24T10:57:23.000Z0x173cde807637811bd76ad3aa44ecbb052a9f9fdd0102445411f72671acf41f9c
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.Pool_Joined_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Repaid_event

Loan repayment events from TrueFi v2 lending pools on Ethereum, capturing the payer address and repayment amount for each pool transaction. Used for tracking borrower repayment behavior and pool cash flow 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_payerSTRINGAddress of the account that provided the funds for the repayment or payment transaction. 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_payerin_amountlog_indexblock_numberblock_timestamptransaction_hash
0x6002b1dcb26e7b1aa797a17551c6f487923299d7false0xa606dd423df7dfb65efe14ab66f5fdebf62ff5831821488259726164134629352021-10-21T19:39:06.000Z0x21b39e53b40e284d9b59c2140eac29d53a9ec7e4c74d69a050ec0001af0fba94
0xa991356d261fbaf194463af6df8f0464f8f1c742false0xa606dd423df7dfb65efe14ab66f5fdebf62ff5835520583561643846134629352021-10-21T19:39:06.000Z0xd048e97f6398ad98807b38971c0ee1c272b13083c1fbbdc461425c48aafd6480
0x6002b1dcb26e7b1aa797a17551c6f487923299d7false0xa606dd423df7dfb65efe14ab66f5fdebf62ff5832037847380136437150003052022-06-21T03:47:50.000Z0x4b2f3fc5ef83e4b57b928a44c2214bf8b2b7eedcdf1ea9ceaef59f45368a7b70
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.Pool_Repaid_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PoolFactory_PoolCreated_event

Pool creation events emitted by factory contracts when new liquidity pools are deployed. Records the pool address, token pair or configuration parameters, and fee structure for tracking pool deployments across decentralized exchange 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_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
addressin_poolremovedin_tokenlog_indexblock_numberblock_timestamptransaction_hash
0x1391d9223e08845e536157995085fe0cef8bd3930xa991356d261fbaf194463af6df8f0464f8f1c742false0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb4837124715602021-05-20T13:28:14.000Z0xb21186ddb51c1a8b73fbc7abbd9ade04b873c139efc4ea9afe926f0c142c5bcf
0x1391d9223e08845e536157995085fe0cef8bd3930x97ce06c3e3d027715b2d6c22e67d5096000072e5false0x0000000000085d4780b73119b644ae5ecd22b376104130435392021-08-17T15:32:30.000Z0x8493d3f3d6d8415e7f9c9c64e37d5b6ea1bd2130c10c606b7e9ba0fecbb7ed8e
0x1391d9223e08845e536157995085fe0cef8bd3930x6002b1dcb26e7b1aa797a17551c6f487923299d7false0xdac17f958d2ee523a2206206994597c13d831ec7292126532002021-06-17T17:13:55.000Z0xe4d353c8f2cd6f68b302ebe07d4c7eac64dc00a6a58255310f40090604913a3d
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.PoolFactory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SAFU_Liquidated_event

SAFU (Secure Asset Fund for Users) liquidation events from TrueFi v2 lending protocol on Ethereum, capturing undercollateralized loan defaults with deficit amounts and token addresses. Used for tracking protocol insurance fund activations and analyzing credit risk across lending pools.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_loanSTRINGContract address of the loan being created, claimed, funded, or liquidated. Hex-encoded, 0x-prefixed, 42-character string.
in_repaidSTRINGAmount of the loan that was repaid before liquidation, denominated in the deficiency token’s smallest unit. Typically zero when SAFU (Secure Asset Fund for Users) liquidations occur due to loan defaults.
in_deficiencyTokenSTRINGContract address of the token in which the deficit is denominated after SAFU (Secure Asset Fund for Users) liquidation. Hex-encoded, 0x-prefixed 40-character string representing the ERC-20 token used to measure the loan shortfall.
in_deficitSTRINGOutstanding debt amount in the loan’s deficiency token after liquidation. Denominated in the token’s smallest unit (wei-equivalent), represents the shortfall that SAFU (Secure Asset Fund for Users) must cover.
addressin_loanremovedin_repaidlog_indexin_deficitblock_numberblock_timestamptransaction_hashin_deficiencyToken
0x1ea63189eb1f4c109b10cf6567f328c826aa61510x4a66a867f52df4ed1d8580a1c383b2dd036a3c47false01273496922708547945205479452157341232022-10-12T19:29:59.000Z0xedd04254b5177c78112f236c807bdf5da0c09e950b8c9952e3d1f795e4669e3e0x7ddb9665810593900219d9f12dc46602b7b181f9
0x1ea63189eb1f4c109b10cf6567f328c826aa61510x97688fb5a06b6f3d3b524f7530afbeb883cdc642false01541065046038794520547945205158837162022-11-02T17:05:59.000Z0x6301a634575377750fd9cbd41b27a672bc96e70f14845a353ca14b7388d19eb60x50650c56aa2c39c6e76b57883edab738553a3b56
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.SAFU_Liquidated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TrueLender_fund_function

Function calls to the TrueFi v2 lending protocol’s fund operation on Ethereum, recording capital deployments to loan tokens. Used to track lending pool funding events and analyze liquidity provider contributions to specific loan opportunities.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_loanTokenSTRINGContract address of the loan token associated with the lending operation. Hex-encoded, 0x-prefixed, 42-character string.
gasvaluestatusgas_usedsignatureto_addressblock_numberfrom_addressin_loanTokentrace_addressblock_timestamptransaction_hash
4027880true2895600x230244080xa606dd423df7dfb65efe14ab66f5fdebf62ff583153692060xa801855ef035db7f90f4dd11ee4a49ac47db0ccd0x7372d690d521f289467ac9c0b647c5d35e8c6d3c2022-08-19T04:15:09.000Z0x30e14b47026d72e35dd357298873d7b843f16fd9636e988cad380e1339b04b36
25327370true19694180x230244080xa606dd423df7dfb65efe14ab66f5fdebf62ff583131704890x964d9d1a532b5a5daeacbac71d46320de313ae9c0x033e25dde1cfdb4f5183e924d4ff93b678cf8f742021-09-06T06:02:55.000Z0x1d088c3b6c65cc70b207f92b6f9ecdde258e51bfa29e8a409990ecca6ffe0b16
4027880true2895600x230244080xa606dd423df7dfb65efe14ab66f5fdebf62ff583153761980x728b77751a7b1ae29a94901695f3dd8add37d0860xccfceb165345e9c5231cf1465aa8e956dc28e2fb2022-08-20T07:00:39.000Z0xc09ac8e337c5ec07a5e3a85fc385ee18dd698b5b91ca0f0672dcdf1b98310440
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.TrueLender_fund_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TrueLender_Funded_event

Loan funding events from TrueFi V2 protocol on Ethereum, recording when the TrueLender contract disburses funds from lending pools to borrowers. Used for tracking loan origination activity, pool utilization, and capital deployment across different TrueFi lending pools.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_loanTokenSTRINGContract address of the loan token associated with the lending 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.
addressin_poolremovedin_amountlog_indexblock_numberin_loanTokenblock_timestamptransaction_hash
0xa606dd423df7dfb65efe14ab66f5fdebf62ff5830xa991356d261fbaf194463af6df8f0464f8f1c742false3000000000000183135762570x0d0ec8e87663b1f28c2f01feb3f3eb3ae3ebdea12021-11-08T14:15:40.000Z0xf4f43417c264db480dc46256071a00cb030c76544c2dc14a5e0d101d8ace0ffa
0xa606dd423df7dfb65efe14ab66f5fdebf62ff5830xa991356d261fbaf194463af6df8f0464f8f1c742false2058000000000185135736880x63f828f9490ea9a1ca6965bfc7eb386fb0faa6c42021-11-08T04:34:33.000Z0x9e5477a755b5c77a692fc87812bd95c4360c7fafa2176bcae68e59844502ea9a
0xa606dd423df7dfb65efe14ab66f5fdebf62ff5830xa991356d261fbaf194463af6df8f0464f8f1c742false3500000000000250147871610x73e7a62e5c88aed26df4d1df4d11a410291032782022-05-16T15:54:51.000Z0xaf716e83298751900132264eb747e9667c45060bf0b3154f3805399479c214d9
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.TrueLender_Funded_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TrueLender_reclaim_function

TrueFi V2 lending protocol reclaim function calls on Ethereum, tracking lender operations to recover unused funds or expired loan tokens from the TrueLender contract. Used for analyzing fund management operations and recovery patterns across different loan token pools.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_loanTokenSTRINGContract address of the loan token associated with the lending operation. Hex-encoded, 0x-prefixed, 42-character string.
in_dataSTRINGEncoded input data for the contract function call. Hex-encoded byte string representing function parameters and additional call data.
gasvaluestatusin_datagas_usedsignatureto_addressblock_numberfrom_addressin_loanTokentrace_addressblock_timestamptransaction_hash
8919390true0x8752590xc35287f70xa606dd423df7dfb65efe14ab66f5fdebf62ff583128543710x1fdb7d685c1bbc83c8a16e7b88a59d9a58fc22ca0x8ab3055722c62be1673a194cc9c7a0fbdd898eca2021-07-19T02:31:56.000Z0xd17f41b07581ec2dfe07b25e47d2f44787dc676c6db4beb72a2557f4fe6c5390
2162380true0x2129750xc35287f70xa606dd423df7dfb65efe14ab66f5fdebf62ff583147588780x1fdb7d685c1bbc83c8a16e7b88a59d9a58fc22ca0x6eedc3df6747ebc1c00ab254b64c46c9e07e02f12022-05-12T03:54:49.000Z0xc80d81de7f5529dde5322155b64f5279d157666e3b2a8a9fbe020cd6c723d04e
8780300false0x2e95b6c80000000000000000000000000000000000085d4780b73119b644ae5ecd22b37600000000000000000000000000000000000000000000003745a3eedcc9b39dce000000000000000000000000000000000000000000000000000000003baaac060000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000200000000000000003b6d0340760166fa4f227da29ecac3bec348f5fa853a1f3c80000000000000003b6d0340397ff1542f962076d0bfe58ea045ffa2d347aca0cfee7c088522080xc35287f70xa606dd423df7dfb65efe14ab66f5fdebf62ff583140166760x1fdb7d685c1bbc83c8a16e7b88a59d9a58fc22ca0x309d8b391835dacc934bda4af5cc1d8f196ba1222022-01-16T13:02:17.000Z0x794a9698e86c9907df05159ba454280d112596368df7da0ea5249863e6cc0073
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.TrueLender_reclaim_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

TrueLender_Reclaimed_event

Reclaimed loan token events from TrueFi V2 lending pools on Ethereum, tracking when the TrueLender contract reclaims tokens from specific pools. Used for analyzing pool liquidity operations and capital allocation between different TrueFi lending pools.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_loanTokenSTRINGContract address of the loan token associated with the lending 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.
addressin_poolremovedin_amountlog_indexblock_numberin_loanTokenblock_timestamptransaction_hash
0xa606dd423df7dfb65efe14ab66f5fdebf62ff5830x97ce06c3e3d027715b2d6c22e67d5096000072e5false12483048054794520547945205363140933380x479e75d870034815aeae0a208244fdef3b360e352022-01-28T09:26:24.000Z0xb0961fff717d1212576bd6cbad1afebd2cf734e7f540c55d6e8f7d1062b17f02
0xa606dd423df7dfb65efe14ab66f5fdebf62ff5830x97ce06c3e3d027715b2d6c22e67d5096000072e5false12426870356164383561643835350140933350x67f3ba00e32e45c06699db47e1a95f3c346d45dd2022-01-28T09:25:56.000Z0x399c29edcca8dde752c5e537b5ec3d099780ec912a1d96133ebad251d58ad706
0xa606dd423df7dfb65efe14ab66f5fdebf62ff5830x97ce06c3e3d027715b2d6c22e67d5096000072e5false9096299857534246575342465375140933430x033e25dde1cfdb4f5183e924d4ff93b678cf8f742022-01-28T09:28:16.000Z0x49ebe4d58bd4de519741da34e50701b121281a612f56a2150b83d846ca855008
Query with partition filter
SELECT *
FROM `tt-contracts.truefi_v2_ethereum.TrueLender_Reclaimed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100