forked from BankkRoll/Gamba-telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.d.ts
More file actions
29 lines (29 loc) · 728 Bytes
/
types.d.ts
File metadata and controls
29 lines (29 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export interface GameSettledEvent {
[x: string]: any;
user: string;
pool: string;
tokenMint: string;
creator: string;
creatorFee: bigint;
gambaFee: bigint;
poolFee: bigint;
jackpotFee: bigint;
underlyingUsed: bigint;
bonusUsed: bigint;
wager: bigint;
payout: bigint;
multiplierBps: number;
payoutFromBonusPool: bigint;
payoutFromNormalPool: bigint;
jackpotProbabilityUbps: bigint;
jackpotResult: bigint;
nonce: bigint;
clientSeed: string;
resultIndex: bigint;
bet: number[];
jackpotPayoutToUser: bigint;
poolLiquidity: bigint;
rngSeed: string;
nextRngSeedHashed: string;
metadata: string;
}