Skip to main content

Tables

Bank_AllocateHouseEdgeAmount_event

Event logs recording the distribution of house edge revenue across multiple recipients including bank reserves, dividends, team allocations, treasury, and partner/referral shares. Used for tracking revenue allocation flows in decentralized gaming protocols.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_dividendSTRINGAmount allocated to dividends from house edge distribution. Numeric string representation of token wei or smallest unit amount.
in_referralSTRINGReferral code identifier associated with the transaction. Numeric string representation, often ‘0’ when no referral is present.
in_partnerSTRINGAddress of the partner or referral entity associated with the transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_treasurySTRINGContract address of the Aave protocol treasury. Hex-encoded, 0x-prefixed, 42-character string.
in_teamSTRINGAmount allocated to the team from house edge distribution. Numeric string representation of token wei or smallest unit amount.
addressin_teamremovedin_tokenlog_indexin_partnerin_dividendin_referralin_treasuryblock_numberblock_timestamptransaction_hash
0x187de399100aa962f209aa78621f5138aca6111f11666false0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e5019166019166163127112022-06-21T05:18:05.000Z0xce2a3a0decb8382c83b437206e1fe3caf302a1385efdc599a6f3c5116959efd1
0x187de399100aa962f209aa78621f5138aca6111f11666false0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e4019166019166163075232022-06-21T02:24:57.000Z0x33e97e99773f0bd71a554a52fe0d2544c14dc73e53acfc205a7c915694b34512
0x187de399100aa962f209aa78621f5138aca6111f11666false0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e11019166019166163076362022-06-21T02:28:43.000Z0xd758b1b5bfbe280f3856362635fcca1caf60b3cd32a628e53a6dd81f385a2f39
Query with partition filter
SELECT *
FROM `tt-contracts.betswirl_v2_avalanche.Bank_AllocateHouseEdgeAmount_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Roulette_Roll_event

Roulette game outcome event emitted when a player’s bet is resolved, containing the bet identifier, wagered amount, random result (0-36), selected numbers, payout awarded, player address, and token used. Primary source for analyzing roulette game outcomes and player winnings.
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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_numbersSTRINGPlayer’s selected numbers or positions for the wager. Numeric string representation encoding the chosen bet configuration in the gaming protocol.
in_rolledINT64Randomly generated outcome value from the gaming protocol’s verifiable randomness system.
in_payoutSTRINGPayout amount awarded to the player or winner. Numeric string representation of token quantity in smallest denomination.
in_idaddressin_userremovedin_tokenin_amountin_payoutin_rolledlog_indexin_numbersblock_numberblock_timestamptransaction_hash
959911778023507615509336693525488079143476471809125177782493890530656124975740x556bc2bbe113cec48fc3b2c45afb708fb09dda630x4ca11ba147210542a0acc519fbb8ef82c051db8cfalse0x00000000000000000000000000000000000000001000000000000000001851198890902022-09-15T05:39:55.000Z0x36f9ee91f8875bb8f6ecc1de2877555d1b729a9bf8ab0af1df75eded2630727a
1112933842706173043801423524010788669829214906119034613726236076166516575263270x556bc2bbe113cec48fc3b2c45afb708fb09dda630x4ca11ba147210542a0acc519fbb8ef82c051db8cfalse0x00000000000000000000000000000000000000002000000000000000002821198891132022-09-15T05:40:53.000Z0x3ce63cc2f033ad91249e6a38b974f57c39df7ebb4bda1a4c221b045ffe8d474f
738553307439456061925684797600993955964198889619365165666581020026273332659980x556bc2bbe113cec48fc3b2c45afb708fb09dda630x4ca11ba147210542a0acc519fbb8ef82c051db8cfalse0x000000000000000000000000000000000000000020000000000000000023491198891042022-09-15T05:40:31.000Z0xbbf11eed5a269d6c43f9b261b4a8ad57cbe23a9a1cec39a59f5ea0c768d9d3a0
Query with partition filter
SELECT *
FROM `tt-contracts.betswirl_v2_avalanche.Roulette_Roll_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StakingV2_RewardPaid_event

Staking reward distribution events emitted when users claim accrued rewards from staking contracts. Records the recipient address, reward token contract, and reward amount paid out.
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_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_rewardsTokenSTRINGContract address of the reward token being distributed. Hex-encoded, 0x-prefixed, 42-character string.
in_rewardSTRINGContract address of the reward token being distributed or claimed. Hex-encoded, 0x-prefixed, 42-character string.
addressin_userremovedin_rewardlog_indexblock_numberblock_timestampin_rewardsTokentransaction_hash
0x9913effa744b72385e537e092710072d21f8bc980x0ec9efc8c5305978cb957c74b228d4949f5e9dd0false44902521138589636533348649562023-09-07T03:22:56.000Z0xb31f66aa3c1e785363f0875a1b74e27b85fd66c70xb11975dadd4b2b577de7a4fd6f35f81276c99032a07b6a60d063c64c34dad013
0x9913effa744b72385e537e092710072d21f8bc980x671675805456d04165f6e03f71ab2b92f63e01b8false48808912360534284512348839482023-09-07T14:41:26.000Z0xb31f66aa3c1e785363f0875a1b74e27b85fd66c70x7a77969ce98d21a49252ec3e0353f728083390afd933bbbf6d494260b339f922
0x9913effa744b72385e537e092710072d21f8bc980x671675805456d04165f6e03f71ab2b92f63e01b8false29094544431313900710348669542023-09-07T04:34:27.000Z0xb31f66aa3c1e785363f0875a1b74e27b85fd66c70x6a99b2f445a4572ccae8737923457fc8975ba782970e8cd10fc958075eae1dab
Query with partition filter
SELECT *
FROM `tt-contracts.betswirl_v2_avalanche.StakingV2_RewardPaid_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100