Tables
Minter_Mint_event
USDe stablecoin minting events from Ethena protocol on Ethereum, recording collateral deposits and corresponding USDe issuance amounts. Tracks minter addresses, beneficiaries, collateral assets (typically USDT), and exchange rates for analyzing stablecoin supply expansion and collateralization patterns.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_minter | STRING | Address authorized to mint tokens in the operation. Hex-encoded, 0x-prefixed, 42-character string for EVM chains; 66-character hex string for Aptos. |
in_benefactor | STRING | Address of the account that provided or contributed the reserves being added to the lending market contract. Hex-encoded, 0x-prefixed, 42-character string. |
in_beneficiary | STRING | Address that receives the tokens, assets, or benefits from the operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_collateral_asset | STRING | Contract address of the collateral token deposited to mint USDe in the Ethena protocol. Hex-encoded Ethereum address, typically stablecoins like USDT based on sample values. |
in_collateral_amount | STRING | Raw amount of collateral asset deposited to mint USDe, denominated in the token’s smallest unit (wei-equivalent). Values represent integer amounts without decimal adjustment, requiring division by the token’s decimals for human-readable figures. |
in_usde_amount | STRING | Amount of USDe minted and issued to the beneficiary, denominated in wei (smallest unit with 18 decimals). Values typically represent large minting operations, often around 100,000 USDe per transaction. |
Sample Data
Sample Data
| address | removed | in_minter | log_index | block_number | in_benefactor | in_beneficiary | in_usde_amount | block_timestamp | transaction_hash | in_collateral_asset | in_collateral_amount |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0x2cc440b721d2cafd6d64908d6d8c4acc57f8afc3 | false | 0x0853c55da9a397932a2d425ba34bde5d42e0c4e5 | 171 | 19159468 | 0x5483a31d4b35913631cef5d058e093f69472c76a | 0x5483a31d4b35913631cef5d058e093f69472c76a | 99893088900000000000000 | 2024-02-05T03:41:23.000Z | 0xbc631f1fdda58e21998b8b1557579aae58adac9c4c16b3a0696ce2347970b39f | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 100000000000 |
| 0x2cc440b721d2cafd6d64908d6d8c4acc57f8afc3 | false | 0xd759ed9c72185b7f1b955075fe4ff7f4e49c518a | 125 | 19159487 | 0x5483a31d4b35913631cef5d058e093f69472c76a | 0x5483a31d4b35913631cef5d058e093f69472c76a | 99891932400000000000000 | 2024-02-05T03:45:23.000Z | 0x22279b18ce2f249318b101eb3f6a227902dde1837c25239732a6fe752a6b477c | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 100000000000 |
| 0x2cc440b721d2cafd6d64908d6d8c4acc57f8afc3 | false | 0xce797c764abbf00182f7079aed2dfd21d2c9906f | 68 | 19159583 | 0x5483a31d4b35913631cef5d058e093f69472c76a | 0x5483a31d4b35913631cef5d058e093f69472c76a | 99892459300000000000000 | 2024-02-05T04:04:47.000Z | 0x5eaa864ff925c7cc1c4e4bce918a4307eec84f8a193f7d35a12b73e982706e68 | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 100000000000 |
Example Query
Example Query
Query with partition filter
Minter_Redeem_event
USDe stablecoin redemption events from Ethena Protocol v1 on Ethereum, recording when users burn USDe tokens in exchange for collateral assets like USDT. Captures redeemer addresses, beneficiaries, collateral amounts, and USDe burn amounts for analyzing redemption flow and stablecoin supply dynamics.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_redeemer | STRING | Address of the account that initiated the redemption transaction. Hex-encoded, 0x-prefixed, 42-character string. |
in_benefactor | STRING | Address of the account that provided or contributed the reserves being added to the lending market contract. Hex-encoded, 0x-prefixed, 42-character string. |
in_beneficiary | STRING | Address that receives the tokens, assets, or benefits from the operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_collateral_asset | STRING | Contract address of the collateral token returned to the user during USDe redemption. Hex-encoded, 0x-prefixed 40-character Ethereum address, commonly USDT (0xdac17f958d2ee523a2206206994597c13d831ec7) in sample data. |
in_collateral_amount | STRING | Amount of collateral tokens returned to the beneficiary during USDe redemption, denominated in the token’s smallest unit (e.g., wei for USDT). This value represents the actual token quantity received in exchange for burning USDe. |
in_usde_amount | STRING | Amount of USDe tokens being redeemed in the transaction, denominated in wei (1e-18 USDe). Values typically range from tens to thousands of USDe when converted from wei. |
Sample Data
Sample Data
| address | removed | log_index | in_redeemer | block_number | in_benefactor | in_beneficiary | in_usde_amount | block_timestamp | transaction_hash | in_collateral_asset | in_collateral_amount |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0x2cc440b721d2cafd6d64908d6d8c4acc57f8afc3 | false | 379 | 0x1908db35ba2c762d23ec3afac58e0b5abf50b813 | 19212807 | 0x3aa3fd1b762cac519d405297ce630bed30430b00 | 0x3aa3fd1b762cac519d405297ce630bed30430b00 | 83255412500000000000 | 2024-02-12T15:21:59.000Z | 0x3795578b62ed91a03f9a6aaf3ae8845093ad496e04d9b209a1703c51df93ca32 | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 60280658 |
| 0x2cc440b721d2cafd6d64908d6d8c4acc57f8afc3 | false | 91 | 0x8d27957f835b2602e4bee716203f230788f4c967 | 19175975 | 0x19bcc1039684e2dbcc1ade0e260caeb88a903d45 | 0x19bcc1039684e2dbcc1ade0e260caeb88a903d45 | 25000000000000000000 | 2024-02-07T11:19:35.000Z | 0xe70661db817350c735122372254dd6c999a11f4352dd3bf8229bc8fba99a8846 | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 8474790 |
| 0x2cc440b721d2cafd6d64908d6d8c4acc57f8afc3 | false | 192 | 0xce797c764abbf00182f7079aed2dfd21d2c9906f | 19142529 | 0x3aa3fd1b762cac519d405297ce630bed30430b00 | 0x3aa3fd1b762cac519d405297ce630bed30430b00 | 30000000000000000000 | 2024-02-02T18:34:47.000Z | 0x7939cc40d9f46d87b2d3ccc2c5eeb30e2efc3efc064229d4979c445da6e79f16 | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 15589938 |
Example Query
Example Query
Query with partition filter