← 返回
数据分析 中文

INCLAWNCH UBI Staking

Stake and unstake INCLAWNCH tokens in the on-chain UBI staking contract on Base. Query treasury stats, wallet positions, APY estimates, and top stakers. All...
在 Base 链上的 UBI 质押合约中质押和解质押 INCLAWNCH 代币,查询国库统计、钱包仓位、APY 估算及前十大质押者。所有...
stuart5915
数据分析 clawhub v1.0.3 1 版本 99860.9 Key: 无需
★ 0
Stars
📥 718
下载
💾 16
安装
1
版本
#latest

概述

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

版本历史

共 1 个版本

  • v1.0.3 当前
    2026-03-29 12:33 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

data-analysis

Data Analysis

ivangdavila
{"answer":"数据分析与可视化。查询数据库、生成报告、自动化电子表格,将原始数据转化为清晰可行的见解。适用于:(1) 您……"}
★ 198 📥 65,167
data-analysis

A股量化 AkShare

mbpz
A股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
★ 165 📥 60,086
data-analysis

Excel / XLSX

ivangdavila
创建、检查和编辑 Microsoft Excel 工作簿及 XLSX 文件,支持可靠的公式、日期、类型、格式、重算及模板保留功能。
★ 368 📥 140,582