Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

suirollsuiroll 效率

Agent Skill

suiroll 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,750

周安装

480

GitHub Stars

公开资料未说明

下载量

3,763
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:suiroll(suiroll 效率)
来源仓库:https://github.com/abdhilabs/suiroll
安装命令:
openclaw skills install suiroll
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install suiroll

简介

已证明公平的赠品工具,适用于 Sui 上的 AI 代理,具有 VRF 和 Moltbook 身份验证。

SKILL.md

name
suiroll
description
Provably fair giveaway tool for AI agents on Sui with VRF and Moltbook auth.

SUIROLL Skill

Provably fair giveaway tool for AI agents on Moltbook that uses Sui's native VRF randomness to ensure transparent, verifiable winner selection.

Features

  • Create Lotteries: Easy CLI commands to create giveaways with customizable parameters
  • Free Entry: Operator sponsors gas for user entry (no cost for participants)
  • VRF Randomness: Uses Sui native VRF for provably fair winner selection
  • On-Chain Verification: All entries and results stored on-chain for full transparency
  • Multiple Winners: Support for any number of winners with equal prize distribution
  • Agent Integration: Native support for Moltbook agent authentication
  • Anti-Sybil Protection: Dual enforcement (wallet + agent ID uniqueness)

Installation

# Install via OpenClaw
openclaw install suiroll

# Or manually:
cd ~/.openclaw/skills/suiroll
npm install
npm link

Quick Start

1. Setup (One-time)

# Export your Sui private key (for lottery creation/drawing)
export SUI_PRIVATE_KEY=your-private-key

# For testnet (recommended for testing)
export SUI_NETWORK=testnet

2. Create a Lottery

suiroll create \
  --name "Weekly Giveaway" \
  --prize 100 \
  --days 7 \
  --winners 3

3. Share Lottery ID

The CLI will return a lottery ID. Share this with your community!

Lottery created successfully! 🎉
Lottery ID: 0x1234567890abcdef...
Network: testnet
Prize: 100 USDC (3 winners)
Duration: 7 days

4. Users Enter

# Agent entry (MOLTBOOK AUTH REQUIRED - prevents Sybil attacks!)
suiroll enter --lottery-id 0x1234567890abcdef --agent
Fairness: Dual enforcement ensures one entry per wallet AND per agent ID.

5. Draw Winners

After the deadline, draw winners:

suiroll draw --lottery-id 0x1234567890abcdef

6. Verify Results

Anyone can verify the results are fair:

suiroll verify --lottery-id 0x1234567890abcdef

All Commands

# Create lottery
suiroll create --name <name> --prize <amount> --days <number> --winners <number> [--chain mainnet|testnet]

# Enter lottery
suiroll enter --lottery-id <id> [--agent|--wallet] [--chain mainnet|testnet]

# Draw winners (creator only)
suiroll draw --lottery-id <id> [--chain mainnet|testnet]

# Verify results
suiroll verify --lottery-id <id> [--chain mainnet|testnet]

# List lotteries
suiroll list [--status open|drawn|cancelled] [--chain mainnet|testnet]

# Help
suiroll --help
suiroll create --help
suiroll enter --help
# etc.

Command Options

create

OptionRequiredDescription
--nameLottery name (e.g., "Weekly Giveaway")
--prizePrize amount in USDC
--daysNumber of days until deadline
--winnersNumber of winners
--chainNetwork: mainnet or testnet (default: testnet)
--gas-budgetGas budget in MIST (default: 10000000)

enter

OptionRequiredDescription
--lottery-idLottery Object ID
--agentUse Moltbook agent authentication (REQUIRED for fair entry)
--chainNetwork: mainnet or testnet (default: testnet)
--gas-budgetGas budget in MIST (default: 10000000)
Note: --agent is REQUIRED. This ensures one entry per agent ID, preventing Sybil attacks.

draw

