Tables
ExponentialCurve_getBuyInfo_function
Bonding curve pricing calculations for Sudoswap V2 NFT buy orders using exponential price adjustment. Returns computed prices, fees, and updated curve parameters for analyzing automated market maker pricing dynamics on Ethereum.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_spotPrice | STRING | Current spot price of the asset or position. String-encoded integer value representing the price in the smallest unit of the relevant token or currency. |
in_delta | STRING | Change in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction. |
in_numItems | STRING | Number of items or NFTs being traded in the transaction. String-encoded integer value. |
in_feeMultiplier | STRING | Multiplier applied to calculate trading fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the fee rate in wei units (e.g., ‘50000000000000000’ equals 0.05 or 5%). |
in_protocolFeeMultiplier | STRING | Multiplier applied to calculate protocol fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the protocol fee rate in wei units. |
out_error | INT64 | Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation. |
out_newSpotPrice | STRING | Updated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency. |
out_newDelta | STRING | Updated delta parameter after the trade execution. String-encoded integer value. |
out_inputValue | STRING | Total input value required for the buy operation. String-encoded integer representing the amount in the smallest unit of the relevant token or currency. |
out_tradeFee | STRING | Trading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
out_protocolFee | STRING | Protocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_delta | out_error | signature | to_address | in_numItems | block_number | from_address | in_spotPrice | out_newDelta | out_tradeFee | trace_address | out_inputValue | block_timestamp | out_protocolFee | in_feeMultiplier | out_newSpotPrice | transaction_hash | in_protocolFeeMultiplier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 201303 | true | 2422 | 1150000000000000000 | 0 | 0x7ca542ac | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 1 | 20038553 | 0xfec8eb771bbc38f8611fac38eb56f953a7ae9914 | 53644549763033181 | 1150000000000000000 | 3084561611374408 | 0,2 | 65084250000000008 | 2024-06-07T07:47:35.000Z | 308456161137441 | 50000000000000000 | 61691232227488159 | 0xc3c7fbe55841f0159168a5a6c849a37eb0e43718d048eedcb553fa60a7fe5493 | 5000000000000000 | |
| 143164 | true | 2422 | 1010000000000000000 | 0 | 0x7ca542ac | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 1 | 20401763 | 0x765cf8ac8e89177145f9f29f60a594fda99d818f | 9851731441801 | 1010000000000000000 | 0 | 0,2 | 10000000000002 | 2024-07-28T01:28:35.000Z | 49751243782 | 0 | 9950248756220 | 0x8f326b23ea5e5924f3818336e3291b119a5cf31c61ed08e7c78bd29057beb328 | 5000000000000000 | |
| 143164 | true | 2422 | 1010000000000000000 | 0 | 0x7ca542ac | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 1 | 20401766 | 0xf8f9c73cb80341c5872bc9cb2a355f117b4522d7 | 9851731441801 | 1010000000000000000 | 0 | 0,2 | 10000000000002 | 2024-07-28T01:29:11.000Z | 49751243782 | 0 | 9950248756220 | 0xccc40a5c8bd6f34e2ec0189c2055fadd38707883bb9511a812a63ee025cdb002 | 5000000000000000 |
Example Query
Example Query
Query with partition filter
ExponentialCurve_getSellInfo_function
Exponential bonding curve sell pricing calculations from Sudoswap V2 NFT automated market maker (AMM) on Ethereum. Records input parameters (spot price, delta, fee multipliers) and computed outputs (trade fees, protocol fees, new spot price) for NFT sell orders using exponential price curves.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_spotPrice | STRING | Current spot price of the asset or position. String-encoded integer value representing the price in the smallest unit of the relevant token or currency. |
in_delta | STRING | Change in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction. |
in_numItems | STRING | Number of items or NFTs being traded in the transaction. String-encoded integer value. |
in_feeMultiplier | STRING | Multiplier applied to calculate trading fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the fee rate in wei units (e.g., ‘50000000000000000’ equals 0.05 or 5%). |
in_protocolFeeMultiplier | STRING | Multiplier applied to calculate protocol fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the protocol fee rate in wei units. |
out_error | INT64 | Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation. |
out_newSpotPrice | STRING | Updated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency. |
out_newDelta | STRING | Updated delta parameter after the trade execution. String-encoded integer value. |
out_outputValue | STRING | Total output value from the trade after deducting fees. String-encoded integer representing the amount in the smallest unit of the relevant token or currency. |
out_tradeFee | STRING | Trading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
out_protocolFee | STRING | Protocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_delta | out_error | signature | to_address | in_numItems | block_number | from_address | in_spotPrice | out_newDelta | out_tradeFee | trace_address | block_timestamp | out_outputValue | out_protocolFee | in_feeMultiplier | out_newSpotPrice | transaction_hash | in_protocolFeeMultiplier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 135875 | true | 2294 | 1069000000000000000 | 0 | 0x097cc63d | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 1 | 19164290 | 0x452159cb99e411a0abd433fd64d9fa7a73a703f7 | 103644494834866017 | 1069000000000000000 | 0 | 2,0,2 | 2024-02-05T19:58:23.000Z | 103126272360691686 | 518222474174331 | 0 | 96954625664046788 | 0x130b379b010b91d8cf513a1939cd63d23dc21b30a9cb92595947d8e6abf276a4 | 5000000000000000 | |
| 100591 | true | 2294 | 1020000000000000000 | 0 | 0x097cc63d | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 1 | 19165215 | 0xcdb8f114d2fb28a4b85bb1ab6e09444006ef5385 | 600328277521190406 | 1020000000000000000 | 12006565550423809 | 2,0,2 | 2024-02-05T23:04:59.000Z | 585320070583160644 | 3001641387605953 | 20000000000000000 | 588557134824696476 | 0x940b398d22f779aa53cd4368c745338ba233c02f5720a8fccc897f762ab21f5d | 5000000000000000 | |
| 100591 | true | 2294 | 1020000000000000000 | 0 | 0x097cc63d | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 1 | 19163054 | 0xcdb8f114d2fb28a4b85bb1ab6e09444006ef5385 | 612334843071614215 | 1020000000000000000 | 12246696861432285 | 2,0,2 | 2024-02-05T15:47:35.000Z | 597026471994823858 | 3061674215358072 | 20000000000000000 | 600328277521190406 | 0x38ecb0acb3fffd150d5a48442c2dc82d9555b780a7ddf802d14e884fe8161a02 | 5000000000000000 |
Example Query
Example Query
Query with partition filter
GDACurve_getBuyInfo_function
Gradual Dutch Auction (GDA) curve pricing calculations for NFT buy operations on Sudoswap V2, showing spot price adjustments, fees, and input values. Used for analyzing bonding curve mechanics and pricing dynamics in automated market maker pools.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_spotPrice | STRING | Current spot price of the asset or position. String-encoded integer value representing the price in the smallest unit of the relevant token or currency. |
in_delta | STRING | Change in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction. |
in_numItems | STRING | Number of items or NFTs being traded in the transaction. String-encoded integer value. |
in_feeMultiplier | STRING | Multiplier applied to calculate trading fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the fee rate in wei units (e.g., ‘50000000000000000’ equals 0.05 or 5%). |
in_protocolFeeMultiplier | STRING | Multiplier applied to calculate protocol fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the protocol fee rate in wei units. |
out_error | INT64 | Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation. |
out_newSpotPrice | STRING | Updated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency. |
out_newDelta | STRING | Updated delta parameter after the trade execution. String-encoded integer value. |
out_inputValue | STRING | Total input value required for the buy operation. String-encoded integer representing the amount in the smallest unit of the relevant token or currency. |
out_tradeFee | STRING | Trading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
out_protocolFee | STRING | Protocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_delta | out_error | signature | to_address | in_numItems | block_number | from_address | in_spotPrice | out_newDelta | out_tradeFee | trace_address | out_inputValue | block_timestamp | out_protocolFee | in_feeMultiplier | out_newSpotPrice | transaction_hash | in_protocolFeeMultiplier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 179996 | true | 7858 | 464227514732017606344962966151886619 | 0 | 0x7ca542ac | 0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b67 | 1 | 18802797 | 0xe1f0ccd7b670c55d97c9f978f7a881fc1002660d | 226444406212648559 | 464227514732017606344962966151912851 | 0 | 2,0,2 | 184387804041362067 | 2023-12-17T02:31:47.000Z | 917352258912249 | 0 | 275205677673674729 | 0x1aafadce9544c223bed0ba3dd7fa15d289df001d50eee7cdc71816f351d38884 | 5000000000000000 | |
| 198496 | true | 7844 | 464227514732017606344962966151912851 | 0 | 0x7ca542ac | 0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b67 | 1 | 18807557 | 0xe1f0ccd7b670c55d97c9f978f7a881fc1002660d | 275205677673674729 | 464227514732017606344962966151970691 | 0 | 2,0,2 | 173900921258773994 | 2023-12-17T18:35:47.000Z | 865178712730218 | 0 | 259553613819065664 | 0xd17f6b7201485c071709321c5ca3e2f087e0bb092937cd033bdc72b806177483 | 5000000000000000 | |
| 198513 | true | 7802 | 464227514732017606344962966148259979 | 0 | 0x7ca542ac | 0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b67 | 1 | 18514727 | 0xe1f0ccd7b670c55d97c9f978f7a881fc1002660d | 5257438687692018277 | 464227514732017606344962966148427895 | 0 | 2,0,2 | 1373727486641670952 | 2023-11-06T18:29:11.000Z | 6834465107670004 | 0 | 2050339532301001422 | 0x1ab39f98d323e64fd8d513fdcffdecfddd0405a9dc71f9b3f095365f5dc22ecb | 5000000000000000 |
Example Query
Example Query
Query with partition filter
GDACurve_getSellInfo_function
Gradual Dutch Auction (GDA) curve pricing calculations for sell-side liquidity on Sudoswap V2 NFT AMM pools. Records bonding curve outputs including spot price updates, protocol fees, and output values for NFT sales on Ethereum.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_spotPrice | STRING | Current spot price of the asset or position. String-encoded integer value representing the price in the smallest unit of the relevant token or currency. |
in_delta | STRING | Change in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction. |
in_numItems | STRING | Number of items or NFTs being traded in the transaction. String-encoded integer value. |
in_feeMultiplier | STRING | Multiplier applied to calculate trading fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the fee rate in wei units (e.g., ‘50000000000000000’ equals 0.05 or 5%). |
in_protocolFeeMultiplier | STRING | Multiplier applied to calculate protocol fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the protocol fee rate in wei units. |
out_error | INT64 | Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation. |
out_newSpotPrice | STRING | Updated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency. |
out_newDelta | STRING | Updated delta parameter after the trade execution. String-encoded integer value. |
out_outputValue | STRING | Total output value from the trade after deducting fees. String-encoded integer representing the amount in the smallest unit of the relevant token or currency. |
out_tradeFee | STRING | Trading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
out_protocolFee | STRING | Protocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_delta | out_error | signature | to_address | in_numItems | block_number | from_address | in_spotPrice | out_newDelta | out_tradeFee | trace_address | block_timestamp | out_outputValue | out_protocolFee | in_feeMultiplier | out_newSpotPrice | transaction_hash | in_protocolFeeMultiplier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 145668 | true | 8263 | 340433510803479578283374866037360739 | 0 | 0x097cc63d | 0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b67 | 1 | 17563650 | 0x757bc546f02c4ac8ce69bebdead32ae532291cb5 | 11428571428571429 | 340433510803479578283374866037573335 | 0 | 2,0,2 | 2023-06-26T12:38:47.000Z | 46402969658872147 | 233180752054633 | 0 | 42396500373569806 | 0x6bd12d4004a08b39616e14deeeb14bdf6468a1d0eb2e224d3bb041b3e0cabad7 | 5000000000000000 | |
| 168678 | true | 8263 | 324959260312412323568394994064385487 | 0 | 0x097cc63d | 0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b67 | 1 | 19490660 | 0xfe9276978bcd98e4b0703b01ff9c86e4b402b097 | 1291511035136558970 | 324959260312412323568394994064396491 | 0 | 2,0,2 | 2024-03-22T14:08:11.000Z | 1335008012894220976 | 6708582979367944 | 0 | 1277825329403418033 | 0x8c1bf1af294481bb49e8d9d613570f1d6bba37a16c7a5487ae0ccd62a77e3795 | 5000000000000000 | |
| 168647 | true | 8347 | 324959260312412323568394994064348659 | 0 | 0x097cc63d | 0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b67 | 1 | 19488358 | 0xfe9276978bcd98e4b0703b01ff9c86e4b402b097 | 1253271189253316926 | 324959260312412323568394994064368615 | 0 | 2,0,2 | 2024-03-22T06:23:35.000Z | 1336302896446346273 | 6715089931891187 | 0 | 1279064748931654734 | 0xd7eb6a5480108cf69f60dc38dd27a4763434ed6193d2ae7832410e81581351e2 | 5000000000000000 |
Example Query
Example Query
Query with partition filter
LinearCurve_getBuyInfo_function
Linear bonding curve pricing calculations for NFT buy orders on Sudoswap v2, showing spot price, delta adjustments, and fee breakdowns. Used for analyzing AMM pricing dynamics and protocol fee collection across NFT liquidity pools.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_spotPrice | STRING | Current spot price of the asset or position. String-encoded integer value representing the price in the smallest unit of the relevant token or currency. |
in_delta | STRING | Change in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction. |
in_numItems | STRING | Number of items or NFTs being traded in the transaction. String-encoded integer value. |
in_feeMultiplier | STRING | Multiplier applied to calculate trading fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the fee rate in wei units (e.g., ‘50000000000000000’ equals 0.05 or 5%). |
in_protocolFeeMultiplier | STRING | Multiplier applied to calculate protocol fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the protocol fee rate in wei units. |
out_error | INT64 | Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation. |
out_newSpotPrice | STRING | Updated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency. |
out_newDelta | STRING | Updated delta parameter after the trade execution. String-encoded integer value. |
out_inputValue | STRING | Total input value required for the buy operation. String-encoded integer representing the amount in the smallest unit of the relevant token or currency. |
out_tradeFee | STRING | Trading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
out_protocolFee | STRING | Protocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_delta | out_error | signature | to_address | in_numItems | block_number | from_address | in_spotPrice | out_newDelta | out_tradeFee | trace_address | out_inputValue | block_timestamp | out_protocolFee | in_feeMultiplier | out_newSpotPrice | transaction_hash | in_protocolFeeMultiplier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 75970 | true | 2132 | 0 | 0 | 0x7ca542ac | 0xe5d78fec1a7f42d2f3620238c498f088a866fdc5 | 1 | 18003632 | 0x0f5089c5af4017d866cec9ad12a46594f991718e | 36548656716 | 0 | 913716418 | 0,2 | 37645116418 | 2023-08-27T04:31:11.000Z | 182743284 | 25000000000000000 | 36548656716 | 0x96e9b28dfbc46e40e709e2f70cc029b5b18ae2d22a0d95eb83e6e826f447026b | 5000000000000000 | |
| 94487 | true | 2132 | 0 | 0 | 0x7ca542ac | 0xe5d78fec1a7f42d2f3620238c498f088a866fdc5 | 1 | 18008302 | 0x0f5089c5af4017d866cec9ad12a46594f991718e | 36548656716 | 0 | 913716418 | 0,2 | 37645116418 | 2023-08-27T20:12:47.000Z | 182743284 | 25000000000000000 | 36548656716 | 0x67455c58bc9557d941035d57cff95fd2f3bf87bb7f4cc39884e9fee5e37913fb | 5000000000000000 | |
| 94487 | true | 2132 | 0 | 0 | 0x7ca542ac | 0xe5d78fec1a7f42d2f3620238c498f088a866fdc5 | 1 | 18007730 | 0x0f5089c5af4017d866cec9ad12a46594f991718e | 36548656716 | 0 | 913716418 | 0,2 | 37645116418 | 2023-08-27T18:17:35.000Z | 182743284 | 25000000000000000 | 36548656716 | 0x8bfb2526604bdf3b6b3a18f59f20aec7906b01ab3019ad308de0f6d9c0dba4bd | 5000000000000000 |
Example Query
Example Query
Query with partition filter
LinearCurve_getSellInfo_function
Linear bonding curve pricing calculations for NFT sells on Sudoswap v2 Ethereum, capturing spot prices, price deltas, output values, and protocol fees. Used to analyze pricing dynamics and fee structures for linear curve-based NFT liquidity pools.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_spotPrice | STRING | Current spot price of the asset or position. String-encoded integer value representing the price in the smallest unit of the relevant token or currency. |
in_delta | STRING | Change in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction. |
in_numItems | STRING | Number of items or NFTs being traded in the transaction. String-encoded integer value. |
in_feeMultiplier | STRING | Multiplier applied to calculate trading fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the fee rate in wei units (e.g., ‘50000000000000000’ equals 0.05 or 5%). |
in_protocolFeeMultiplier | STRING | Multiplier applied to calculate protocol fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the protocol fee rate in wei units. |
out_error | INT64 | Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation. |
out_newSpotPrice | STRING | Updated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency. |
out_newDelta | STRING | Updated delta parameter after the trade execution. String-encoded integer value. |
out_outputValue | STRING | Total output value from the trade after deducting fees. String-encoded integer representing the amount in the smallest unit of the relevant token or currency. |
out_tradeFee | STRING | Trading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
out_protocolFee | STRING | Protocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_delta | out_error | signature | to_address | in_numItems | block_number | from_address | in_spotPrice | out_newDelta | out_tradeFee | trace_address | block_timestamp | out_outputValue | out_protocolFee | in_feeMultiplier | out_newSpotPrice | transaction_hash | in_protocolFeeMultiplier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 113519 | true | 1998 | 12800000000000000 | 0 | 0x097cc63d | 0xe5d78fec1a7f42d2f3620238c498f088a866fdc5 | 1 | 18817250 | 0x5e2073cd00ef3d631f605d37b9a3968764284867 | 179200000000000000 | 12800000000000000 | 0 | 2,0,2 | 2023-12-19T03:10:59.000Z | 178304000000000000 | 896000000000000 | 0 | 166400000000000000 | 0x870699542824cba39276f16d863e32a206633ac722793b8fcd6b4077a289c848 | 5000000000000000 | |
| 113519 | true | 1998 | 12800000000000000 | 0 | 0x097cc63d | 0xe5d78fec1a7f42d2f3620238c498f088a866fdc5 | 1 | 18822276 | 0x5e2073cd00ef3d631f605d37b9a3968764284867 | 192000000000000000 | 12800000000000000 | 0 | 2,0,2 | 2023-12-19T20:09:23.000Z | 191040000000000000 | 960000000000000 | 0 | 179200000000000000 | 0x28177e83ab88678bdcd3ab947b4d463a01dac1b04c25050d2702c97ae184bdd1 | 5000000000000000 | |
| 305185 | true | 1998 | 0 | 0 | 0x097cc63d | 0xe5d78fec1a7f42d2f3620238c498f088a866fdc5 | 1 | 23246894 | 0x020b91b9a3a159fab00aae3950ea0460628b403e | 20000000000000000 | 0 | 0 | 4,0,2 | 2025-08-29T12:50:59.000Z | 19900000000000000 | 100000000000000 | 0 | 20000000000000000 | 0x81825b89e4f46a009b8f9cd46ccfc73e95ab84049ff20b06b793f686e1d9204e | 5000000000000000 |
Example Query
Example Query
Query with partition filter
LSSVMPairERC1155ETH_swapNFTsForToken_function
NFT-to-ETH swap transactions on Sudoswap v2 where users sell ERC-1155 NFTs to liquidity pools in exchange for ETH. Records include NFT quantities sold, ETH output amounts, and minimum expected proceeds for analyzing NFT trading activity and pricing.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_numNFTs | ARRAY<STRING> | Number of ERC-1155 NFTs being swapped for ETH tokens in this transaction. Values are string-encoded integers representing token quantities, which can range from single units to hundreds of thousands. |
in_minExpectedTokenOutput | STRING | Minimum amount of tokens the caller is willing to receive from swapping NFTs. String-encoded integer representing the slippage protection threshold in the token’s smallest unit (wei for ETH). |
in_tokenRecipient | STRING | Address designated to receive the tokens from the NFT swap operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_isRouter | BOOL | Indicates whether the function call originated through a router contract rather than directly from a user address. |
in_routerCaller | STRING | Address of the original caller when the swap was routed through a router contract. Hex-encoded, 0x-prefixed, 42-character string representing the end user’s address, or zero address when called directly. |
out_outputAmount | STRING | Amount of tokens received from swapping NFTs. String-encoded integer representing the token quantity in the smallest unit (wei for ETH). |
Sample Data
Sample Data
| gas | value | status | gas_used | signature | in_numNFTs | to_address | in_isRouter | block_number | from_address | trace_address | block_timestamp | in_routerCaller | out_outputAmount | transaction_hash | in_tokenRecipient | in_minExpectedTokenOutput |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 143163 | 0 | true | 123761 | 0xb1d3f1c1 | [“1”] | 0xdef2729e583defa7d4b4ea20b7cc07a8be92d312 | true | 19152011 | 0x090c236b62317db226e6ae6cd4c0fd25b7028b65 | 2 | 2024-02-04T02:32:59.000Z | 0x6ffce76355025452bbb8b300e75bbeae3f312fd0 | 1348255687500000 | 0xf7cd002f3c32435c94d84fd18dd213921403d4f7881cde822bb8c596b80e4507 | 0x6ffce76355025452bbb8b300e75bbeae3f312fd0 | 1348255687500000 |
| 165961 | 0 | true | 144160 | 0xb1d3f1c1 | [“1”] | 0x9e15b7ba8ff32724817006a57b968025a8738b75 | true | 19151859 | 0x090c236b62317db226e6ae6cd4c0fd25b7028b65 | 2 | 2024-02-04T02:02:11.000Z | 0xac3b886fa5296f0c641151589f2b1fbd0b197fa7 | 1930348258706468 | 0x1e29d675c061e8de0fa4284d674c571f076e4f35940b7e552e418d3b3deca732 | 0xac3b886fa5296f0c641151589f2b1fbd0b197fa7 | 1930348258706468 |
| 116727 | 0 | true | 100095 | 0xb1d3f1c1 | [“500000”] | 0x331bd0d4703a262c05a654ee3d2772ffe1396b75 | true | 18551878 | 0x090c236b62317db226e6ae6cd4c0fd25b7028b65 | 2 | 2023-11-11T23:10:23.000Z | 0xdd7267db6bad68e09f3a7288965949c44237ebe4 | 139904493923633171 | 0xd349979f0a5dd2389e0404897478475a8425698219199623060fb92d283a6301 | 0xdd7267db6bad68e09f3a7288965949c44237ebe4 | 139904493923633171 |
Example Query
Example Query
Query with partition filter
LSSVMPairERC1155ETH_swapTokenForSpecificNFTs_function
NFT purchase transactions from Sudoswap v2 ERC1155-ETH liquidity pools on Ethereum, recording buyers swapping ETH for specific NFTs with maximum price limits. Used for analyzing ERC1155 NFT trading activity, pricing slippage, and buyer behavior across Sudoswap AMM pools.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_numNFTs | ARRAY<STRING> | Number of ERC-1155 NFTs being purchased from the liquidity pool in this swap transaction. Always appears as an array containing a single numeric string value in the samples. |
in_maxExpectedTokenInput | STRING | Maximum amount of tokens the buyer is willing to spend for the NFT swap. Numeric string representing the token quantity in its smallest denomination. |
in_nftRecipient | STRING | Address designated to receive the NFTs from the swap operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_isRouter | BOOL | Indicates whether the function call originated through a router contract rather than directly from a user address. |
in_routerCaller | STRING | Address of the original caller when the swap was routed through a router contract. Hex-encoded, 0x-prefixed, 42-character string representing the end user’s address, or zero address when called directly. |
out_anon0 | STRING | Actual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination. |
Sample Data
Sample Data
| gas | value | status | gas_used | out_anon0 | signature | in_numNFTs | to_address | in_isRouter | block_number | from_address | trace_address | block_timestamp | in_nftRecipient | in_routerCaller | transaction_hash | in_maxExpectedTokenInput |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 221211 | 1695775625000000 | true | 136775 | 1695775625000000 | 0x6d8b99f7 | [“1”] | 0xc6ce31decc275593c37934032d412534e3f7db09 | false | 19622108 | 0xf007af3748ad93b4f045306a3b09e07f0191929a | 2024-04-10T01:59:59.000Z | 0xf007af3748ad93b4f045306a3b09e07f0191929a | 0xf007af3748ad93b4f045306a3b09e07f0191929a | 0x0ba87a71f741200e472b2a2b01bfcdbf4b10acebb5256506a184e9147ec67193 | 1695775625000000 | |
| 160572 | 10302000000000004 | true | 140754 | 10302000000000005 | 0x6d8b99f7 | [“1”] | 0x0c3224fff2b46f37ece427a6b0c198048ced4d23 | false | 18897417 | 0xc549a3def0d08186fb1a136f347b79d8ac3cee44 | 2023-12-30T09:21:59.000Z | 0xc549a3def0d08186fb1a136f347b79d8ac3cee44 | 0xc549a3def0d08186fb1a136f347b79d8ac3cee44 | 0x7acd91560f117b6eabd3f1c50cd7d8a5e66a49e5317b742c576fd4a15f268a58 | 10302000000000005 | |
| 178571 | 2514326036696873 | true | 156862 | 2514326036696873 | 0x6d8b99f7 | [“1”] | 0x772ed8e69d5e2a2dd0f1900f5cf0275205a5e86b | false | 17919500 | 0x9d4eb973cb2cfbdce578e09c48d747aa3ecd228e | 2023-08-15T09:58:47.000Z | 0x9d4eb973cb2cfbdce578e09c48d747aa3ecd228e | 0x9d4eb973cb2cfbdce578e09c48d747aa3ecd228e | 0xc63e6a6af9c1de0fb5f6c85ca8b8c68c8438e42a65a548e0ba89d0765f27644b | 2514326036696873 |
Example Query
Example Query
Query with partition filter
LSSVMPairERC721ETH_swapNFTsForToken2_function
NFT-to-ETH swap transactions on Sudoswap V2 liquidity pools where users sell ERC721 tokens for ETH. Records include NFT IDs sold, ETH amounts received, slippage protection parameters, and router routing details for analyzing NFT liquidity provision and pricing 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. |
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_nftIds | ARRAY<STRING> | Array of NFT token identifiers being swapped or transferred in the operation. String-encoded integers representing unique token IDs within the NFT collection. |
in_minExpectedTokenOutput | STRING | Minimum amount of tokens the caller is willing to receive from swapping NFTs. String-encoded integer representing the slippage protection threshold in the token’s smallest unit (wei for ETH). |
in_tokenRecipient | STRING | Address designated to receive the tokens from the NFT swap operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_isRouter | BOOL | Indicates whether the function call originated through a router contract rather than directly from a user address. |
in_routerCaller | STRING | Address of the original caller when the swap was routed through a router contract. Hex-encoded, 0x-prefixed, 42-character string representing the end user’s address, or zero address when called directly. |
out_outputAmount | STRING | Amount of tokens received from swapping NFTs. String-encoded integer representing the token quantity in the smallest unit (wei for ETH). |
Sample Data
Sample Data
| gas | value | status | gas_used | in_nftIds | signature | to_address | in_isRouter | block_number | from_address | trace_address | block_timestamp | in_routerCaller | out_outputAmount | transaction_hash | in_tokenRecipient | in_minExpectedTokenOutput |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 175717 | 0 | true | 100973 | [“8703”] | 0xb1d3f1c1 | 0xcdb8f114d2fb28a4b85bb1ab6e09444006ef5385 | true | 19880506 | 0x090c236b62317db226e6ae6cd4c0fd25b7028b65 | 2 | 2024-05-16T05:39:23.000Z | 0x3c02a8d11e3f7d530b7b494e124de680f64c516c | 1407549019607843193 | 0x483c0be59757b4e6f90a1bd93ffda5c4c623306836723137f395c6cf9dab4448 | 0x3c02a8d11e3f7d530b7b494e124de680f64c516c | 1407549019607843193 |
| 132363 | 0 | true | 100973 | [“1881”] | 0xb1d3f1c1 | 0xcdb8f114d2fb28a4b85bb1ab6e09444006ef5385 | true | 19883049 | 0x090c236b62317db226e6ae6cd4c0fd25b7028b65 | 2 | 2024-05-16T14:11:35.000Z | 0x917660a684d89f4713d2e22054fec8ea2e29c11a | 1393612890700834844 | 0x1f050178ebe0212a7f4c9fb63076256e5a8579f9128366871712f62505509791 | 0x917660a684d89f4713d2e22054fec8ea2e29c11a | 1393612890700834844 |
| 263523 | 0 | true | 157887 | [“6167”,“3694”] | 0xb1d3f1c1 | 0x452159cb99e411a0abd433fd64d9fa7a73a703f7 | true | 19880242 | 0x090c236b62317db226e6ae6cd4c0fd25b7028b65 | 2 | 2024-05-16T04:46:23.000Z | 0x87e3eee0049678eb31ec325f24963ec841d2abe6 | 76546927282309846 | 0x1ac3b88c49031abf97443b5ad7c6edcdda700f1c4b7b92322fa39adbb446d12a | 0x87e3eee0049678eb31ec325f24963ec841d2abe6 | 76546927282309846 |
Example Query
Example Query
Query with partition filter
LSSVMPairERC721ETH_swapTokenForSpecificNFTs_function
ETH-to-ERC721 NFT purchases on Sudoswap V2, capturing specific NFT buys with token ID, ETH amount paid, recipient address, and slippage protection parameters. Used for analyzing individual NFT acquisition prices and buyer behavior on the automated market maker.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_nftIds | ARRAY<STRING> | Array of NFT token identifiers being swapped or transferred in the operation. String-encoded integers representing unique token IDs within the NFT collection. |
in_maxExpectedTokenInput | STRING | Maximum amount of tokens the buyer is willing to spend for the NFT swap. Numeric string representing the token quantity in its smallest denomination. |
in_nftRecipient | STRING | Address designated to receive the NFTs from the swap operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_isRouter | BOOL | Indicates whether the function call originated through a router contract rather than directly from a user address. |
in_routerCaller | STRING | Address of the original caller when the swap was routed through a router contract. Hex-encoded, 0x-prefixed, 42-character string representing the end user’s address, or zero address when called directly. |
out_anon0 | STRING | Actual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_nftIds | out_anon0 | signature | to_address | in_isRouter | block_number | from_address | trace_address | block_timestamp | in_nftRecipient | in_routerCaller | transaction_hash | in_maxExpectedTokenInput |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 171008 | 12997512437820932 | true | 149886 | [“41075”] | 12997512437810933 | 0x6d8b99f7 | 0x1ec95e3eef31a86d1536df5af67677a0fc98e5a4 | false | 18449126 | 0x4503a14a521a7c4a89e73baf200d21cd3273de29 | 2023-10-28T13:54:35.000Z | 0x4503a14a521a7c4a89e73baf200d21cd3273de29 | 0x0000000000000000000000000000000000000000 | 0xfa1713bc0c190dc52f0223997ee549dc1850793fc9b6fbb2e91a91331d1dceb1 | 12997512437820933 | |
| 171008 | 12997512437820934 | true | 149886 | [“18997”] | 12997512437810934 | 0x6d8b99f7 | 0x1ec95e3eef31a86d1536df5af67677a0fc98e5a4 | false | 18446640 | 0x9729a03689d35caa386be217ff5828691e3ff7b6 | 2023-10-28T05:33:47.000Z | 0x9729a03689d35caa386be217ff5828691e3ff7b6 | 0x0000000000000000000000000000000000000000 | 0x6d7400941e62c67e648f58017dbebf2af682b6805de5897b1c2defd3815a335e | 12997512437820934 | |
| 170995 | 13647388059711480 | true | 149874 | [“37912”] | 13647388059701481 | 0x6d8b99f7 | 0x1ec95e3eef31a86d1536df5af67677a0fc98e5a4 | false | 18446656 | 0x67cdb2b891a9e8179bacd1009fbce3e3c4e27f86 | 2023-10-28T05:36:59.000Z | 0x67cdb2b891a9e8179bacd1009fbce3e3c4e27f86 | 0x0000000000000000000000000000000000000000 | 0x67a8fef7205b1b5f947b5eb0f4107d4dea4ef77daf25c1bef5740a7f522bd043 | 13647388059711481 |
Example Query
Example Query
Query with partition filter
LSSVMPairFactory_createPairERC1155ERC20_function
Liquidity pool creation events from Sudoswap V2 on Ethereum for ERC-1155 NFT to ERC-20 token pairs, capturing pool configuration parameters including bonding curve, pricing, and initial balances. Used for tracking NFT market maker pool deployments and liquidity provision strategies.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_params | STRUCT<token STRING, nft STRING, bondingCurve STRING, assetRecipient STRING, poolType INT64, delta STRING, fee STRING, spotPrice STRING, nftId STRING, initialNFTBalance STRING, initialTokenBalance STRING> | Additional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations. |
out_pair | STRING | Contract address of the created liquidity pair. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| gas | value | status | gas_used | out_pair | in_params | signature | to_address | block_number | from_address | trace_address | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 199681 | 0 | true | 150365 | 0x42df02d68ddfcdd1eebb61ef8a748d5df88d9107 | {“fee”:“0”,“nft”:“0x76be3b62873462d2142405439777e971754e8e77”,“delta”:“0”,“nftId”:“10751”,“token”:“0xb23d80f5fefcddaa212212f028021b41ded428cf”,“poolType”:1,“spotPrice”:“5000000000000000000”,“bondingCurve”:“0xe5d78fec1a7f42d2f3620238c498f088a866fdc5”,“assetRecipient”:“0x0000000000000000000000000000000000000000”,“initialNFTBalance”:“2”,“initialTokenBalance”:“0”} | 0xea3ec18c | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 17594799 | 0x0d1e616efcf506713fe49d1736c85fb27991d8b7 | 5 | 2023-06-30T21:36:35.000Z | 0x1d59da8b6676e08d88bcd3928bbb5e6980a83acdbea7a0605287ce0538f17a09 |
| 394423 | 0 | true | 157365 | 0xdb5da171771e0dec2f58f1513f87a62d4658be4c | {“fee”:“0”,“nft”:“0x76be3b62873462d2142405439777e971754e8e77”,“delta”:“0”,“nftId”:“10500”,“token”:“0xb23d80f5fefcddaa212212f028021b41ded428cf”,“poolType”:1,“spotPrice”:“5000000000000000000”,“bondingCurve”:“0xe5d78fec1a7f42d2f3620238c498f088a866fdc5”,“assetRecipient”:“0x0000000000000000000000000000000000000000”,“initialNFTBalance”:“2”,“initialTokenBalance”:“0”} | 0xea3ec18c | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 17594799 | 0x0d1e616efcf506713fe49d1736c85fb27991d8b7 | 2 | 2023-06-30T21:36:35.000Z | 0x1d59da8b6676e08d88bcd3928bbb5e6980a83acdbea7a0605287ce0538f17a09 |
| 361382 | 0 | true | 126312 | 0xf08c90b9e4f14cfdbef8a6c0ca0bba91f7c49685 | {“fee”:“0”,“nft”:“0x76be3b62873462d2142405439777e971754e8e77”,“delta”:“0”,“nftId”:“10755”,“token”:“0xb23d80f5fefcddaa212212f028021b41ded428cf”,“poolType”:1,“spotPrice”:“5000000000000000000”,“bondingCurve”:“0xe5d78fec1a7f42d2f3620238c498f088a866fdc5”,“assetRecipient”:“0x0000000000000000000000000000000000000000”,“initialNFTBalance”:“0”,“initialTokenBalance”:“0”} | 0xea3ec18c | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 17594503 | 0x5d7ac2208599e4bd78ad749693b51e6a15b80a68 | 0 | 2023-06-30T20:36:59.000Z | 0x7d4001069c47ebbdaee313885bffeea50a2dd1af8d0135336637692854b2802f |
Example Query
Example Query
Query with partition filter
LSSVMPairFactory_createPairERC1155ETH_function
Liquidity pool creation calls for ERC-1155 NFT-to-ETH pairs on Sudoswap V2, capturing bonding curve configuration, initial pricing, pool type, and NFT collection details for tracking automated market maker (AMM) pool deployments.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__nft | STRING | Contract address of the NFT collection. Hex-encoded, 0x-prefixed, 42-character string. |
in__bondingCurve | STRING | Contract address of the bonding curve implementation used for pricing calculations. Hex-encoded, 0x-prefixed, 42-character string. |
in__assetRecipient | STRING | Address designated to receive assets (ETH or tokens) from trades executed against this liquidity pool. Commonly set to the pool creator’s address or zero address for protocol-controlled funds. |
in__poolType | INT64 | Pool type identifier for the liquidity pool: 1 for sell pools (NFT → ETH), 2 for buy pools (ETH → NFT). Determines the trading direction available in the newly created pair. |
in__delta | STRING | Delta parameter for the bonding curve pricing function. Numeric string representation of the price change rate or step size between consecutive NFT trades. |
in__fee | STRING | Fee amount charged for the transaction or operation. Numeric string representing the fee in the smallest denomination or basis points. |
in__spotPrice | STRING | Initial price point for the bonding curve pricing function. Numeric string representation in wei or smallest token denomination. |
in__nftId | STRING | Token ID of the ERC-1155 NFT being deposited into the newly created liquidity pair. Can be simple integers (1, 10974) or large numbers for semi-fungible tokens on platforms like OpenSea Shared Storefront. |
in__initialNFTBalance | STRING | Initial quantity of ERC-1155 tokens deposited into the newly created liquidity pool. Represents the pool’s starting inventory for trading. |
out_pair | STRING | Contract address of the created liquidity pair. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| gas | value | status | in__fee | in__nft | gas_used | out_pair | in__delta | in__nftId | signature | to_address | block_number | from_address | in__poolType | in__spotPrice | trace_address | block_timestamp | in__bondingCurve | transaction_hash | in__assetRecipient | in__initialNFTBalance |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 265137 | 61453156797910840 | true | 25000000000000000 | 0x78364cfd8e7081672a7380ed8a6c2491d5ef1204 | 215630 | 0xcff4e475f55436afb564cf0afe125bf09ea06e72 | 1010000000000000000 | 14547738920326760718039528032379450842254512367685401887725912040208833970589 | 0x8e0fabc5 | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 20493970 | 0x2029ba7ad196da403c6c42fa77dca798aec5ed90 | 2 | 985173144180090 | 2024-08-09T22:16:11.000Z | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 0xfae78a0d70eaf3dbe3081e7e079f184310386d23a8a17abba91159346b5f24b8 | 0x2029ba7ad196da403c6c42fa77dca798aec5ed90 | 411 | |
| 233955 | 0 | true | 0 | 0xbb9e37b92752d2008ce6bed87db0928866223609 | 182113 | 0x08659ee60cf50aa916f56c7875b5a05d08a978d2 | 1050000000000000000 | 1 | 0x8e0fabc5 | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 22984657 | 0x67d021f0cc144562ed1c1a378f9c26b1fee88206 | 1 | 947642738687514807 | 2025-07-23T21:50:35.000Z | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 0x94e605be13c972391d9f6926faa22cb15708cab89fc3d2a0bd51088b6ec93b49 | 0x0000000000000000000000000000000000000000 | 9 | |
| 319682 | 4550000000000000 | true | 25000000000000000 | 0x76be3b62873462d2142405439777e971754e8e77 | 208321 | 0xe28126a50dd70cc1b7a5f4e489c446138e1be4a3 | 1500000000000000000 | 10974 | 0x8e0fabc5 | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 18147642 | 0x7895cb65e81292ae5da36fd7bd12860a8be37aa8 | 2 | 4223227752639517 | 2023-09-16T08:51:47.000Z | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 0xab307d059b57447e756aa5af791f4f760b3d46a36158d06a5fade6fbf6456866 | 0x7895cb65e81292ae5da36fd7bd12860a8be37aa8 | 1 |
Example Query
Example Query
Query with partition filter
LSSVMPairFactory_createPairERC721ERC20_function
NFT liquidity pool creation events from Sudoswap v2 on Ethereum, capturing ERC721-ERC20 pair deployments with bonding curve parameters, initial inventory (NFT IDs and token balances), fee settings, and pool type configurations. Used for analyzing AMM pool initialization strategies and liquidity provider behavior.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_params | STRUCT<token STRING, nft STRING, bondingCurve STRING, assetRecipient STRING, poolType INT64, delta STRING, fee STRING, spotPrice STRING, propertyChecker STRING, initialNFTIDs ARRAY<STRING>, initialTokenBalance STRING> | Additional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations. |
out_pair | STRING | Contract address of the created liquidity pair. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| gas | value | status | gas_used | out_pair | in_params | signature | to_address | block_number | from_address | trace_address | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 207860 | 0 | true | 183899 | 0x15270811442f9aaf529734d8c2d995db2cb7a3f2 | {“fee”:“0”,“nft”:“0x10fc6e7a9b827e2588d02145e08e6bf664cbaee6”,“delta”:“0”,“token”:“0xa19f5264f7d7be11c451c093d8f92592820bea86”,“poolType”:0,“spotPrice”:“52736318407960199005”,“bondingCurve”:“0xe5d78fec1a7f42d2f3620238c498f088a866fdc5”,“initialNFTIDs”:[],“assetRecipient”:“0x0000000000000000000000000000000000000000”,“propertyChecker”:“0x0000000000000000000000000000000000000000”,“initialTokenBalance”:“53000000000000000000”} | 0x96b182be | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 21438602 | 0x66474ced0396b09f2d36ea5f13c9765bcfc31400 | 2024-12-19T19:17:35.000Z | 0x13122fa9dfde091d130d86743bdeb296edef3a20fc71d372434ffeeaf62341f1 | |
| 429330 | 0 | true | 366300 | 0x90aaa99121f02893a440d34c56bd385b354c35bf | {“fee”:“30000000000000000”,“nft”:“0x73883743dd9894bd2d43e975465b50df8d3af3b2”,“delta”:“1020000000000000000”,“token”:“0x1bb04a27ecda1dc9cc09461abbf4db31c3d593d0”,“poolType”:2,“spotPrice”:“312164666861769583455272656326”,“bondingCurve”:“0xfa056c602ad0c0c4ee4385b3233f2cb06730334a”,“initialNFTIDs”:[“8403”,“8388”],“assetRecipient”:“0x0d2c76fe2cd79fcab918315bd7f9add00aab3636”,“propertyChecker”:“0x0000000000000000000000000000000000000000”,“initialTokenBalance”:“585634367228045800000000000000”} | 0x96b182be | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 17573857 | 0x0d2c76fe2cd79fcab918315bd7f9add00aab3636 | 2023-06-27T23:08:59.000Z | 0x0dd998dab514df6cefc65fea75d182910feec04d0ddd4e34fd21ae421af20edb | |
| 652560 | 0 | true | 593237 | 0x8819072e5d2b55a82f8d1b4f7c24459ea0d945df | {“fee”:“25000000000000000”,“nft”:“0xe0fa6c9ce6d457ae8a0b8b2686ce48039416d1e6”,“delta”:“1001000000000000000”,“token”:“0x5e8299d4a88d78556edad53492abc3abb3c562c0”,“poolType”:2,“spotPrice”:“8946277602994020904468665663”,“bondingCurve”:“0xfa056c602ad0c0c4ee4385b3233f2cb06730334a”,“initialNFTIDs”:[“3350”,“6896”,“6889”,“6891”,“6888”,“6894”,“6892”,“6893”,“6890”,“6895”,“397”],“assetRecipient”:“0x6a5e927ffb51ccec284f2569b769cf4a98264802”,“propertyChecker”:“0x0000000000000000000000000000000000000000”,“initialTokenBalance”:“95948350892506270000000000000”} | 0x96b182be | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 18600808 | 0x6a5e927ffb51ccec284f2569b769cf4a98264802 | 2023-11-18T19:29:59.000Z | 0x8dd5035ec0dcb24cf2f6bb23e04c6647b356fd9617f4c57b5c3937c4ba0975da |
Example Query
Example Query
Query with partition filter
LSSVMPairFactory_createPairERC721ETH_function
NFT-ETH liquidity pool creation events from Sudoswap v2 on Ethereum, capturing ERC-721 automated market maker (AMM) pair deployments with bonding curve parameters, initial NFT deposits, and pricing configuration for analyzing DEX liquidity provision 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. |
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__nft | STRING | Contract address of the NFT collection. Hex-encoded, 0x-prefixed, 42-character string. |
in__bondingCurve | STRING | Contract address of the bonding curve implementation used for pricing calculations. Hex-encoded, 0x-prefixed, 42-character string. |
in__assetRecipient | STRING | Address designated to receive asset proceeds from the liquidity pair. Commonly set to zero address when assets remain in the pool, or to a specific wallet address when proceeds are routed externally. |
in__poolType | INT64 | Pool type identifier for the liquidity pair: 0 for token pools, 1 for NFT pools selling into ETH, 2 for trade pools supporting both buying and selling. |
in__delta | STRING | Delta parameter for the bonding curve pricing function. Numeric string representation of the price change rate or step size between consecutive NFT trades. |
in__fee | STRING | Fee amount charged for the transaction or operation. Numeric string representing the fee in the smallest denomination or basis points. |
in__spotPrice | STRING | Initial price point for the bonding curve pricing function. Numeric string representation in wei or smallest token denomination. |
in__propertyChecker | STRING | Contract address of an optional property validation contract for NFTs in the pool. Typically zero address (0x0) when no trait-based filtering is required. |
in__initialNFTIDs | ARRAY<STRING> | Array of NFT token IDs being deposited into the newly created liquidity pool at initialization. May be empty for buy-only pools (poolType 2) that start with only ETH. |
out_pair | STRING | Contract address of the created liquidity pair. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| gas | value | status | in__fee | in__nft | gas_used | out_pair | in__delta | signature | to_address | block_number | from_address | in__poolType | in__spotPrice | trace_address | block_timestamp | in__bondingCurve | transaction_hash | in__initialNFTIDs | in__assetRecipient | in__propertyChecker |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 469092 | 0 | true | 0 | 0xe127ce638293fa123be79c25782a5652581db234 | 300328 | 0xc0bf801659519e313ce418ccd25604c7d6b61299 | 324959260312412325418811490952302730 | 0x82c1b8ff | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 18834945 | 0x990f7a79e5bc29e5863865d39262f755f6c9412a | 1 | 1286483000000000000 | 2023-12-21T14:50:11.000Z | 0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b67 | 0xd268e621bcea58acaa243e4e57909f9b8d8eedb7067f4860db932c6bca986fc6 | [“899”,“861”,“823”] | 0x0000000000000000000000000000000000000000 | 0x0000000000000000000000000000000000000000 | |
| 188327 | 798701298701298700 | true | 25000000000000000 | 0x521f9c7505005cfa19a8e5786a9c3c9c9f5e6f42 | 171207 | 0x6c08e8ec8f90012c38184317adb72cfdc2dcb0c5 | 1001000000000000000 | 0x82c1b8ff | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 18833171 | 0x05324c970713450ba0bc12efd840034fcb0a4baa | 2 | 776474710123999224 | 2023-12-21T08:52:23.000Z | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 0x6ba9a68043a3ce2184d0c0572972422be7e9a7db2c741fec8f01bf92771e4ba2 | [] | 0x05324c970713450ba0bc12efd840034fcb0a4baa | 0x0000000000000000000000000000000000000000 | |
| 672246 | 9922675090673646000 | true | 20000000000000000 | 0x773ac90d0c605ec3beb49a0a971240400319e577 | 606333 | 0x0de5df1376850e88118ee480f40e3eb4034a53fd | 1090000000000000000 | 0x82c1b8ff | 0xa020d57ab0448ef74115c112d18a9c231cc86000 | 18830993 | 0xb520f068a908a1782a543aacc3847adb77a04778 | 2 | 3651467433474827696 | 2023-12-21T01:32:23.000Z | 0xfa056c602ad0c0c4ee4385b3233f2cb06730334a | 0x077ac96cb51bd167e33c18406bdff9a3a7b818e559fc668870295432b63307b0 | [“67”,“68”,“75”,“64”,“71”,“78”,“59”,“63”,“73”,“55”,“56”,“69”,“70”,“61”,“74”,“76”,“60”,“62”,“65”,“66”,“58”,“79”,“80”,“57”,“72”,“77”,“99”,“100”,“98”,“97”,“3”,“4”] | 0xb520f068a908a1782a543aacc3847adb77a04778 | 0x0000000000000000000000000000000000000000 |
Example Query
Example Query
Query with partition filter
LSSVMPairFactory_NewERC1155Pair_event
ERC-1155 liquidity pool creation events from Sudoswap v2 NFT AMM (Automated Market Maker) on Ethereum, capturing new pair deployments with pool addresses and initial ERC-1155 token balances. Used for tracking NFT pool launches and analyzing liquidity provisioning patterns across multi-token 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_poolAddress | STRING | Contract address of the liquidity pool. Hex-encoded, 0x-prefixed, 42-character string. |
in_initialBalance | STRING | Initial token or NFT quantity deposited into the newly created ERC1155 liquidity pool. Values range from 0 to over 1 billion units, representing the pool creator’s starting inventory. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_poolAddress | block_timestamp | transaction_hash | in_initialBalance |
|---|---|---|---|---|---|---|---|
| 0xa020d57ab0448ef74115c112d18a9c231cc86000 | false | 73 | 17579020 | 0x6f0ccd97b1d9810a40e2024eac506892a908d152 | 2023-06-28T16:30:59.000Z | 0x7ead4019040bf035dd860cda9b03b1f83c53180ab0f73c449b7de9aefd1a88c8 | 5 |
| 0xa020d57ab0448ef74115c112d18a9c231cc86000 | false | 317 | 17432285 | 0xa0dd7e8b17bdb9dceb7ebf9c4fb18e28472aa6eb | 2023-06-08T01:17:35.000Z | 0x7a4a37b357e6d0930ac967310196bfb58412c046e586a1a45565dea70cf973bd | 1 |
| 0xa020d57ab0448ef74115c112d18a9c231cc86000 | false | 167 | 17436967 | 0x2b18e51d0bdd727176ebac881abfda502702327d | 2023-06-08T17:11:11.000Z | 0x7a97a6bc732e12c0aef10dbe7c143a394adbd6a09333505f672a4cd276c05b9d | 2 |
Example Query
Example Query
Query with partition filter
LSSVMPairFactory_NewERC721Pair_event
NFT liquidity pool creation events from sudoswap v2 on Ethereum, capturing pool addresses and initial NFT token IDs deposited at pool launch. Used for tracking new pool deployments and analyzing initial liquidity composition.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_poolAddress | STRING | Contract address of the liquidity pool. Hex-encoded, 0x-prefixed, 42-character string. |
in_initialIds | ARRAY<STRING> | Array of ERC-721 token IDs initially deposited into the newly created liquidity pool. Can be empty if the pool is created without any NFTs. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_initialIds | in_poolAddress | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|
| 0xa020d57ab0448ef74115c112d18a9c231cc86000 | false | 231 | 17686869 | [“8891”,“8886”,“8888”,“8890”,“8892”,“8889”,“5102”,“5096”,“5100”,“5101”,“5103”,“5099”,“5095”,“5098”,“5094”,“5093”,“5097”,“10040”,“10046”,“8362”,“7268”,“7236”,“7263”,“7264”,“5636”,“9635”,“9634”,“10043”,“10042”,“9636”,“9632”,“9301”,“8240”,“10617”,“10667”,“10664”,“3284”,“3295”,“3287”,“3300”,“3291”,“3294”,“3305”,“3290”,“3299”,“3285”,“3304”,“3298”,“3301”,“3293”,“3297”,“3286”,“3296”,“3289”,“3288”,“3292”,“3303”] | 0xfaa14b7f65dabb70059448f462eff5022989b250 | 2023-07-13T20:11:35.000Z | 0xca0bac3925506d3a27b0fd07a96093d37e2beb8b6cc56d17782459d860ea0377 |
| 0xa020d57ab0448ef74115c112d18a9c231cc86000 | false | 244 | 17684244 | [“4934”] | 0x1a6a271f82d6ed9ddd7912cef0e71419f55404f6 | 2023-07-13T11:19:47.000Z | 0x2c034e60bf815a81454cd3d960ffa9dc2057cc72ce033cb19f5ebdecf0eec5a9 |
| 0xa020d57ab0448ef74115c112d18a9c231cc86000 | false | 188 | 17681598 | [“730”,“204”,“1506”,“38”,“89”] | 0x57e89ed98bcda4de46dcd0f8e1b6a9447c8f60d9 | 2023-07-13T02:21:47.000Z | 0xb13458985d827dc7b255ea43b1a6ca34a02e597a9247b75285863a80db193902 |
Example Query
Example Query
Query with partition filter
RoyaltyEngine_getRoyalty_function
Royalty calculation queries from Sudoswap v2’s RoyaltyEngine contract on Ethereum, recording NFT token addresses, token IDs, and sale values used to determine creator royalty amounts. Used for analyzing royalty enforcement and fee distribution across NFT collections traded on Sudoswap.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_tokenAddress | STRING | Token contract address for the asset involved in the 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_value | STRING | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values. |
out_anon0 | STRING | Actual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination. |
out_anon1 | STRING | Actual amount of tokens received by the taker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_value | out_anon0 | out_anon1 | signature | in_tokenId | to_address | block_number | from_address | trace_address | block_timestamp | in_tokenAddress | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 115357 | 0 | true | 20845 | 7016652237030974 | 0xf533b802 | 4582 | 0xbc40d21999b4bf120d330ee3a2de415287f626c9 | 19785603 | 0x09341b12a2e6788abf2c84e760bd3423a3ea181f | 0,0,0,3,0,3 | 2024-05-02T23:06:47.000Z | 0x0eff88e66eb717f8f7e0701345f1cc119b487f86 | 0x2d23feb9a79f94a2a2d3c397b87d948fdf4f5fc43d7bdf682822c05a9f06bebd | ||
| 241441 | 0 | true | 5869 | 208530805687203792 | 0xf533b802 | 74182 | 0xbc40d21999b4bf120d330ee3a2de415287f626c9 | 19784271 | 0xacd1f1284e24c1f54ab065357e65edc630ff29bc | 0,2,0,3 | 2024-05-02T18:37:23.000Z | 0x34d85c9cdeb23fa97cb08333b511ac86e1c4e258 | 0xd0991ad8afe27bbcad4a00de7ae8225253c08bee9d99392d7a47ca840706c571 | ||
| 267968 | 0 | true | 5869 | 2616685741054757251 | 0xf533b802 | 2992 | 0xbc40d21999b4bf120d330ee3a2de415287f626c9 | 19784880 | 0x68ace085a47a0818c3ddc376cdd84dbcfdb0a223 | 0,2,0,3 | 2024-05-02T20:40:59.000Z | 0x60e4d786628fea6478f785a6d7e704777c86a7c6 | 0x220c74650cb9c36e1a314d907e05b5e2ec591fa4d6bd68bdd94d7cd09d7c55a2 |
Example Query
Example Query
Query with partition filter
XykCurve_getBuyInfo_function
Function call records for sudoswap v2’s XYK (constant product) bonding curve buy price calculations on Ethereum. Used for analyzing NFT pricing dynamics, fee structures, and liquidity pool parameters in automated market maker pools.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_spotPrice | STRING | Current spot price of the asset or position. String-encoded integer value representing the price in the smallest unit of the relevant token or currency. |
in_delta | STRING | Change in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction. |
in_numItems | STRING | Number of items or NFTs being traded in the transaction. String-encoded integer value. |
in_feeMultiplier | STRING | Multiplier applied to calculate trading fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the fee rate in wei units (e.g., ‘50000000000000000’ equals 0.05 or 5%). |
in_protocolFeeMultiplier | STRING | Multiplier applied to calculate protocol fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the protocol fee rate in wei units. |
out_error | INT64 | Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation. |
out_newSpotPrice | STRING | Updated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency. |
out_newDelta | STRING | Updated delta parameter after the trade execution. String-encoded integer value. |
out_inputValue | STRING | Total input value required for the buy operation. String-encoded integer representing the amount in the smallest unit of the relevant token or currency. |
out_tradeFee | STRING | Trading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
out_protocolFee | STRING | Protocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_delta | out_error | signature | to_address | in_numItems | block_number | from_address | in_spotPrice | out_newDelta | out_tradeFee | trace_address | out_inputValue | block_timestamp | out_protocolFee | in_feeMultiplier | out_newSpotPrice | transaction_hash | in_protocolFeeMultiplier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 240518 | false | 1651 | 20001 | 0 | 0x7ca542ac | 0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de5 | 1 | 20575476 | 0xa748b4abbb34a15ed04481970c0904eb708b28fe | 199004975 | 20000 | 30 | 2,0,2 | 10030 | 2024-08-21T07:22:35.000Z | 50 | 3000000000000000 | 199014925 | 0x3a9907947af232fa422229e4be56a086b8705c7404eb1394953b49311b295f89 | 5000000000000000 | |
| 153258 | true | 1651 | 75 | 0 | 0x7ca542ac | 0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de5 | 1 | 23416401 | 0xeeeefbab93e31599dc9aca3c904253cc0763b50c | 197412935323383095 | 74 | 88035498184752 | 0,2 | 2769116579265833 | 2025-09-22T05:11:47.000Z | 13338711846175 | 33000000000000000 | 200080677692618001 | 0xed3b7695f8c9ed150080ff4258a1b1ebdd42778dc2adfabeffc4e496b55369e2 | 5000000000000000 | |
| 198311 | true | 1651 | 112 | 0 | 0x7ca542ac | 0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de5 | 1 | 17652762 | 0x77fd7676ce3e5a35992f2034e3fbaf487237c11a | 25191009239516702205 | 111 | 6808380875545055 | 0,2 | 234889140206304386 | 2023-07-09T01:01:11.000Z | 1134730145924176 | 30000000000000000 | 25417955268701537360 | 0x8ba74341f27cff808739ddc4d3865e9fc7781e47205d52707712acc3d95b6de0 | 5000000000000000 |
Example Query
Example Query
Query with partition filter
XykCurve_getSellInfo_function
XYK (constant product) bonding curve pricing calculations for NFT sells on Sudoswap v2 Ethereum pools. Records input spot prices and delta parameters with computed output values including new spot price, trade fees, and protocol fees for analyzing automated market maker pricing 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. |
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_spotPrice | STRING | Current spot price of the asset or position. String-encoded integer value representing the price in the smallest unit of the relevant token or currency. |
in_delta | STRING | Change in token amounts represented as a structured object containing amount0 and amount1 fields. Each amount includes a magnitude value and a boolean sign indicating positive or negative direction. |
in_numItems | STRING | Number of items or NFTs being traded in the transaction. String-encoded integer value. |
in_feeMultiplier | STRING | Multiplier applied to calculate trading fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the fee rate in wei units (e.g., ‘50000000000000000’ equals 0.05 or 5%). |
in_protocolFeeMultiplier | STRING | Multiplier applied to calculate protocol fees, expressed as a fixed-point decimal with 18 digits of precision. String-encoded integer representing the protocol fee rate in wei units. |
out_error | INT64 | Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation. |
out_newSpotPrice | STRING | Updated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency. |
out_newDelta | STRING | Updated delta parameter after the trade execution. String-encoded integer value. |
out_outputValue | STRING | Total output value from the trade after deducting fees. String-encoded integer representing the amount in the smallest unit of the relevant token or currency. |
out_tradeFee | STRING | Trading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
out_protocolFee | STRING | Protocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency. |
Sample Data
Sample Data
| gas | value | status | gas_used | in_delta | out_error | signature | to_address | in_numItems | block_number | from_address | in_spotPrice | out_newDelta | out_tradeFee | trace_address | block_timestamp | out_outputValue | out_protocolFee | in_feeMultiplier | out_newSpotPrice | transaction_hash | in_protocolFeeMultiplier |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 147402 | true | 1647 | 24 | 0 | 0x097cc63d | 0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de5 | 1 | 19870358 | 0xaff6e19174b190c8c3344f118e2253b137432585 | 35781094527363184080 | 25 | 35781094527363185 | 1,0,2 | 2024-05-14T19:38:35.000Z | 1388306467661691541 | 7156218905472637 | 25000000000000000 | 34349850746268656717 | 0x37f0dd1b51fc16032a3847bcdd3416155cd6e6ae6e552f3caacbd9e4e5075e03 | 5000000000000000 | |
| 101037 | true | 1647 | 38 | 0 | 0x097cc63d | 0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de5 | 1 | 18776565 | 0xc9c1e585958350f8a6757e3068befcbf15008165 | 21445404556166535743 | 39 | 13747054202670857 | 2,0,2 | 2023-12-13T10:09:35.000Z | 533385703063629220 | 2749410840534172 | 25000000000000000 | 20895522388059701494 | 0x6afa4e745880fc9895b1ad09d609dad43611d63f2492f62e9ea9dc1f9a941ccc | 5000000000000000 | |
| 104270 | true | 1647 | 39 | 0 | 0x097cc63d | 0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de5 | 1 | 18779376 | 0x090c236b62317db226e6ae6cd4c0fd25b7028b65 | 20895522388059701494 | 40 | 13059701492537314 | 7 | 2023-12-13T19:38:23.000Z | 506716417910447760 | 2611940298507463 | 25000000000000000 | 20373134328358208957 | 0x0f58a8d655685dbd9768f70b35ae0c4c52013dd45994c8fe6ba110257823d84d | 5000000000000000 |
Example Query
Example Query
Query with partition filter