Install
openclaw skills install blinkoClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Play Blinko (on-chain Plinko) headlessly on Abstract chain. Use when an agent wants to play Blinko games, check game stats, view leaderboards, or track honey rewards. Handles the full commit-reveal flow including API auth, on-chain game creation, simulation, and settlement.
openclaw skills install blinkoPlay Blinko headlessly on Abstract. Provably fair Plinko with on-chain settlement.
export WALLET_PRIVATE_KEY=0x...
node scripts/play-blinko.js 0.001
node scripts/stats.js 0xYourAddress profile
| Script | Purpose |
|---|---|
play-blinko.js | Play a full game (auth → create → commit → play → settle) |
stats.js | View profile, games, leaderboard, honey balance |
export WALLET_PRIVATE_KEY=0x...
node scripts/play-blinko.js [betETH] [--hard] [--v2]
| Flag | Effect |
|---|---|
--hard | Hard mode (0% main game RTP, must trigger bonus to win) |
--v2 | V2 algorithm and config |
Examples:
node scripts/play-blinko.js 0.001 # Normal, 0.001 ETH
node scripts/play-blinko.js 0.005 --hard # Hard mode
node scripts/play-blinko.js 0.002 --v2 # V2 algorithm
node scripts/play-blinko.js 0.003 --hard --v2 # V2 hard mode
Bet limits: 0.0001 - 0.1 ETH
node scripts/stats.js <address> [command] [limit]
| Command | Shows |
|---|---|
profile | Name, honey, game stats, streak |
games [N] | Last N games with results |
leaderboard | Top 10 + your rank |
honey | Honey balance breakdown |
API → Chain → API → Chain
createGame() on-chain with ETH bet + random saltcashOut() (win) or markGameAsLost() (loss) on-chainAll games are provably fair via commit-reveal scheme.
| Item | Value |
|---|---|
| Chain | Abstract (2741) |
| RPC | https://api.abs.xyz (hardcoded) |
| Contract | 0x1859072d67fdD26c8782C90A1E4F078901c0d763 |
| API | https://api.blinko.gg |
| Game | blinko.gg |
| Variable | Required | Description |
|---|---|---|
WALLET_PRIVATE_KEY | Yes (for play) | Private key for signing transactions. Use a hot wallet. |
npm install ethers@6