Tables
ERC1155BurnRedeem_BurnRedeemMint_event
Burn-to-redeem events from Manifold’s ERC-1155 extension on Ethereum, recording when users burn specific tokens to mint new ones from creator contracts. Useful for analyzing NFT redemption mechanics and token burn-and-mint campaign participation.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_creatorContract | STRING | Contract address of the NFT creator contract associated with the claim or redeem operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_tokenId | STRING | Unique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
in_burnTokenAddress | STRING | Contract address of the ERC1155 token that was burned in exchange for minting a new token. Hex-encoded, 0x-prefixed 40-character string for the source token being redeemed. |
in_burnTokenId | STRING | Token ID of the ERC1155 token that was burned in exchange for minting a new token. Numeric value stored as string, typically small integers like ‘2’ in burn-to-redeem campaigns. |
Sample Data
Sample Data
| address | removed | in_amount | log_index | in_tokenId | block_number | in_burnTokenId | block_timestamp | transaction_hash | in_creatorContract | in_burnTokenAddress |
|---|---|---|---|---|---|---|---|---|---|---|
| 0xa4fb4bfbd70ae8c81ece9e0fcceffa9953e120cb | false | 1 | 299 | 1 | 16424078 | 2 | 2023-01-17T04:18:59.000Z | 0x510c9cc0070895962e7359a451ba83e2050ae26a3bd8da590eca9faea0bb528c | 0x28084294df3105b3194876e932417dedf508d696 | 0xafce699aea04a33324ad4e8c0597881360bea2df |
| 0xa4fb4bfbd70ae8c81ece9e0fcceffa9953e120cb | false | 1 | 123 | 1 | 16422948 | 2 | 2023-01-17T00:31:11.000Z | 0x882bdf568c7fa4809c633441647aef8717bee726dc18399ec063579e05c58c05 | 0x28084294df3105b3194876e932417dedf508d696 | 0xafce699aea04a33324ad4e8c0597881360bea2df |
| 0xa4fb4bfbd70ae8c81ece9e0fcceffa9953e120cb | false | 1 | 189 | 1 | 16425578 | 2 | 2023-01-17T09:19:23.000Z | 0xc906dfddda4231f676f4d6d5a3118b6d371c359a65e4d9b707eb547366196c63 | 0x28084294df3105b3194876e932417dedf508d696 | 0xafce699aea04a33324ad4e8c0597881360bea2df |
Example Query
Example Query
Query with partition filter
ERC1155LazyPayableClaim_ClaimMint_event
ERC1155 (multi-token standard) claim mint events emitted by Manifold’s lazy payable claim extension contracts when users mint NFTs through a claim campaign. Links the claim extension contract address to the creator contract and campaign instance identifier for tracking claim-based minting activity.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_creatorContract | STRING | Contract address of the NFT creator contract associated with the claim or redeem operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_claimIndex | STRING | Identifier for the claim configuration on the creator contract. Numeric string representing the claim instance being executed or initialized. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_claimIndex | block_timestamp | transaction_hash | in_creatorContract |
|---|---|---|---|---|---|---|---|
| 0x4e32004d8b81847a670b4a1778ace4dcf2bba01e | false | 214 | 15841973 | 0 | 2022-10-27T21:03:59.000Z | 0xe19a15d373b99293dfd1eeb0e3a632bc818920c4037c6631e719cd7948142e40 | 0x0369edc7646948e2f36f9f85baf297bb99843054 |
| 0x4e32004d8b81847a670b4a1778ace4dcf2bba01e | false | 179 | 15838059 | 0 | 2022-10-27T07:56:11.000Z | 0x798505b5a939ed4a53760052aadd5e3b5960e1d492a5effeccbdfa4f40b24e0d | 0x0c5003989efbe4c737bc235b74949892601a18a3 |
| 0x4e32004d8b81847a670b4a1778ace4dcf2bba01e | false | 68 | 15840383 | 0 | 2022-10-27T15:44:11.000Z | 0x70fbc94bec23c940ebc69d02c137a5ef43ef4a4bc5c311ba7008c38ea50d914c | 0x0dee938b646267843229e86714ee6d3475a9509a |
Example Query
Example Query
Query with partition filter
ERC1155LazyPayableClaim_ClaimMintBatch_event
Batch minting events for ERC-1155 tokens through Manifold’s lazy claim system, linking creator contracts to claim instances. Records mint count and claim identifiers for tracking multi-token NFT distribution campaigns.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_creatorContract | STRING | Contract address of the NFT creator contract associated with the claim or redeem operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_claimIndex | STRING | Identifier for the claim configuration on the creator contract. Numeric string representing the claim instance being executed or initialized. |
in_mintCount | STRING | Number of tokens minted in the batch operation. Numeric string representation of the mint quantity. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_mintCount | in_claimIndex | block_timestamp | transaction_hash | in_creatorContract |
|---|---|---|---|---|---|---|---|---|
| 0x4e32004d8b81847a670b4a1778ace4dcf2bba01e | false | 197 | 15933828 | 2 | 1 | 2022-11-09T17:02:35.000Z | 0xc52f44f03dfd3577510e43c48577465327d8da88dfd45d8845b2c423d82af22f | 0x25963fd190eb83da7dd80035c95317316d182b43 |
| 0x4e32004d8b81847a670b4a1778ace4dcf2bba01e | false | 247 | 15934819 | 2 | 4 | 2022-11-09T20:22:23.000Z | 0x061060c83116f61d6dc9876833ff5c0020aee2158fb9ef33560a72cca73bd1c8 | 0x87411de5b584f149f25705fc8a5751ee66bc844f |
| 0x4e32004d8b81847a670b4a1778ace4dcf2bba01e | false | 200 | 15933837 | 2 | 2 | 2022-11-09T17:04:23.000Z | 0x1e9dadee71500276e37a339ae5b77edf6759b7a7390736fd7ae5cfca13a4c144 | 0xb7aab0ae22c3d9cfc4fad7a0d9915097db4dbb5b |
Example Query
Example Query
Query with partition filter
ERC721BurnRedeem_burnRedeem_function
Manifold ERC721 burn-to-redeem function calls on Ethereum where users burn specified NFTs to claim new tokens from creator contracts. Used for analyzing burn mechanics campaigns, redemption patterns, and NFT utility programs.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. |
trace_address | STRING | Hierarchical 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. |
status | BOOL | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution. |
from_address | STRING | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string. |
to_address | STRING | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string. |
value | FLOAT64 | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC). |
gas_used | INT64 | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used. |
gas | INT64 | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed. |
signature | STRING | Function selector identifying which contract function was called. 10-character hex string including 0x prefix. |
in_creatorContractAddresses | ARRAY<STRING> | Array of creator contract addresses for the burn redeem transaction. Each element is a hex-encoded, 0x-prefixed, 42-character string corresponding to the contract address that created the tokens being redeemed. |
in_indexes | ARRAY<STRING> | Array of unique identifiers for burn-redeem instances within a transaction, used to track multiple simultaneous redemptions. Each index corresponds to a specific burn-redeem operation in the creator contract addresses array. |
in_burnRedeemCounts | ARRAY<STRING> | Array of quantities specifying how many tokens to redeem for each burn operation. Each element contains a numeric string representing the count for the corresponding position in the burn redeem transaction. |
in_burnTokens | STRING | Array of token specifications to be burned in the redeem transaction. Each element contains groupIndex, itemIndex, contractAddress (hex-encoded, 0x-prefixed), token id, and optional merkleProof array for verification. |
Sample Data
Sample Data
| gas | value | status | gas_used | signature | in_indexes | to_address | block_number | from_address | in_burnTokens | trace_address | block_timestamp | transaction_hash | in_burnRedeemCounts | in_creatorContractAddresses |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 349301 | 4380000000000000 | true | 268865 | 0x42b54fee | [“1070080240”,“1070080240”] | 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | 17119644 | 0x318a77b3edc49618d2a48116d5e6d64a5e697c5d | [[{“groupIndex”:“0”,“itemIndex”:“0”,“contractAddress”:“0xaf06a25a3db7519b06b87fbdfea67814e80aef3e”,“id”:“2986”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”]}],[{“groupIndex”:“0”,“itemIndex”:“0”,“contractAddress”:“0xaf06a25a3db7519b06b87fbdfea67814e80aef3e”,“id”:“2203”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”]}]] | 2023-04-25T00:14:35.000Z | 0xb9ff40fb23b78b14ce81f987f21e774718659c85e85245be38bf400da970ca38 | [“1”,“1”] | [“0x75a9819a42f76715728ba4fca751128a4a534ccf”,“0x75a9819a42f76715728ba4fca751128a4a534ccf”] | |
| 777777 | 2760000000000000 | true | 486696 | 0x42b54fee | [“1072531696”,“1072531696”,“1072531696”,“1072531696”] | 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | 17112373 | 0x85a08829d6884883437cc009e14b895d61c0db91 | [[{“groupIndex”:“0”,“itemIndex”:“0”,“contractAddress”:“0x3cb9c3f0ad5ac856f277427dfcc9f3757f9bb08e”,“id”:“2666”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”]}],[{“groupIndex”:“0”,“itemIndex”:“0”,“contractAddress”:“0x3cb9c3f0ad5ac856f277427dfcc9f3757f9bb08e”,“id”:“1511”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”]}],[{“groupIndex”:“0”,“itemIndex”:“0”,“contractAddress”:“0x3cb9c3f0ad5ac856f277427dfcc9f3757f9bb08e”,“id”:“1735”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”]}],[{“groupIndex”:“0”,“itemIndex”:“0”,“contractAddress”:“0x3cb9c3f0ad5ac856f277427dfcc9f3757f9bb08e”,“id”:“908”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”]}]] | 2023-04-23T23:46:35.000Z | 0x02a74b5d355606c5f2f36bf18ded22468189f0bcedb17491325fd7d6ed68fcb1 | [“1”,“1”,“1”,“1”] | [“0xe69792d4f95a8a2b305c70ab053e825122e619d7”,“0xe69792d4f95a8a2b305c70ab053e825122e619d7”,“0xe69792d4f95a8a2b305c70ab053e825122e619d7”,“0xe69792d4f95a8a2b305c70ab053e825122e619d7”] | |
| 429646 | 6380000000000000 | true | 302741 | 0x42b54fee | [“1073002736”,“1073002736”] | 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | 17092506 | 0x4d89d373a7ec36cec559d81c3820fb22c460053f | [[{“groupIndex”:“0”,“itemIndex”:“0”,“contractAddress”:“0xd375749b73e014485c689dec691100242db8e5eb”,“id”:“537”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”]}],[{“groupIndex”:“0”,“itemIndex”:“0”,“contractAddress”:“0xd375749b73e014485c689dec691100242db8e5eb”,“id”:“605”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”]}]] | 2023-04-21T04:50:23.000Z | 0x6ff72a067e57346f5f7a48ff9fcc95767b16d17ba9dc49428017b8955cc9476f | [“1”,“1”] | [“0xd375749b73e014485c689dec691100242db8e5eb”,“0xd375749b73e014485c689dec691100242db8e5eb”] |
Example Query
Example Query
Query with partition filter
ERC721BurnRedeem_burnRedeem2_function
Function calls to Manifold’s ERC721 burn-to-redeem contract on Ethereum, where users burn specified NFTs to receive new tokens. Captures burn transactions with token IDs, merkle proofs for eligibility verification, and redemption counts for analyzing burn mechanics campaigns.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. |
trace_address | STRING | Hierarchical 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. |
status | BOOL | Transaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution. |
from_address | STRING | Address that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string. |
to_address | STRING | Address receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string. |
value | FLOAT64 | Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC). |
gas_used | INT64 | Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used. |
gas | INT64 | Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed. |
signature | STRING | Function selector identifying which contract function was called. 10-character hex string including 0x prefix. |
in_creatorContractAddress | STRING | Contract address of the creator contract in the Manifold system. Hex-encoded, 0x-prefixed, 42-character string. |
in_index | STRING | Liquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27). |
in_burnRedeemCount | STRING | Number of tokens to redeem in the burn-redeem transaction. Numeric string representation of the quantity being redeemed. |
in_burnTokens | ARRAY<STRUCT<groupIndex STRING, itemIndex STRING, contractAddress STRING, id STRING, merkleProof ARRAY<STRING>>> | Array of token specifications to be burned in the redeem transaction. Each element contains groupIndex, itemIndex, contractAddress (hex-encoded, 0x-prefixed), token id, and optional merkleProof array for verification. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_index | signature | to_address | block_number | from_address | in_burnTokens | trace_address | block_timestamp | transaction_hash | in_burnRedeemCount | in_creatorContractAddress |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 254148 | 690000000000000 | false | 36193 | 0xc9dad696 | 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | 16900915 | 0x465a6e4a9a066539e8508b6fdaa24ca52f8ad2de | [] | 2023-03-25T00:27:47.000Z | 0xf9947db6ba78151926fc1a23b44c5de92f5688d31454424def0840684dcf8596 | ||||
| 249470 | 690000000000000 | true | 176592 | 1066602736 | 0xc9dad696 | 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | 16905216 | 0x75872c384475117e8c19ba27e1fbe8473af9ebc5 | [{“id”:“6221”,“itemIndex”:“0”,“groupIndex”:“0”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”],“contractAddress”:“0x9efaaffef9ea6ac21ba19396fb147a4c8ed1114f”}] | 2023-03-25T14:57:35.000Z | 0x4e7f3f654590726c200bfb776e49a51264affbc1bc84029d5acace2200b1c6b1 | 1 | 0x9efaaffef9ea6ac21ba19396fb147a4c8ed1114f | |
| 249470 | 690000000000000 | true | 176592 | 1066602736 | 0xc9dad696 | 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | 16905264 | 0x31f273902d5410fc44d57430e3402472a5a78d28 | [{“id”:“5210”,“itemIndex”:“0”,“groupIndex”:“0”,“merkleProof”:[“0x0000000000000000000000000000000000000000000000000000000000000000”],“contractAddress”:“0x9efaaffef9ea6ac21ba19396fb147a4c8ed1114f”}] | 2023-03-25T15:07:23.000Z | 0xe101d6eacfc36114f09478ddfc02bcf0e1b94dcd50157cbb3561186d1f86125f | 1 | 0x9efaaffef9ea6ac21ba19396fb147a4c8ed1114f |
Example Query
Example Query
Query with partition filter
ERC721BurnRedeem_BurnRedeemMint_event
Mint events from Manifold’s ERC721 burn-to-redeem contract on Ethereum, tracking NFTs minted through burning existing tokens. Links redeemed token IDs to their creator contracts for analyzing burn-and-mint redemption campaigns.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_creatorContract | STRING | Contract address of the NFT creator contract associated with the claim or redeem operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_index | STRING | Liquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27). |
in_tokenId | STRING | Unique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID. |
Sample Data
Sample Data
| address | removed | in_index | log_index | in_tokenId | block_number | block_timestamp | transaction_hash | in_creatorContract |
|---|---|---|---|---|---|---|---|---|
| 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | false | 539613424 | 168 | 2 | 16693048 | 2023-02-23T19:02:23.000Z | 0xde7f7c9b106f9bf4856f5676b81e5fabee56307bf3ec87e2d1537fd5d3f5272e | 0xadad1e9037f10616774a95b4521401f6f592f820 |
| 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | false | 539613424 | 258 | 3 | 16693050 | 2023-02-23T19:02:47.000Z | 0x2db11569d1623e190852fd5b247b8980f0043abd7182527e0a8075691fb383ff | 0xadad1e9037f10616774a95b4521401f6f592f820 |
| 0x23a553a150ab2f5f88c01c0449b672d9f7efeb36 | false | 539613424 | 198 | 4 | 16693104 | 2023-02-23T19:13:35.000Z | 0xeff30723d360c145a7907f815377ae86017d9a7a87f2796a68fa8726cfb617b3 | 0xadad1e9037f10616774a95b4521401f6f592f820 |
Example Query
Example Query
Query with partition filter
ERC721LazyPayableClaim_ClaimMint_event
ERC-721 (Non-Fungible Token) lazy claim mint events emitted by Manifold creator claim contracts when tokens are minted through a payable claim campaign. Links claim instances to creator contracts for tracking NFT distribution through lazy minting mechanisms.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_creatorContract | STRING | Contract address of the NFT creator contract associated with the claim or redeem operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_claimIndex | STRING | Identifier for the claim configuration on the creator contract. Numeric string representing the claim instance being executed or initialized. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_claimIndex | block_timestamp | transaction_hash | in_creatorContract |
|---|---|---|---|---|---|---|---|
| 0x5ebfd58c5ead1025755f7490e510ccf2c0b4a444 | false | 551 | 16546021 | 1 | 2023-02-03T04:58:35.000Z | 0x1362c8be27048d55e15fa7d3dc55314eb5d5399126f49106e61543abf896bae1 | 0xda8cb7bd8207e50f944eef83412dc218cbb1b051 |
| 0x5ebfd58c5ead1025755f7490e510ccf2c0b4a444 | false | 135 | 16794874 | 1 | 2023-03-10T02:45:59.000Z | 0x2aa51c422fa215c8fdf86413935f6962d892e35b67256af4bbcbfc32f38cf7e6 | 0xd225c97910df10ea9a54a166997a86228f70f8dc |
| 0x5ebfd58c5ead1025755f7490e510ccf2c0b4a444 | false | 159 | 16794663 | 1 | 2023-03-10T02:02:59.000Z | 0xb20fe830252edc9ed322bcfd17cc8184da2497bdb63365184d9f6a83dc5f2aae | 0xd225c97910df10ea9a54a166997a86228f70f8dc |
Example Query
Example Query
Query with partition filter
ERC721LazyPayableClaim_ClaimMintBatch_event
ERC-721 batch mint claim events emitted by Manifold’s lazy payable claim contracts when multiple NFTs are minted in a single transaction through a claim campaign. Links creator contract addresses to claim instances and tracks quantity minted per batch operation.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_creatorContract | STRING | Contract address of the NFT creator contract associated with the claim or redeem operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_claimIndex | STRING | Identifier for the claim configuration on the creator contract. Numeric string representing the claim instance being executed or initialized. |
in_mintCount | STRING | Number of tokens minted in the batch operation. Numeric string representation of the mint quantity. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_mintCount | in_claimIndex | block_timestamp | transaction_hash | in_creatorContract |
|---|---|---|---|---|---|---|---|---|
| 0x5ebfd58c5ead1025755f7490e510ccf2c0b4a444 | false | 461 | 15590245 | 2 | 1 | 2022-09-22T17:03:11.000Z | 0x341ecb94a9757afa72a4922345b540dedd176acf8a1981b389f2e74cf3496f0c | 0x28d788aea51f51e4fc25780d45c2e9f2664ae9ee |
| 0x5ebfd58c5ead1025755f7490e510ccf2c0b4a444 | false | 690 | 15588747 | 2 | 1 | 2022-09-22T12:01:23.000Z | 0xe7bc17adc5a2d692bd9c28dc17ecfa74453bea39883da8bed8297aadc3db98ca | 0x28d788aea51f51e4fc25780d45c2e9f2664ae9ee |
| 0x5ebfd58c5ead1025755f7490e510ccf2c0b4a444 | false | 8 | 15585567 | 2 | 1 | 2022-09-22T01:20:11.000Z | 0x3c80ae551cc1897e097fd86ee3d1ecf9a3826eb41d1bee8251ff2dc009211c79 | 0x09f2cae06ecd3d4e88437d1a11edfb62e90d497e |
Example Query
Example Query
Query with partition filter
Marketplace_BidEvent_event
Bid placement events from Manifold’s NFT marketplace on Ethereum, tracking bidder addresses, listing IDs, and bid amounts in wei. Used for analyzing bidding behavior, price discovery, and marketplace liquidity across NFT auctions.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_listingId | STRING | Unique identifier for the listing on the marketplace. Numeric string representation. |
in_referrer | STRING | Address that referred the user to the protocol or facilitated the transaction. Hex-encoded, 0x-prefixed, 42-character string. |
in_bidder | STRING | Address of the account that placed the bid in the auction or marketplace. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
| address | removed | in_amount | in_bidder | log_index | in_referrer | block_number | in_listingId | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 55000000000000000000 | 0x665654f2d2a151be2d0f8e3697e6ce780f732af2 | 88 | 0x0000000000000000000000000000000000000000 | 13936456 | 28 | 2022-01-04T03:06:03.000Z | 0xcd5c522ca564d9ba65e93ff06a30bd6da0b147c377ecabd647d83cb164ff5a35 |
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 3000000000000000000 | 0x677420671845f3bb7a2f59a0cc530198e1f596e9 | 181 | 0x0000000000000000000000000000000000000000 | 14277082 | 64 | 2022-02-25T19:14:05.000Z | 0x814cb53c51b468dee8b636ebbe6602fb11eb8cb65c893023ae85baeb63b6a7aa |
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 150000000000000000 | 0xb0ae52c92fa64cca59be4d3ace86b61ac4c37c9f | 208 | 0x0000000000000000000000000000000000000000 | 14277057 | 64 | 2022-02-25T19:08:09.000Z | 0xcc745114c97c1bf6829404eaca83063035760ba16476858cc137585984783075 |
Example Query
Example Query
Query with partition filter
Marketplace_CreateListing_event
NFT marketplace listing creation events from Manifold’s Ethereum marketplace contract, capturing auction and fixed-price sale parameters including starting prices, duration, quantity available, and minimum bid increments in basis points (BPS). Used for tracking listing activity, pricing strategies, and marketplace inventory across NFT collections.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_listingId | STRING | Unique identifier for the listing on the marketplace. Numeric string representation. |
in_listingType | STRING | Categorical identifier for the listing’s sale mechanism on Manifold’s marketplace contract. Value ‘1’ typically indicates auction listings while ‘2’ indicates fixed-price or individual sale listings. |
in_totalAvailable | STRING | Total quantity of items available for sale in this marketplace listing. Can be 1 for single-edition NFTs or higher for editions with multiple available copies. |
in_totalPerSale | STRING | Number of items/tokens that can be purchased in a single transaction for this listing. Typically set to 1 for individual NFT sales or higher values for batch purchases. |
in_startTime | STRING | Start timestamp for the listing, auction, program, or vesting period. Unix timestamp in seconds. |
in_endTime | STRING | End timestamp for the listing, auction, program, or vesting period. Unix timestamp in seconds. |
in_initialAmount | STRING | Starting price or minimum bid amount for the listing, denominated in wei (1 ETH = 10^18 wei) or the specified ERC20 token. Can be zero for listings that accept any initial offer. |
in_extensionInterval | STRING | Time in seconds that the listing’s end time is extended when a bid is placed near the auction close. Typically 600 (10 minutes) or 900 (15 minutes) for auctions, zero for fixed-price sales. |
in_minIncrementBPS | STRING | Minimum bid increment for auctions expressed in basis points (BPS), where 1000 = 10% increase required. A value of 0 indicates no minimum increment requirement for the listing. |
in_erc20 | STRING | Contract address of the ERC20 token being redeemed or registered. Hex-encoded, 0x-prefixed, 42-character string or zero address for native tokens. |
in_identityVerifier | STRING | Contract address of an optional identity verification service for buyer eligibility. Zero address (0x00…00) indicates no verification requirement. |
Sample Data
Sample Data
| address | removed | in_erc20 | log_index | in_endTime | block_number | in_listingId | in_startTime | in_listingType | block_timestamp | in_totalPerSale | in_initialAmount | transaction_hash | in_totalAvailable | in_minIncrementBPS | in_identityVerifier | in_extensionInterval |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 0x0000000000000000000000000000000000000000 | 321 | 172800 | 14741079 | 160 | 0 | 1 | 2022-05-09T07:17:31.000Z | 1 | 1000000000000000000 | 0x2d18415d58f3a4b5573e6167d400bc3fc13f305edca0852dda6f63961390d5e3 | 1 | 1000 | 0x0000000000000000000000000000000000000000 | 900 |
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 0x0000000000000000000000000000000000000000 | 282 | 172800 | 14741026 | 159 | 0 | 1 | 2022-05-09T07:05:16.000Z | 1 | 1000000000000000000 | 0x78a5dec86f9177e6c820b972486512f6c41a272b11ee02ac4ece133cabd1e829 | 1 | 1000 | 0x0000000000000000000000000000000000000000 | 900 |
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 0x0000000000000000000000000000000000000000 | 428 | 86400 | 13761738 | 16 | 0 | 1 | 2021-12-08T00:43:26.000Z | 1 | 2000000000000000000 | 0x8a472d2eacee21c65bb00f3517133e6b6fedb931e8bddc927079775c8dbb6d05 | 1 | 1000 | 0x0000000000000000000000000000000000000000 | 600 |
Example Query
Example Query
Query with partition filter
Marketplace_PurchaseEvent_event
Purchase completion events from Manifold’s NFT marketplace on Ethereum. Tracks buyer addresses, listing IDs, purchase amounts in wei, and referrer data for analyzing sales activity and marketplace 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_listingId | STRING | Unique identifier for the listing on the marketplace. Numeric string representation. |
in_referrer | STRING | Address that referred the user to the protocol or facilitated the transaction. Hex-encoded, 0x-prefixed, 42-character string. |
in_buyer | STRING | Address of the account purchasing tokens or assets in the transaction. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
| address | removed | in_buyer | in_amount | log_index | in_referrer | block_number | in_listingId | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 0x830215aeaa37a2d7ccd0921a59cea60a71b69982 | 110000000000000000 | 402 | 0x0000000000000000000000000000000000000000 | 15010410 | 187 | 2022-06-23T00:54:13.000Z | 0x005f102dff9e6e8b7fd4e84f8a18f41b8a4544db7653abd4794936c62bf95500 |
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 0x2a4afb56291a55c0d80088fa75dec61e923ee3f1 | 110000000000000000 | 200 | 0x0000000000000000000000000000000000000000 | 15010553 | 187 | 2022-06-23T01:34:35.000Z | 0x760171adae431e7b131f45b1f7a47a9e4a2003c0b1ec0ac541eeed00f24e4b22 |
| 0x7ef865963d3a005670b8f8df6aed23e456fa75e0 | false | 0x080dc9eaec08f1c46e21338fbe7bef605e83fd76 | 110000000000000000 | 468 | 0x0000000000000000000000000000000000000000 | 15011263 | 187 | 2022-06-23T04:51:51.000Z | 0xf3cb30ce9571fef29d5fa9f50ec32d8b91312a166d83f85b58fb9f3c579cdc1c |
Example Query
Example Query
Query with partition filter