"BingoRush" Half-Screen Event Description
Used in live broadcast apps to request period results, player betting information, win/loss results, and follow-up betting operations. It facilitates user interaction within the app.
1、Players' betting results notification
The platform obtains the betting information of each player and then synchronizes it to the live broadcast room.
Step: op:"Bet",
Data parameter description
gameId
number
Game ID
name
string
Merchant Player Name
id
string
Merchant Player ID
betType
number
Betting type: 1:Graphic mode, 2:Jackpot, 3:Combo mode
ball
number[]
15 number balls to bet on
currency
string
Currency name (USDT, etc., see the currency list for details)
amount
number
Bet amount
Example
{
action: 'sendData',
data:{
op:"Bet",
data:[
{
gameId:number, //Game ID
name:"hhsayy22" //Merchant Player Name
id:"12132111313", //Merchant Player ID
// Betting list
bets:{
betType: 0, //Bet type
ball: [8,22,34,57,66,7,21,45,52,69,4,27,0,51,68], //15 number balls to bet on
currency:"usdt", //Currency name (USDT...)..)
amount:number; //Place a bet
}
}
]
}
}
2、Lottery result notification
Lottery result notification
Step: op:"ShowRound",
Data parameter description
roundId
number
Issue number
nums
number[]
Numerical results display
Example
{
action: 'sendData',
data: {
op:"Bet",
data:{
roundId:202504090002, //Issue number
nums:[3, 1, 25, 38, 51, 49, 12, 26, 27, 9, 8, 39, 23, 50, 32, 16, 17, 18, 19, 20, 21, 22, 30, 24, 14, 41, 46, 28, 29, 42, 35, 36, 44, 45] //Digital display, 40 balls are opened in each game, the first 30 related graphics are rewarded, and the last ten are additional
}
}
3、Winning player winning amount notification
Used to synchronize winning amount of players in the live broadcast room
Step: op:"Reward",
Data parameter description
id
string
Merchant Player ID
name
string
Merchant Player Name
currency
string
Currency name (USDT, etc., see the currency list for details)
money
number
The player's winning amount
Example
{
action: 'sendData',
data: {
op:"Bet",
data:{
id:"12132111313", //Merchant Player IDd
name:"hhsayy22" //Merchant Player Name
currency:"usdt, //Currency name (USDT, etc., see the currency list for details)
money:0.05 //The player's winning amount
}
}
}
4、Player follow-up investment request
Refer to the demo code:
// Follow-up investment
const FollowUpInvestment = () => {
if(!postData.data.data){
return;
}
iframe.contentWindow.postMessage(JSON.stringify(postData), '*');
}
Step: op:"Follow",
Data parameter description
followCnt
number
How many cards to follow
Example
{
action: 'sendData',
data:{
op:"Follow",
data:[
{
betType: 0, //Bet type
ball: [8,22,34,57,66,7,21,45,52,69,4,27,0,51,68], //15 number balls to bet on
currency:"usdt", //Currency name (USDT, etc., see the currency list for details)
amount:number; //Bet amount
}
]
}
}
Last updated