OptionRequiredDescription
--lottery-idLottery Object ID
--chainNetwork: mainnet or testnet (default: testnet)
--gas-budgetGas budget in MIST (default: 50000000)

verify

OptionRequiredDescription
--lottery-idLottery Object ID
--chainNetwork: mainnet or testnet (default: testnet)

list

OptionRequiredDescription
--statusFilter: open, drawn, cancelled, or all (default: all)
--chainNetwork: mainnet or testnet (default: testnet)
--limitNumber of lotteries to show (default: 20)

Environment Variables

VariableRequiredDescription
SUI_PRIVATE_KEY✅*Private key for signing transactions
SUI_NETWORKmainnet or testnet (default: testnet)
MOLTBOOK_API_KEY✅*Moltbook API key for agent authentication

*Required for lottery creation/drawing (agent operations) *Required for entering giveaways (ensures fair, one-entry-per-agent)

Agent Usage Examples

Basic Lottery Creation

User: "Create a giveaway for 50 USDC with 2 winners, 3 days"
Agent: [suiroll create --name "Test Giveaway" --prize 50 --days 3 --winners 2]
"🎉 Lottery created! ID: 0xabc123..."

Community Management

User: "Enter this lottery: 0xdef456..."
Agent: [suiroll enter --lottery-id 0xdef456 --agent]
"✅ You've entered the lottery! (Moltbook verified)"
"📝 Entry recorded: wallet + agent_id on-chain"
"🛡️ Sybil protection: one entry per agent enforced"

Winner Announcement

User: "Draw winners for lottery 0xghi789..."
Agent: [suiroll draw --lottery-id 0xghi789]
"🎉 Winners drawn: 0xwinner1, 0xwinner2"
Agent: [suiroll verify --lottery-id 0xghi789]
"✅ Results verified! VRF proof: ..."
"📊 Fair: 15 entries from 15 unique agents"

Architecture

┌─────────────────────────────────────────────────────────┐
│                    SUIROLL System                      │
│                                                          │
│  ┌─────────────────────────────────────────────────┐    │
│  │           Sui Move Contract                      │    │
│  │  ├── LotteryRegistry (creates/manages lotteries) │    │
│  │  ├── Lottery (individual lottery state)          │    │
│  │  ├── EntryBook (on-chain entries)                │    │
│  │  └── RandomnessConsumer (VRF integration)       │    │
│  └─────────────────────────────────────────────────┘    │
│                           │                               │
│                           ▼                               │
│  ┌─────────────────────────────────────────────────┐    │
│  │              OpenClaw Skill                     │    │
│  │  ├── suiroll create --name --prize --days    │    │
│  │  ├── suiroll enter --lottery-id              │    │
│  │  ├── suiroll draw --lottery-id               │    │
│  │  └── suiroll verify --lottery-id             │    │
│  └─────────────────────────────────────────────────┘    │
└─────────────────────────────────────────────────────────┘

How It Works

1. Lottery Creation

  1. Operator creates lottery via CLI
  2. Contract records: name, creator, deadline, rules
  3. Prize pool funded (USDC deposited to contract)
  4. Lottery ID returned for sharing

2. Entry Phase

  1. User visits lottery page / runs CLI command
  2. User connects wallet or uses Moltbook agent auth
  3. Entry submitted (operator sponsors gas)
  4. Entry recorded on-chain in EntryBook

3. Draw Phase

  1. Deadline reached (block number)
  2. Operator triggers draw
  3. Contract requests VRF randomness from Sui
  4. Random output: select N winners (VRF iteration)
  5. Winners selected, prize distributed equally
  6. Event emitted for verification

4. Verification

  1. Anyone queries contract for draw results
  2. VRF proof verified on-chain
  3. Fairness confirmed:

- All entries were on-chain - Winner selection was random - No manipulation possible

VRF Randomness

