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

inclawnch-staking爪入桩

Agent Skill

inclawnch-staking 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

14,736

周安装

633

GitHub Stars

公开资料未说明

下载量

5,165
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install inclawnch-staking

简介

在 Base 链上 UBI 质押合约中管理 INCLAWNCH 代币的质押与赎回。

  • 适用于 OpenClaw 环境中需要处理链上质押、收益查询和财务统计的场景。
  • 通过 clawhub 安装并使用,支持 APY 估算与利益相关者分析。
  • 需确认钱包权限、合约地址及网络环境,避免误操作导致资产损失。
  • inclawnch-staking 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
inclawnch-staking
description
>
version
1.1.0
metadata
openclaw
emoji
🌱
homepage
https://inclawbate.com/skills
requires
bins
["curl"]

INCLAWNCH UBI Staking — On-Chain Staking for AI Agents

Stake INCLAWNCH tokens in the InclawnchStaking smart contract on Base. Unstake anytime, claim rewards, toggle auto-compounding, and query treasury stats via a public read API.

All write operations are on-chain transactions that require the caller to sign with their wallet. No API key needed for reads.

Quick Start

# Get treasury stats + top stakers
curl "https://inclawbate.com/api/inclawbate/staking"

# Get a specific wallet's staking position
curl "https://inclawbate.com/api/inclawbate/staking?wallet=0x91b5c0d07859cfeafeb67d9694121cd741f049bd"

# Read the machine-readable skill spec
curl "https://inclawbate.com/api/inclawbate/skill/staking"

Write Capabilities (On-Chain Transactions)

All write operations are signed transactions sent to the InclawnchStaking contract on Base. Each requires the caller's wallet to sign, ensuring only the token owner can modify their position.

Staking Contract

Chain:    Base (chainId 8453)
Contract: 0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6  (InclawnchStaking proxy)
Token:    0xB0b6e0E9da530f68D713cC03a813B506205aC808  (INCLAWNCH ERC-20)

Stake INCLAWNCH

Two-step process — both are on-chain transactions signed by the wallet:

Step 1: Approve the staking contract to spend your INCLAWNCH:

To:       0xB0b6e0E9da530f68D713cC03a813B506205aC808  (INCLAWNCH token)
Function: approve(address spender, uint256 amount)
Selector: 0x095ea7b3
Args:     spender = 0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6, amount = tokens in wei

Step 2: Stake into the contract:

To:       0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6  (InclawnchStaking)
Function: stake(uint256 amount)
Selector: 0xa694fc3a
Args:     amount = tokens in wei (1 INCLAWNCH = 1e18 wei)

Stakers begin earning rewards immediately. Rewards accrue continuously (per-second drip).

Unstake INCLAWNCH

No lock period. Tokens returned to your wallet in the same transaction.

To:       0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6  (InclawnchStaking)
Function: unstake(uint256 amount)
Selector: 0x2e17de78
Args:     amount = tokens in wei to withdraw

Claim Rewards

Withdraw accrued rewards to your wallet:

To:       0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6  (InclawnchStaking)
Function: claim()
Selector: 0x4e71d92d

Claim and Restake

Claim accrued rewards and immediately restake them (compound):

To:       0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6  (InclawnchStaking)
Function: claimAndRestake()
Selector: 0xf755d8c3

Toggle Auto-Compound

When enabled, rewards are automatically restaked on claim events:

To:       0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6  (InclawnchStaking)
Function: setAutoRestake(bool enabled)
Selector: 0x501cdba4
Args:     enabled = true (1) or false (0)

Exit (Unstake All + Claim)

Withdraw entire staked balance and all accrued rewards in one transaction:

To:       0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6  (InclawnchStaking)
Function: exit()
Selector: 0xe9fad8ee

View Functions (On-Chain Reads)

Query the contract directly for real-time data:

FunctionSelectorReturns
balanceOf(address)0x70a08231User's staked balance (wei)
earned(address)0x008cc262User's unclaimed rewards (wei)
autoRestake(address)0x5ccb a116Whether auto-compound is on
totalStaked()0x817b1cd2Total INCLAWNCH staked (wei)
stakerCount()0xdff69787Number of stakers
rewardRate()0x7b0a47eeRewards per second (wei)
rewardPoolBalance()0x7a5c08aeRemaining reward pool (wei)
periodEnd()0x506ec095Reward period end (unix timestamp)

Read Capabilities (Public API)

Get Treasury Stats (no params)

Returns the full UBI treasury overview plus top 20 stakers leaderboard.

curl "https://inclawbate.com/api/inclawbate/staking"

Treasury fields:

FieldDescription
total_stakersNumber of unique staking wallets
total_stakedTotal INCLAWNCH staked
tvl_usdTotal value locked in USD
weekly_distribution_rateINCLAWNCH distributed per week
daily_distribution_rateINCLAWNCH distributed per day
total_distributedAll-time INCLAWNCH distributed
total_distributed_usdAll-time USD value distributed
estimated_apyCurrent estimated staking APY %
wallet_cap_pctMax % any single wallet receives per distribution

Top stakers fields:

FieldDescription
x_handleStaker's X/Twitter handle
x_nameDisplay name
total_stakedTotal INCLAWNCH staked
staked_usdUSD value of stake
stake_countNumber of individual stake transactions
staking_sinceEarliest stake timestamp

Get Wallet Position (?wallet=0x...)

Returns everything above plus the wallet's specific staking position.

curl "https://inclawbate.com/api/inclawbate/staking?wallet=0xYourWallet"

Wallet position fields:

FieldDescription
total_stakedWallet's total INCLAWNCH staked
staked_usdUSD value of wallet's stake
share_pctWallet's share of the total pool (%)
estimated_daily_rewardEstimated INCLAWNCH received per day
estimated_weekly_rewardEstimated INCLAWNCH received per week
auto_stake_enabledWhether rewards auto-compound
total_rewards_receivedAll-time INCLAWNCH rewards earned
active_stakesArray of individual stake records

How UBI Staking Works

  1. Approve — Approve the staking contract to spend your INCLAWNCH (on-chain tx, signed by wallet).
  2. Stake — Call stake(amount) on the contract (on-chain tx, signed by wallet).
  3. Earn — Rewards drip continuously per-second from the reward pool, proportional to your stake.
  4. Claim — Call claim() to withdraw rewards, or claimAndRestake() to compound.
  5. Auto-compound — Call setAutoRestake(true) so rewards automatically restake.
  6. Unstake — Call unstake(amount) anytime. No lock period, instant withdrawal.

Token Info

DetailValue
TokenINCLAWNCH
ChainBase (chainId 8453)
Token Contract0xB0b6e0E9da530f68D713cC03a813B506205aC808
Staking Contract0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6
BaseScan (Token)https://basescan.org/token/0xB0b6e0E9da530f68D713cC03a813B506205aC808
BaseScan (Staking)https://basescan.org/address/0x206C97D4Ecf053561Bd2C714335aAef0eC1105e6

Links

  • Skill Spec (JSON): https://inclawbate.com/api/inclawbate/skill/staking
  • Read Endpoint: https://inclawbate.com/api/inclawbate/staking
  • UBI Dashboard: https://inclawbate.com/ubi
  • Skills Directory: https://inclawbate.com/skills
  • Homepage: https://inclawbate.com

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

75.05%
按下载量换算3,876

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills