Comment on page
Integrate Your Own Casino
We provide you with a simple embedded web page that allows you to open your own casino in minutes with simple setup.
You can just use
<iframe>
to embed our gaming page to your own websitehttps://slm.games/embed/games/${Game}?u=${UserID}&tokens=${Tokens}&chains=${Chains}&p=${UserID}
Params | Description | Example |
---|---|---|
Game | Only "Dice" is supported now | Dice |
Tokens | List of tokens your site wants to support | SLM,BNB,BUSD,SOL,EOS |
Chains | List of Chains your site wants to support | BSC,Ethereum,Solana,EOS |
UserID | user id | 1 |
Usable sample:
https://slm.games/embed/games/Dice/?u=1&tokens=SLM,BNB,BUSD,SOL,EOS&chains=BSC,Ethereum,Solana,EOS&p=1
<html>
<head>
<title>Dice of XSli.me</title>
<style>
body {
background-color: #303038;
height: 100vh;
}
.main {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body>
<iframe class="main" src="https://slm.games/embed/games/Dice?u=1&tokens=SLM,BNB,BUSD,EOS,SOL,ETH&chains=Solana,BSC,EOS&p=01"/>
</body>
</html>
Last modified 9mo ago