Jump to related tools in the same category or review the original source on GitHub.

Git & GitHub @tolibear Updated 2/11/2026

Blinko OpenClaw Plugin & Skill | ClawHub

Looking to integrate Blinko into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate git & github tasks instantly, without having to write custom tools from scratch.

What this skill does

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.

Install

npx clawhub@latest install blinko

Full SKILL.md

Open original
Metadata table.
nameversiondescription
blinko1.1.0Play 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.

SKILL.md content below is scrollable.

Blinko

Play Blinko headlessly on Abstract. Provably fair Plinko with on-chain settlement.

Important

  • This skill signs on-chain transactions that spend real ETH. Use a dedicated hot wallet with only the funds you're willing to risk.
  • Each game costs gas (Abstract chain) on top of your bet amount.
  • Your private key is used locally to sign messages and transactions. It is sent to the Abstract RPC and Blinko API as signed outputs only, never as plaintext.
  • Agents can invoke this skill autonomously when installed.

Quick Start

Play a Game

export WALLET_PRIVATE_KEY=0x...
node scripts/play-blinko.js 0.001

Check Stats

node scripts/stats.js 0xYourAddress profile

Scripts

Script Purpose
play-blinko.js Play a full game (auth → create → commit → play → settle)
stats.js View profile, games, leaderboard, honey balance

Play

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

Stats

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

How It Works

API → Chain → API → Chain
  1. Login — Sign message with wallet, get JWT
  2. Create — API generates game seed, returns server signature
  3. Commit — Call createGame() on-chain with ETH bet + random salt
  4. Play — API combines seeds, simulates physics, returns result
  5. Settle — Call cashOut() (win) or markGameAsLost() (loss) on-chain

All games are provably fair via commit-reveal scheme.

Game Mechanics

  • 10 balls dropped through 8 rows of pins
  • Bin multipliers: 2x, 1.5x, 0.5x, 0.2x, 0.1x, 0.1x, 0.2x, 0.5x, 1.5x, 2x
  • Bonus: Collect B-O-N-U-S letters to trigger bonus rounds (up to level 9)
  • Honey: Earned by hitting special pins (requires a referrer)

Key Information

Item Value
Chain Abstract (2741)
RPC https://api.abs.xyz (hardcoded)
Contract 0x1859072d67fdD26c8782C90A1E4F078901c0d763
API https://api.blinko.gg
Game blinko.gg

Environment Variables

Variable Required Description
WALLET_PRIVATE_KEY Yes (for play) Private key for signing transactions. Use a hot wallet.

Dependencies

npm install ethers@6
Original Repository URL: https://github.com/openclaw/skills/blob/main/skills/tolibear/blinko
Latest commit: https://github.com/openclaw/skills/commit/c95c834d584c9b357b932bc33e899e7dcb0a3e48

Related skills

If this matches your use case, these are close alternatives in the same category.

agent-commons

Consult, commit, extend, and challenge reasoning chains in the Agent Commons - a shared reasoning layer for AI agents.

agent-team-orchestration

Orchestrate multi-agent teams with defined roles, task lifecycles, handoff protocols, and review workflows. Use when: (1) Setting up a team of 2+ agents with different specializations, (2) Defining task routing and lifecycle (inbox → spec → build → review → done), (3) Creating handoff protocols between agents, (4) Establishing review and quality gates, (5) Managing async communication and artifact sharing between agents.

agentdo

Post tasks for other AI agents to do, or pick up work from the AgentDo task queue (agentdo.dev). Use when: (1) you need something done that you can't do yourself (scraping, data collection, image conversion, research, verification), (2) you want to offer your skills to other agents, (3) you need a human for a physical or judgment task. Triggers on: 'post a task', 'find work', 'agentdo', 'task queue', 'get another agent to', 'I need help with', 'outsource this'.

agentgate

API gateway for personal data with human-in-the-loop write approval. Connects agents to GitHub, Bluesky, Google Calendar, Home Assistant, and more — all through a single API with safety controls.

airadar

Distill the signal around AI-native tools/apps and their GitHub home bases: fast-growing, hyped, well-funded projects plus repos with rapidly rising stars or trending status. Use when the user asks for a focused pulse on AI tooling, emergent apps, or repo movements that could meaningfully reshape workflows or standards.

alex-session-wrap-up

End-of-session automation that commits unpushed work, extracts learnings, detects patterns, and persists rules. Uses gpt-4o-mini for pattern detection. Runs at session end or on-demand.