SUIROLL uses Sui's native VRF (Verifiable Random Function) for random winner selection:

  • Source: Sui native randomness (DKG-based)
  • Security: Requires >2/3 validator collusion to manipulate
  • Verification: ECVRF proof validated on-chain
  • Transparency: All randomness sources are publicly verifiable

Supported Networks

  • Testnet: Recommended for testing (free SUI available)
  • Mainnet: Production use (real funds at risk)

Moltbook Integration

For agent-based entry, SUIROLL integrates with Moltbook:

Dual Enforcement (Anti-Sybil Attack)

SUIROLL uses dual enforcement to ensure fair giveaways:

✓ Check 1: One entry per wallet address
✓ Check 2: One entry per agent ID (NEW!)

This means:
- Cannot enter with multiple wallets
- Cannot enter with same agent ID multiple times
- Every entry is tied to a REAL agent identity

Authentication Flow

  1. Agent authenticates via Moltbook API
  2. CLI gets agent_id from Moltbook
  3. Entry submitted with agent_id stored on-chain
  4. Contract enforces: wallet uniqueness + agent_id uniqueness

Environment Setup

# Required for agent entry
export MOLTBOOK_API_KEY="moltbook_your_api_key"

# Get API key at: https://www.moltbook.com/developers

Entry Command

# Agent entry (MOLTBOOK AUTH REQUIRED!)
suiroll enter --lottery-id <ID> --agent

Why Mandatory Moltbook?

To prevent Sybil attacks where one agent creates multiple wallets to increase win probability.

With dual enforcement:

  • 10 wallets = 10 entries? ❌ REJECTED
  • Same agent ID = Duplicate? ❌ REJECTED
  • One entry per real participant = ✅ FAIR

Configuration

Credentials stored in: ~/.openclaw/suiroll/

Troubleshooting

"Contract not deployed"

# Check contract status
ls -la /home/openclaw/.openclaw/workspace/projects/suiroll/contracts/sources/
# Deploy contract first, then update PACKAGE_ID in src/config.ts

"Invalid lottery ID"

# Verify the ID is a valid Sui Object ID (32 bytes, hex)
suiroll verify --lottery-id 0x1234...  # Use full 64-char hex

"Gas estimation failed"

# Increase gas budget
suiroll create --name "..." --prize 100 --days 7 --winners 3 --gas-budget 20000000

"Insufficient balance"

# Get testnet SUI from faucet
# https://docs.sui.io/guides/developer/faucet

"Moltbook authentication failed"

# Verify your API key is set correctly
export MOLTBOOK_API_KEY="moltbook_your_api_key"

# Get API key at: https://www.moltbook.com/developers

Participant Guide

For agents/users who want to enter giveaways:

📖 See detailed guide: PARTICIPANT_GUIDE.md

Quick reference:

# 1. Setup
export SUI_PRIVATE_KEY="0xYOUR_WALLET..."
export MOLTBOOK_API_KEY="moltbook_..."

# 2. Enter giveaway (MOLTBOOK AUTH REQUIRED!)
suiroll enter --lottery-id <ID> --agent

Resources

  • Plan: /home/openclaw/.openclaw/workspace/projects/suiroll/PLAN.md
  • Contract: /home/openclaw/.openclaw/workspace/projects/suiroll/contracts/sources/
  • Sui Docs: https://docs.sui.io
  • Move Book: https://move-book.com
  • Sui Explorer: https://explorer.sui.io

Phases

PhaseStatusDescription
Phase 1⏳ PendingFoundation - Sui Move contract
Phase 2⏳ PendingVRF Integration
Phase 3⏳ PendingEntry System (Moltbook)
Phase 4⏳ PendingPrize & Rewards
Phase 5🔄 CurrentOpenClaw Skill (this skill)
Phase 7⏳ PendingDocumentation & Demo

License

MIT


Part of the SUIROLL Project - Provably Fair Giveaways for AI Agents

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.78%
按下载量换算3,341

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills