Skip to main content

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_spotPriceSTRINGCurrent 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_deltaSTRINGChange 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_numItemsSTRINGNumber of items or NFTs being traded in the transaction. String-encoded integer value.
in_feeMultiplierSTRINGMultiplier 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_protocolFeeMultiplierSTRINGMultiplier 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_errorINT64Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation.
out_newSpotPriceSTRINGUpdated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency.
out_newDeltaSTRINGUpdated delta parameter after the trade execution. String-encoded integer value.
out_inputValueSTRINGTotal input value required for the buy operation. String-encoded integer representing the amount in the smallest unit of the relevant token or currency.
out_tradeFeeSTRINGTrading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
out_protocolFeeSTRINGProtocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
gasvaluestatusgas_usedin_deltaout_errorsignatureto_addressin_numItemsblock_numberfrom_addressin_spotPriceout_newDeltaout_tradeFeetrace_addressout_inputValueblock_timestampout_protocolFeein_feeMultiplierout_newSpotPricetransaction_hashin_protocolFeeMultiplier
201303true2422115000000000000000000x7ca542ac0xfa056c602ad0c0c4ee4385b3233f2cb06730334a1200385530xfec8eb771bbc38f8611fac38eb56f953a7ae991453644549763033181115000000000000000030845616113744080,2650842500000000082024-06-07T07:47:35.000Z30845616113744150000000000000000616912322274881590xc3c7fbe55841f0159168a5a6c849a37eb0e43718d048eedcb553fa60a7fe54935000000000000000
143164true2422101000000000000000000x7ca542ac0xfa056c602ad0c0c4ee4385b3233f2cb06730334a1204017630x765cf8ac8e89177145f9f29f60a594fda99d818f9851731441801101000000000000000000,2100000000000022024-07-28T01:28:35.000Z49751243782099502487562200x8f326b23ea5e5924f3818336e3291b119a5cf31c61ed08e7c78bd29057beb3285000000000000000
143164true2422101000000000000000000x7ca542ac0xfa056c602ad0c0c4ee4385b3233f2cb06730334a1204017660xf8f9c73cb80341c5872bc9cb2a355f117b4522d79851731441801101000000000000000000,2100000000000022024-07-28T01:29:11.000Z49751243782099502487562200xccc40a5c8bd6f34e2ec0189c2055fadd38707883bb9511a812a63ee025cdb0025000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.ExponentialCurve_getBuyInfo_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_spotPriceSTRINGCurrent 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_deltaSTRINGChange 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_numItemsSTRINGNumber of items or NFTs being traded in the transaction. String-encoded integer value.
in_feeMultiplierSTRINGMultiplier 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_protocolFeeMultiplierSTRINGMultiplier 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_errorINT64Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation.
out_newSpotPriceSTRINGUpdated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency.
out_newDeltaSTRINGUpdated delta parameter after the trade execution. String-encoded integer value.
out_outputValueSTRINGTotal 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_tradeFeeSTRINGTrading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
out_protocolFeeSTRINGProtocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
gasvaluestatusgas_usedin_deltaout_errorsignatureto_addressin_numItemsblock_numberfrom_addressin_spotPriceout_newDeltaout_tradeFeetrace_addressblock_timestampout_outputValueout_protocolFeein_feeMultiplierout_newSpotPricetransaction_hashin_protocolFeeMultiplier
135875true2294106900000000000000000x097cc63d0xfa056c602ad0c0c4ee4385b3233f2cb06730334a1191642900x452159cb99e411a0abd433fd64d9fa7a73a703f7103644494834866017106900000000000000002,0,22024-02-05T19:58:23.000Z1031262723606916865182224741743310969546256640467880x130b379b010b91d8cf513a1939cd63d23dc21b30a9cb92595947d8e6abf276a45000000000000000
100591true2294102000000000000000000x097cc63d0xfa056c602ad0c0c4ee4385b3233f2cb06730334a1191652150xcdb8f114d2fb28a4b85bb1ab6e09444006ef53856003282775211904061020000000000000000120065655504238092,0,22024-02-05T23:04:59.000Z5853200705831606443001641387605953200000000000000005885571348246964760x940b398d22f779aa53cd4368c745338ba233c02f5720a8fccc897f762ab21f5d5000000000000000
100591true2294102000000000000000000x097cc63d0xfa056c602ad0c0c4ee4385b3233f2cb06730334a1191630540xcdb8f114d2fb28a4b85bb1ab6e09444006ef53856123348430716142151020000000000000000122466968614322852,0,22024-02-05T15:47:35.000Z5970264719948238583061674215358072200000000000000006003282775211904060x38ecb0acb3fffd150d5a48442c2dc82d9555b780a7ddf802d14e884fe8161a025000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.ExponentialCurve_getSellInfo_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_spotPriceSTRINGCurrent 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_deltaSTRINGChange 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_numItemsSTRINGNumber of items or NFTs being traded in the transaction. String-encoded integer value.
in_feeMultiplierSTRINGMultiplier 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_protocolFeeMultiplierSTRINGMultiplier 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_errorINT64Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation.
out_newSpotPriceSTRINGUpdated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency.
out_newDeltaSTRINGUpdated delta parameter after the trade execution. String-encoded integer value.
out_inputValueSTRINGTotal input value required for the buy operation. String-encoded integer representing the amount in the smallest unit of the relevant token or currency.
out_tradeFeeSTRINGTrading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
out_protocolFeeSTRINGProtocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
gasvaluestatusgas_usedin_deltaout_errorsignatureto_addressin_numItemsblock_numberfrom_addressin_spotPriceout_newDeltaout_tradeFeetrace_addressout_inputValueblock_timestampout_protocolFeein_feeMultiplierout_newSpotPricetransaction_hashin_protocolFeeMultiplier
179996true785846422751473201760634496296615188661900x7ca542ac0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b671188027970xe1f0ccd7b670c55d97c9f978f7a881fc1002660d22644440621264855946422751473201760634496296615191285102,0,21843878040413620672023-12-17T02:31:47.000Z91735225891224902752056776736747290x1aafadce9544c223bed0ba3dd7fa15d289df001d50eee7cdc71816f351d388845000000000000000
198496true784446422751473201760634496296615191285100x7ca542ac0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b671188075570xe1f0ccd7b670c55d97c9f978f7a881fc1002660d27520567767367472946422751473201760634496296615197069102,0,21739009212587739942023-12-17T18:35:47.000Z86517871273021802595536138190656640xd17f6b7201485c071709321c5ca3e2f087e0bb092937cd033bdc72b8061774835000000000000000
198513true780246422751473201760634496296614825997900x7ca542ac0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b671185147270xe1f0ccd7b670c55d97c9f978f7a881fc1002660d525743868769201827746422751473201760634496296614842789502,0,213737274866416709522023-11-06T18:29:11.000Z6834465107670004020503395323010014220x1ab39f98d323e64fd8d513fdcffdecfddd0405a9dc71f9b3f095365f5dc22ecb5000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.GDACurve_getBuyInfo_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_spotPriceSTRINGCurrent 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_deltaSTRINGChange 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_numItemsSTRINGNumber of items or NFTs being traded in the transaction. String-encoded integer value.
in_feeMultiplierSTRINGMultiplier 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_protocolFeeMultiplierSTRINGMultiplier 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_errorINT64Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation.
out_newSpotPriceSTRINGUpdated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency.
out_newDeltaSTRINGUpdated delta parameter after the trade execution. String-encoded integer value.
out_outputValueSTRINGTotal 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_tradeFeeSTRINGTrading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
out_protocolFeeSTRINGProtocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
gasvaluestatusgas_usedin_deltaout_errorsignatureto_addressin_numItemsblock_numberfrom_addressin_spotPriceout_newDeltaout_tradeFeetrace_addressblock_timestampout_outputValueout_protocolFeein_feeMultiplierout_newSpotPricetransaction_hashin_protocolFeeMultiplier
145668true826334043351080347957828337486603736073900x097cc63d0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b671175636500x757bc546f02c4ac8ce69bebdead32ae532291cb51142857142857142934043351080347957828337486603757333502,0,22023-06-26T12:38:47.000Z464029696588721472331807520546330423965003735698060x6bd12d4004a08b39616e14deeeb14bdf6468a1d0eb2e224d3bb041b3e0cabad75000000000000000
168678true826332495926031241232356839499406438548700x097cc63d0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b671194906600xfe9276978bcd98e4b0703b01ff9c86e4b402b097129151103513655897032495926031241232356839499406439649102,0,22024-03-22T14:08:11.000Z13350080128942209766708582979367944012778253294034180330x8c1bf1af294481bb49e8d9d613570f1d6bba37a16c7a5487ae0ccd62a77e37955000000000000000
168647true834732495926031241232356839499406434865900x097cc63d0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b671194883580xfe9276978bcd98e4b0703b01ff9c86e4b402b097125327118925331692632495926031241232356839499406436861502,0,22024-03-22T06:23:35.000Z13363028964463462736715089931891187012790647489316547340xd7eb6a5480108cf69f60dc38dd27a4763434ed6193d2ae7832410e81581351e25000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.GDACurve_getSellInfo_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_spotPriceSTRINGCurrent 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_deltaSTRINGChange 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_numItemsSTRINGNumber of items or NFTs being traded in the transaction. String-encoded integer value.
in_feeMultiplierSTRINGMultiplier 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_protocolFeeMultiplierSTRINGMultiplier 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_errorINT64Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation.
out_newSpotPriceSTRINGUpdated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency.
out_newDeltaSTRINGUpdated delta parameter after the trade execution. String-encoded integer value.
out_inputValueSTRINGTotal input value required for the buy operation. String-encoded integer representing the amount in the smallest unit of the relevant token or currency.
out_tradeFeeSTRINGTrading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
out_protocolFeeSTRINGProtocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
gasvaluestatusgas_usedin_deltaout_errorsignatureto_addressin_numItemsblock_numberfrom_addressin_spotPriceout_newDeltaout_tradeFeetrace_addressout_inputValueblock_timestampout_protocolFeein_feeMultiplierout_newSpotPricetransaction_hashin_protocolFeeMultiplier
75970true2132000x7ca542ac0xe5d78fec1a7f42d2f3620238c498f088a866fdc51180036320x0f5089c5af4017d866cec9ad12a46594f991718e3654865671609137164180,2376451164182023-08-27T04:31:11.000Z18274328425000000000000000365486567160x96e9b28dfbc46e40e709e2f70cc029b5b18ae2d22a0d95eb83e6e826f447026b5000000000000000
94487true2132000x7ca542ac0xe5d78fec1a7f42d2f3620238c498f088a866fdc51180083020x0f5089c5af4017d866cec9ad12a46594f991718e3654865671609137164180,2376451164182023-08-27T20:12:47.000Z18274328425000000000000000365486567160x67455c58bc9557d941035d57cff95fd2f3bf87bb7f4cc39884e9fee5e37913fb5000000000000000
94487true2132000x7ca542ac0xe5d78fec1a7f42d2f3620238c498f088a866fdc51180077300x0f5089c5af4017d866cec9ad12a46594f991718e3654865671609137164180,2376451164182023-08-27T18:17:35.000Z18274328425000000000000000365486567160x8bfb2526604bdf3b6b3a18f59f20aec7906b01ab3019ad308de0f6d9c0dba4bd5000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LinearCurve_getBuyInfo_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_spotPriceSTRINGCurrent 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_deltaSTRINGChange 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_numItemsSTRINGNumber of items or NFTs being traded in the transaction. String-encoded integer value.
in_feeMultiplierSTRINGMultiplier 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_protocolFeeMultiplierSTRINGMultiplier 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_errorINT64Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation.
out_newSpotPriceSTRINGUpdated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency.
out_newDeltaSTRINGUpdated delta parameter after the trade execution. String-encoded integer value.
out_outputValueSTRINGTotal 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_tradeFeeSTRINGTrading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
out_protocolFeeSTRINGProtocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
gasvaluestatusgas_usedin_deltaout_errorsignatureto_addressin_numItemsblock_numberfrom_addressin_spotPriceout_newDeltaout_tradeFeetrace_addressblock_timestampout_outputValueout_protocolFeein_feeMultiplierout_newSpotPricetransaction_hashin_protocolFeeMultiplier
113519true19981280000000000000000x097cc63d0xe5d78fec1a7f42d2f3620238c498f088a866fdc51188172500x5e2073cd00ef3d631f605d37b9a39687642848671792000000000000001280000000000000002,0,22023-12-19T03:10:59.000Z17830400000000000089600000000000001664000000000000000x870699542824cba39276f16d863e32a206633ac722793b8fcd6b4077a289c8485000000000000000
113519true19981280000000000000000x097cc63d0xe5d78fec1a7f42d2f3620238c498f088a866fdc51188222760x5e2073cd00ef3d631f605d37b9a39687642848671920000000000000001280000000000000002,0,22023-12-19T20:09:23.000Z19104000000000000096000000000000001792000000000000000x28177e83ab88678bdcd3ab947b4d463a01dac1b04c25050d2702c97ae184bdd15000000000000000
305185true1998000x097cc63d0xe5d78fec1a7f42d2f3620238c498f088a866fdc51232468940x020b91b9a3a159fab00aae3950ea0460628b403e20000000000000000004,0,22025-08-29T12:50:59.000Z199000000000000001000000000000000200000000000000000x81825b89e4f46a009b8f9cd46ccfc73e95ab84049ff20b06b793f686e1d9204e5000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LinearCurve_getSellInfo_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_numNFTsARRAY<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_minExpectedTokenOutputSTRINGMinimum 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_tokenRecipientSTRINGAddress designated to receive the tokens from the NFT swap operation. Hex-encoded, 0x-prefixed, 42-character string.
in_isRouterBOOLIndicates whether the function call originated through a router contract rather than directly from a user address.
in_routerCallerSTRINGAddress 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_outputAmountSTRINGAmount of tokens received from swapping NFTs. String-encoded integer representing the token quantity in the smallest unit (wei for ETH).
gasvaluestatusgas_usedsignaturein_numNFTsto_addressin_isRouterblock_numberfrom_addresstrace_addressblock_timestampin_routerCallerout_outputAmounttransaction_hashin_tokenRecipientin_minExpectedTokenOutput
1431630true1237610xb1d3f1c1[“1”]0xdef2729e583defa7d4b4ea20b7cc07a8be92d312true191520110x090c236b62317db226e6ae6cd4c0fd25b7028b6522024-02-04T02:32:59.000Z0x6ffce76355025452bbb8b300e75bbeae3f312fd013482556875000000xf7cd002f3c32435c94d84fd18dd213921403d4f7881cde822bb8c596b80e45070x6ffce76355025452bbb8b300e75bbeae3f312fd01348255687500000
1659610true1441600xb1d3f1c1[“1”]0x9e15b7ba8ff32724817006a57b968025a8738b75true191518590x090c236b62317db226e6ae6cd4c0fd25b7028b6522024-02-04T02:02:11.000Z0xac3b886fa5296f0c641151589f2b1fbd0b197fa719303482587064680x1e29d675c061e8de0fa4284d674c571f076e4f35940b7e552e418d3b3deca7320xac3b886fa5296f0c641151589f2b1fbd0b197fa71930348258706468
1167270true1000950xb1d3f1c1[“500000”]0x331bd0d4703a262c05a654ee3d2772ffe1396b75true185518780x090c236b62317db226e6ae6cd4c0fd25b7028b6522023-11-11T23:10:23.000Z0xdd7267db6bad68e09f3a7288965949c44237ebe41399044939236331710xd349979f0a5dd2389e0404897478475a8425698219199623060fb92d283a63010xdd7267db6bad68e09f3a7288965949c44237ebe4139904493923633171
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairERC1155ETH_swapNFTsForToken_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_numNFTsARRAY<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_maxExpectedTokenInputSTRINGMaximum amount of tokens the buyer is willing to spend for the NFT swap. Numeric string representing the token quantity in its smallest denomination.
in_nftRecipientSTRINGAddress designated to receive the NFTs from the swap operation. Hex-encoded, 0x-prefixed, 42-character string.
in_isRouterBOOLIndicates whether the function call originated through a router contract rather than directly from a user address.
in_routerCallerSTRINGAddress 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_anon0STRINGActual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedout_anon0signaturein_numNFTsto_addressin_isRouterblock_numberfrom_addresstrace_addressblock_timestampin_nftRecipientin_routerCallertransaction_hashin_maxExpectedTokenInput
2212111695775625000000true13677516957756250000000x6d8b99f7[“1”]0xc6ce31decc275593c37934032d412534e3f7db09false196221080xf007af3748ad93b4f045306a3b09e07f0191929a2024-04-10T01:59:59.000Z0xf007af3748ad93b4f045306a3b09e07f0191929a0xf007af3748ad93b4f045306a3b09e07f0191929a0x0ba87a71f741200e472b2a2b01bfcdbf4b10acebb5256506a184e9147ec671931695775625000000
16057210302000000000004true140754103020000000000050x6d8b99f7[“1”]0x0c3224fff2b46f37ece427a6b0c198048ced4d23false188974170xc549a3def0d08186fb1a136f347b79d8ac3cee442023-12-30T09:21:59.000Z0xc549a3def0d08186fb1a136f347b79d8ac3cee440xc549a3def0d08186fb1a136f347b79d8ac3cee440x7acd91560f117b6eabd3f1c50cd7d8a5e66a49e5317b742c576fd4a15f268a5810302000000000005
1785712514326036696873true15686225143260366968730x6d8b99f7[“1”]0x772ed8e69d5e2a2dd0f1900f5cf0275205a5e86bfalse179195000x9d4eb973cb2cfbdce578e09c48d747aa3ecd228e2023-08-15T09:58:47.000Z0x9d4eb973cb2cfbdce578e09c48d747aa3ecd228e0x9d4eb973cb2cfbdce578e09c48d747aa3ecd228e0xc63e6a6af9c1de0fb5f6c85ca8b8c68c8438e42a65a548e0ba89d0765f27644b2514326036696873
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairERC1155ETH_swapTokenForSpecificNFTs_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_nftIdsARRAY<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_minExpectedTokenOutputSTRINGMinimum 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_tokenRecipientSTRINGAddress designated to receive the tokens from the NFT swap operation. Hex-encoded, 0x-prefixed, 42-character string.
in_isRouterBOOLIndicates whether the function call originated through a router contract rather than directly from a user address.
in_routerCallerSTRINGAddress 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_outputAmountSTRINGAmount of tokens received from swapping NFTs. String-encoded integer representing the token quantity in the smallest unit (wei for ETH).
gasvaluestatusgas_usedin_nftIdssignatureto_addressin_isRouterblock_numberfrom_addresstrace_addressblock_timestampin_routerCallerout_outputAmounttransaction_hashin_tokenRecipientin_minExpectedTokenOutput
1757170true100973[“8703”]0xb1d3f1c10xcdb8f114d2fb28a4b85bb1ab6e09444006ef5385true198805060x090c236b62317db226e6ae6cd4c0fd25b7028b6522024-05-16T05:39:23.000Z0x3c02a8d11e3f7d530b7b494e124de680f64c516c14075490196078431930x483c0be59757b4e6f90a1bd93ffda5c4c623306836723137f395c6cf9dab44480x3c02a8d11e3f7d530b7b494e124de680f64c516c1407549019607843193
1323630true100973[“1881”]0xb1d3f1c10xcdb8f114d2fb28a4b85bb1ab6e09444006ef5385true198830490x090c236b62317db226e6ae6cd4c0fd25b7028b6522024-05-16T14:11:35.000Z0x917660a684d89f4713d2e22054fec8ea2e29c11a13936128907008348440x1f050178ebe0212a7f4c9fb63076256e5a8579f9128366871712f625055097910x917660a684d89f4713d2e22054fec8ea2e29c11a1393612890700834844
2635230true157887[“6167”,“3694”]0xb1d3f1c10x452159cb99e411a0abd433fd64d9fa7a73a703f7true198802420x090c236b62317db226e6ae6cd4c0fd25b7028b6522024-05-16T04:46:23.000Z0x87e3eee0049678eb31ec325f24963ec841d2abe6765469272823098460x1ac3b88c49031abf97443b5ad7c6edcdda700f1c4b7b92322fa39adbb446d12a0x87e3eee0049678eb31ec325f24963ec841d2abe676546927282309846
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairERC721ETH_swapNFTsForToken2_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_nftIdsARRAY<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_maxExpectedTokenInputSTRINGMaximum amount of tokens the buyer is willing to spend for the NFT swap. Numeric string representing the token quantity in its smallest denomination.
in_nftRecipientSTRINGAddress designated to receive the NFTs from the swap operation. Hex-encoded, 0x-prefixed, 42-character string.
in_isRouterBOOLIndicates whether the function call originated through a router contract rather than directly from a user address.
in_routerCallerSTRINGAddress 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_anon0STRINGActual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedin_nftIdsout_anon0signatureto_addressin_isRouterblock_numberfrom_addresstrace_addressblock_timestampin_nftRecipientin_routerCallertransaction_hashin_maxExpectedTokenInput
17100812997512437820932true149886[“41075”]129975124378109330x6d8b99f70x1ec95e3eef31a86d1536df5af67677a0fc98e5a4false184491260x4503a14a521a7c4a89e73baf200d21cd3273de292023-10-28T13:54:35.000Z0x4503a14a521a7c4a89e73baf200d21cd3273de290x00000000000000000000000000000000000000000xfa1713bc0c190dc52f0223997ee549dc1850793fc9b6fbb2e91a91331d1dceb112997512437820933
17100812997512437820934true149886[“18997”]129975124378109340x6d8b99f70x1ec95e3eef31a86d1536df5af67677a0fc98e5a4false184466400x9729a03689d35caa386be217ff5828691e3ff7b62023-10-28T05:33:47.000Z0x9729a03689d35caa386be217ff5828691e3ff7b60x00000000000000000000000000000000000000000x6d7400941e62c67e648f58017dbebf2af682b6805de5897b1c2defd3815a335e12997512437820934
17099513647388059711480true149874[“37912”]136473880597014810x6d8b99f70x1ec95e3eef31a86d1536df5af67677a0fc98e5a4false184466560x67cdb2b891a9e8179bacd1009fbce3e3c4e27f862023-10-28T05:36:59.000Z0x67cdb2b891a9e8179bacd1009fbce3e3c4e27f860x00000000000000000000000000000000000000000x67a8fef7205b1b5f947b5eb0f4107d4dea4ef77daf25c1bef5740a7f522bd04313647388059711481
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairERC721ETH_swapTokenForSpecificNFTs_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_paramsSTRUCT<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_pairSTRINGContract address of the created liquidity pair. Hex-encoded, 0x-prefixed, 42-character string.
gasvaluestatusgas_usedout_pairin_paramssignatureto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
1996810true1503650x42df02d68ddfcdd1eebb61ef8a748d5df88d9107{“fee”:“0”,“nft”:“0x76be3b62873462d2142405439777e971754e8e77”,“delta”:“0”,“nftId”:“10751”,“token”:“0xb23d80f5fefcddaa212212f028021b41ded428cf”,“poolType”:1,“spotPrice”:“5000000000000000000”,“bondingCurve”:“0xe5d78fec1a7f42d2f3620238c498f088a866fdc5”,“assetRecipient”:“0x0000000000000000000000000000000000000000”,“initialNFTBalance”:“2”,“initialTokenBalance”:“0”}0xea3ec18c0xa020d57ab0448ef74115c112d18a9c231cc86000175947990x0d1e616efcf506713fe49d1736c85fb27991d8b752023-06-30T21:36:35.000Z0x1d59da8b6676e08d88bcd3928bbb5e6980a83acdbea7a0605287ce0538f17a09
3944230true1573650xdb5da171771e0dec2f58f1513f87a62d4658be4c{“fee”:“0”,“nft”:“0x76be3b62873462d2142405439777e971754e8e77”,“delta”:“0”,“nftId”:“10500”,“token”:“0xb23d80f5fefcddaa212212f028021b41ded428cf”,“poolType”:1,“spotPrice”:“5000000000000000000”,“bondingCurve”:“0xe5d78fec1a7f42d2f3620238c498f088a866fdc5”,“assetRecipient”:“0x0000000000000000000000000000000000000000”,“initialNFTBalance”:“2”,“initialTokenBalance”:“0”}0xea3ec18c0xa020d57ab0448ef74115c112d18a9c231cc86000175947990x0d1e616efcf506713fe49d1736c85fb27991d8b722023-06-30T21:36:35.000Z0x1d59da8b6676e08d88bcd3928bbb5e6980a83acdbea7a0605287ce0538f17a09
3613820true1263120xf08c90b9e4f14cfdbef8a6c0ca0bba91f7c49685{“fee”:“0”,“nft”:“0x76be3b62873462d2142405439777e971754e8e77”,“delta”:“0”,“nftId”:“10755”,“token”:“0xb23d80f5fefcddaa212212f028021b41ded428cf”,“poolType”:1,“spotPrice”:“5000000000000000000”,“bondingCurve”:“0xe5d78fec1a7f42d2f3620238c498f088a866fdc5”,“assetRecipient”:“0x0000000000000000000000000000000000000000”,“initialNFTBalance”:“0”,“initialTokenBalance”:“0”}0xea3ec18c0xa020d57ab0448ef74115c112d18a9c231cc86000175945030x5d7ac2208599e4bd78ad749693b51e6a15b80a6802023-06-30T20:36:59.000Z0x7d4001069c47ebbdaee313885bffeea50a2dd1af8d0135336637692854b2802f
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairFactory_createPairERC1155ERC20_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in__nftSTRINGContract address of the NFT collection. Hex-encoded, 0x-prefixed, 42-character string.
in__bondingCurveSTRINGContract address of the bonding curve implementation used for pricing calculations. Hex-encoded, 0x-prefixed, 42-character string.
in__assetRecipientSTRINGAddress 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__poolTypeINT64Pool 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__deltaSTRINGDelta parameter for the bonding curve pricing function. Numeric string representation of the price change rate or step size between consecutive NFT trades.
in__feeSTRINGFee amount charged for the transaction or operation. Numeric string representing the fee in the smallest denomination or basis points.
in__spotPriceSTRINGInitial price point for the bonding curve pricing function. Numeric string representation in wei or smallest token denomination.
in__nftIdSTRINGToken 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__initialNFTBalanceSTRINGInitial quantity of ERC-1155 tokens deposited into the newly created liquidity pool. Represents the pool’s starting inventory for trading.
out_pairSTRINGContract address of the created liquidity pair. Hex-encoded, 0x-prefixed, 42-character string.
gasvaluestatusin__feein__nftgas_usedout_pairin__deltain__nftIdsignatureto_addressblock_numberfrom_addressin__poolTypein__spotPricetrace_addressblock_timestampin__bondingCurvetransaction_hashin__assetRecipientin__initialNFTBalance
26513761453156797910840true250000000000000000x78364cfd8e7081672a7380ed8a6c2491d5ef12042156300xcff4e475f55436afb564cf0afe125bf09ea06e721010000000000000000145477389203267607180395280323794508422545123676854018877259120402088339705890x8e0fabc50xa020d57ab0448ef74115c112d18a9c231cc86000204939700x2029ba7ad196da403c6c42fa77dca798aec5ed9029851731441800902024-08-09T22:16:11.000Z0xfa056c602ad0c0c4ee4385b3233f2cb06730334a0xfae78a0d70eaf3dbe3081e7e079f184310386d23a8a17abba91159346b5f24b80x2029ba7ad196da403c6c42fa77dca798aec5ed90411
2339550true00xbb9e37b92752d2008ce6bed87db09288662236091821130x08659ee60cf50aa916f56c7875b5a05d08a978d2105000000000000000010x8e0fabc50xa020d57ab0448ef74115c112d18a9c231cc86000229846570x67d021f0cc144562ed1c1a378f9c26b1fee8820619476427386875148072025-07-23T21:50:35.000Z0xfa056c602ad0c0c4ee4385b3233f2cb06730334a0x94e605be13c972391d9f6926faa22cb15708cab89fc3d2a0bd51088b6ec93b490x00000000000000000000000000000000000000009
3196824550000000000000true250000000000000000x76be3b62873462d2142405439777e971754e8e772083210xe28126a50dd70cc1b7a5f4e489c446138e1be4a31500000000000000000109740x8e0fabc50xa020d57ab0448ef74115c112d18a9c231cc86000181476420x7895cb65e81292ae5da36fd7bd12860a8be37aa8242232277526395172023-09-16T08:51:47.000Z0xfa056c602ad0c0c4ee4385b3233f2cb06730334a0xab307d059b57447e756aa5af791f4f760b3d46a36158d06a5fade6fbf64568660x7895cb65e81292ae5da36fd7bd12860a8be37aa81
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairFactory_createPairERC1155ETH_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_paramsSTRUCT<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_pairSTRINGContract address of the created liquidity pair. Hex-encoded, 0x-prefixed, 42-character string.
gasvaluestatusgas_usedout_pairin_paramssignatureto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
2078600true1838990x15270811442f9aaf529734d8c2d995db2cb7a3f2{“fee”:“0”,“nft”:“0x10fc6e7a9b827e2588d02145e08e6bf664cbaee6”,“delta”:“0”,“token”:“0xa19f5264f7d7be11c451c093d8f92592820bea86”,“poolType”:0,“spotPrice”:“52736318407960199005”,“bondingCurve”:“0xe5d78fec1a7f42d2f3620238c498f088a866fdc5”,“initialNFTIDs”:[],“assetRecipient”:“0x0000000000000000000000000000000000000000”,“propertyChecker”:“0x0000000000000000000000000000000000000000”,“initialTokenBalance”:“53000000000000000000”}0x96b182be0xa020d57ab0448ef74115c112d18a9c231cc86000214386020x66474ced0396b09f2d36ea5f13c9765bcfc314002024-12-19T19:17:35.000Z0x13122fa9dfde091d130d86743bdeb296edef3a20fc71d372434ffeeaf62341f1
4293300true3663000x90aaa99121f02893a440d34c56bd385b354c35bf{“fee”:“30000000000000000”,“nft”:“0x73883743dd9894bd2d43e975465b50df8d3af3b2”,“delta”:“1020000000000000000”,“token”:“0x1bb04a27ecda1dc9cc09461abbf4db31c3d593d0”,“poolType”:2,“spotPrice”:“312164666861769583455272656326”,“bondingCurve”:“0xfa056c602ad0c0c4ee4385b3233f2cb06730334a”,“initialNFTIDs”:[“8403”,“8388”],“assetRecipient”:“0x0d2c76fe2cd79fcab918315bd7f9add00aab3636”,“propertyChecker”:“0x0000000000000000000000000000000000000000”,“initialTokenBalance”:“585634367228045800000000000000”}0x96b182be0xa020d57ab0448ef74115c112d18a9c231cc86000175738570x0d2c76fe2cd79fcab918315bd7f9add00aab36362023-06-27T23:08:59.000Z0x0dd998dab514df6cefc65fea75d182910feec04d0ddd4e34fd21ae421af20edb
6525600true5932370x8819072e5d2b55a82f8d1b4f7c24459ea0d945df{“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”}0x96b182be0xa020d57ab0448ef74115c112d18a9c231cc86000186008080x6a5e927ffb51ccec284f2569b769cf4a982648022023-11-18T19:29:59.000Z0x8dd5035ec0dcb24cf2f6bb23e04c6647b356fd9617f4c57b5c3937c4ba0975da
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairFactory_createPairERC721ERC20_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in__nftSTRINGContract address of the NFT collection. Hex-encoded, 0x-prefixed, 42-character string.
in__bondingCurveSTRINGContract address of the bonding curve implementation used for pricing calculations. Hex-encoded, 0x-prefixed, 42-character string.
in__assetRecipientSTRINGAddress 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__poolTypeINT64Pool 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__deltaSTRINGDelta parameter for the bonding curve pricing function. Numeric string representation of the price change rate or step size between consecutive NFT trades.
in__feeSTRINGFee amount charged for the transaction or operation. Numeric string representing the fee in the smallest denomination or basis points.
in__spotPriceSTRINGInitial price point for the bonding curve pricing function. Numeric string representation in wei or smallest token denomination.
in__propertyCheckerSTRINGContract address of an optional property validation contract for NFTs in the pool. Typically zero address (0x0) when no trait-based filtering is required.
in__initialNFTIDsARRAY<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_pairSTRINGContract address of the created liquidity pair. Hex-encoded, 0x-prefixed, 42-character string.
gasvaluestatusin__feein__nftgas_usedout_pairin__deltasignatureto_addressblock_numberfrom_addressin__poolTypein__spotPricetrace_addressblock_timestampin__bondingCurvetransaction_hashin__initialNFTIDsin__assetRecipientin__propertyChecker
4690920true00xe127ce638293fa123be79c25782a5652581db2343003280xc0bf801659519e313ce418ccd25604c7d6b612993249592603124123254188114909523027300x82c1b8ff0xa020d57ab0448ef74115c112d18a9c231cc86000188349450x990f7a79e5bc29e5863865d39262f755f6c9412a112864830000000000002023-12-21T14:50:11.000Z0x1fd5876d4a3860eb0159055a3b7cb79fdfff6b670xd268e621bcea58acaa243e4e57909f9b8d8eedb7067f4860db932c6bca986fc6[“899”,“861”,“823”]0x00000000000000000000000000000000000000000x0000000000000000000000000000000000000000
188327798701298701298700true250000000000000000x521f9c7505005cfa19a8e5786a9c3c9c9f5e6f421712070x6c08e8ec8f90012c38184317adb72cfdc2dcb0c510010000000000000000x82c1b8ff0xa020d57ab0448ef74115c112d18a9c231cc86000188331710x05324c970713450ba0bc12efd840034fcb0a4baa27764747101239992242023-12-21T08:52:23.000Z0xfa056c602ad0c0c4ee4385b3233f2cb06730334a0x6ba9a68043a3ce2184d0c0572972422be7e9a7db2c741fec8f01bf92771e4ba2[]0x05324c970713450ba0bc12efd840034fcb0a4baa0x0000000000000000000000000000000000000000
6722469922675090673646000true200000000000000000x773ac90d0c605ec3beb49a0a971240400319e5776063330x0de5df1376850e88118ee480f40e3eb4034a53fd10900000000000000000x82c1b8ff0xa020d57ab0448ef74115c112d18a9c231cc86000188309930xb520f068a908a1782a543aacc3847adb77a04778236514674334748276962023-12-21T01:32:23.000Z0xfa056c602ad0c0c4ee4385b3233f2cb06730334a0x077ac96cb51bd167e33c18406bdff9a3a7b818e559fc668870295432b63307b0[“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”]0xb520f068a908a1782a543aacc3847adb77a047780x0000000000000000000000000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairFactory_createPairERC721ETH_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_poolAddressSTRINGContract address of the liquidity pool. Hex-encoded, 0x-prefixed, 42-character string.
in_initialBalanceSTRINGInitial 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.
addressremovedlog_indexblock_numberin_poolAddressblock_timestamptransaction_hashin_initialBalance
0xa020d57ab0448ef74115c112d18a9c231cc86000false73175790200x6f0ccd97b1d9810a40e2024eac506892a908d1522023-06-28T16:30:59.000Z0x7ead4019040bf035dd860cda9b03b1f83c53180ab0f73c449b7de9aefd1a88c85
0xa020d57ab0448ef74115c112d18a9c231cc86000false317174322850xa0dd7e8b17bdb9dceb7ebf9c4fb18e28472aa6eb2023-06-08T01:17:35.000Z0x7a4a37b357e6d0930ac967310196bfb58412c046e586a1a45565dea70cf973bd1
0xa020d57ab0448ef74115c112d18a9c231cc86000false167174369670x2b18e51d0bdd727176ebac881abfda502702327d2023-06-08T17:11:11.000Z0x7a97a6bc732e12c0aef10dbe7c143a394adbd6a09333505f672a4cd276c05b9d2
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairFactory_NewERC1155Pair_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_poolAddressSTRINGContract address of the liquidity pool. Hex-encoded, 0x-prefixed, 42-character string.
in_initialIdsARRAY<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.
addressremovedlog_indexblock_numberin_initialIdsin_poolAddressblock_timestamptransaction_hash
0xa020d57ab0448ef74115c112d18a9c231cc86000false23117686869[“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”]0xfaa14b7f65dabb70059448f462eff5022989b2502023-07-13T20:11:35.000Z0xca0bac3925506d3a27b0fd07a96093d37e2beb8b6cc56d17782459d860ea0377
0xa020d57ab0448ef74115c112d18a9c231cc86000false24417684244[“4934”]0x1a6a271f82d6ed9ddd7912cef0e71419f55404f62023-07-13T11:19:47.000Z0x2c034e60bf815a81454cd3d960ffa9dc2057cc72ce033cb19f5ebdecf0eec5a9
0xa020d57ab0448ef74115c112d18a9c231cc86000false18817681598[“730”,“204”,“1506”,“38”,“89”]0x57e89ed98bcda4de46dcd0f8e1b6a9447c8f60d92023-07-13T02:21:47.000Z0xb13458985d827dc7b255ea43b1a6ca34a02e597a9247b75285863a80db193902
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.LSSVMPairFactory_NewERC721Pair_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_tokenAddressSTRINGToken contract address for the asset involved in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
out_anon0STRINGActual amount of tokens provided by the maker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
out_anon1STRINGActual amount of tokens received by the taker in the order or swap execution. Numeric string representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedin_valueout_anon0out_anon1signaturein_tokenIdto_addressblock_numberfrom_addresstrace_addressblock_timestampin_tokenAddresstransaction_hash
1153570true2084570166522370309740xf533b80245820xbc40d21999b4bf120d330ee3a2de415287f626c9197856030x09341b12a2e6788abf2c84e760bd3423a3ea181f0,0,0,3,0,32024-05-02T23:06:47.000Z0x0eff88e66eb717f8f7e0701345f1cc119b487f860x2d23feb9a79f94a2a2d3c397b87d948fdf4f5fc43d7bdf682822c05a9f06bebd
2414410true58692085308056872037920xf533b802741820xbc40d21999b4bf120d330ee3a2de415287f626c9197842710xacd1f1284e24c1f54ab065357e65edc630ff29bc0,2,0,32024-05-02T18:37:23.000Z0x34d85c9cdeb23fa97cb08333b511ac86e1c4e2580xd0991ad8afe27bbcad4a00de7ae8225253c08bee9d99392d7a47ca840706c571
2679680true586926166857410547572510xf533b80229920xbc40d21999b4bf120d330ee3a2de415287f626c9197848800x68ace085a47a0818c3ddc376cdd84dbcfdb0a2230,2,0,32024-05-02T20:40:59.000Z0x60e4d786628fea6478f785a6d7e704777c86a7c60x220c74650cb9c36e1a314d907e05b5e2ec591fa4d6bd68bdd94d7cd09d7c55a2
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.RoyaltyEngine_getRoyalty_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_spotPriceSTRINGCurrent 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_deltaSTRINGChange 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_numItemsSTRINGNumber of items or NFTs being traded in the transaction. String-encoded integer value.
in_feeMultiplierSTRINGMultiplier 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_protocolFeeMultiplierSTRINGMultiplier 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_errorINT64Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation.
out_newSpotPriceSTRINGUpdated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency.
out_newDeltaSTRINGUpdated delta parameter after the trade execution. String-encoded integer value.
out_inputValueSTRINGTotal input value required for the buy operation. String-encoded integer representing the amount in the smallest unit of the relevant token or currency.
out_tradeFeeSTRINGTrading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
out_protocolFeeSTRINGProtocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
gasvaluestatusgas_usedin_deltaout_errorsignatureto_addressin_numItemsblock_numberfrom_addressin_spotPriceout_newDeltaout_tradeFeetrace_addressout_inputValueblock_timestampout_protocolFeein_feeMultiplierout_newSpotPricetransaction_hashin_protocolFeeMultiplier
240518false16512000100x7ca542ac0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de51205754760xa748b4abbb34a15ed04481970c0904eb708b28fe19900497520000302,0,2100302024-08-21T07:22:35.000Z5030000000000000001990149250x3a9907947af232fa422229e4be56a086b8705c7404eb1394953b49311b295f895000000000000000
153258true16517500x7ca542ac0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de51234164010xeeeefbab93e31599dc9aca3c904253cc0763b50c19741293532338309574880354981847520,227691165792658332025-09-22T05:11:47.000Z13338711846175330000000000000002000806776926180010xed3b7695f8c9ed150080ff4258a1b1ebdd42778dc2adfabeffc4e496b55369e25000000000000000
198311true165111200x7ca542ac0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de51176527620x77fd7676ce3e5a35992f2034e3fbaf487237c11a2519100923951670220511168083808755450550,22348891402063043862023-07-09T01:01:11.000Z113473014592417630000000000000000254179552687015373600x8ba74341f27cff808739ddc4d3865e9fc7781e47205d52707712acc3d95b6de05000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.XykCurve_getBuyInfo_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_spotPriceSTRINGCurrent 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_deltaSTRINGChange 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_numItemsSTRINGNumber of items or NFTs being traded in the transaction. String-encoded integer value.
in_feeMultiplierSTRINGMultiplier 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_protocolFeeMultiplierSTRINGMultiplier 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_errorINT64Error code returned by the pricing curve function calculation. Integer value where 0 indicates successful computation.
out_newSpotPriceSTRINGUpdated spot price after the trade execution. String-encoded integer representing the price in the smallest unit of the relevant token or currency.
out_newDeltaSTRINGUpdated delta parameter after the trade execution. String-encoded integer value.
out_outputValueSTRINGTotal 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_tradeFeeSTRINGTrading fee amount charged on the transaction. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
out_protocolFeeSTRINGProtocol fee amount charged on the trade. String-encoded integer representing the fee in the smallest unit of the relevant token or currency.
gasvaluestatusgas_usedin_deltaout_errorsignatureto_addressin_numItemsblock_numberfrom_addressin_spotPriceout_newDeltaout_tradeFeetrace_addressblock_timestampout_outputValueout_protocolFeein_feeMultiplierout_newSpotPricetransaction_hashin_protocolFeeMultiplier
147402true16472400x097cc63d0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de51198703580xaff6e19174b190c8c3344f118e2253b1374325853578109452736318408025357810945273631851,0,22024-05-14T19:38:35.000Z1388306467661691541715621890547263725000000000000000343498507462686567170x37f0dd1b51fc16032a3847bcdd3416155cd6e6ae6e552f3caacbd9e4e5075e035000000000000000
101037true16473800x097cc63d0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de51187765650xc9c1e585958350f8a6757e3068befcbf150081652144540455616653574339137470542026708572,0,22023-12-13T10:09:35.000Z533385703063629220274941084053417225000000000000000208955223880597014940x6afa4e745880fc9895b1ad09d609dad43611d63f2492f62e9ea9dc1f9a941ccc5000000000000000
104270true16473900x097cc63d0xc7fb91b6cd3c67e02ec08013cebb29b1241f3de51187793760x090c236b62317db226e6ae6cd4c0fd25b7028b6520895522388059701494401305970149253731472023-12-13T19:38:23.000Z506716417910447760261194029850746325000000000000000203731343283582089570x0f58a8d655685dbd9768f70b35ae0c4c52013dd45994c8fe6ba110257823d84d5000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.sudoswap_v2_ethereum.XykCurve_getSellInfo_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100