Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计提醒

auto-voting-relayers自动投票中继器

Agent Skill

auto-voting-relayers 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

857

周安装

35

GitHub Stars

5

下载量

277
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:auto-voting-relayers(自动投票中继器)
来源仓库:https://github.com/vechain/vechain-ai-skills
仓库路径:skills/auto-voting-relayers
安装命令:
npx skills add https://github.com/vechain/vechain-ai-skills --skill auto-voting-relayers
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/vechain/vechain-ai-skills --skill auto-voting-relayers

简介

auto-voting-relayers 提供 VeBetterDAO 自动投票与中继系统的完整上下文,涵盖智能合约、节点管理与奖励机制。

  • 它帮助用户理解如何配置自动投票流程,使中继服务代为执行链上投票与奖励申领。
  • 适用于参与 VeChain 生态治理或开发相关 DApp 的开发者快速获取领域知识。
  • 使用前应熟悉 VeChain 钱包操作与智能合约交互方式,确保资产安全。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

VeBetterDAO Auto-Voting & Relayer System

Complete domain knowledge for the auto-voting and relayer ecosystem. This skill provides context for working on any component of the system: smart contracts, relayer node, relayer dashboard, or documentation.

System Overview

VeBetterDAO's auto-voting system lets users automate their weekly X Allocation voting. Users pick favorite apps once, toggle auto-voting on, and relayers (off-chain services) handle the rest: casting votes, claiming rewards, all gasless. Relayers earn a fee from the reward pool. Tokens never leave the user's wallet.

Auto-voting applies only to X Allocation rounds. Governance proposals remain manual-only.

Architecture

Users (toggle auto-voting, set preferences)
    |
    v
Smart Contracts (on-chain logic)
    - XAllocationVoting (v8): auto-voting state, vote execution
    - VoterRewards (v6): reward claiming, fee deduction
    - RelayerRewardsPool (v1): relayer registration, reward distribution
    |
    v
Relayer Nodes (off-chain execution)
    - relayer-node/ (standalone CLI, no monorepo dependency)
    - Monitor rounds, batch vote/claim, loop every 5 min
    |
    v
Relayer Dashboard (monitoring/analytics)
    - apps/relayer-dashboard/ (static Next.js, GitHub Pages)
    - Round analytics, relayer stats, ROI tracking

How It Works (Non-Technical)

For Users

  1. Hold 1+ VOT3, complete 3+ sustainable actions, pass VeBetterPassport
  2. Choose up to 15 apps, toggle auto-voting on
  3. Takes effect next round (not current)
  4. Each week: relayer votes for you, claims your rewards to your wallet
  5. Fee: 10% of rewards (max 100 B3TR/week) - covers all gas costs
  6. While active: no manual voting/claiming allowed
  7. Manual claim fallback: available 5 days after round end if relayer hasn't processed

Auto-Disable Triggers

  • VOT3 drops below 1
  • All selected apps become ineligible
  • Sustainable action threshold not met
  • Bot detection by app owner

For Relayers

  1. Register on-chain by calling registerRelayer() on RelayerRewardsPool (open to anyone)
  2. Run relayer-node with wallet (MNEMONIC or RELAYER_PRIVATE_KEY)
  3. Node auto-discovers users, batches votes + claims
  4. Earn weighted points: vote = 3 pts, claim = 1 pt
  5. After ALL users served, claim proportional share of reward pool
  6. All-or-nothing: if any user missed, nobody gets paid

Apps as Relayers

Apps can register as relayers, ask users to set them as preference, and run a node. They earn relayer fees instead of paying veDelegate for votes. Important: apps should ADD themselves to preference lists, not replace other apps.

vs veDelegate

FeatureveDelegateVeBetterDAO Auto-Voting
X Allocation votingYesYes
Governance votingYes (always "abstain")No (manual only)
Compounding (B3TR->VOT3)AutoManual
Token custodyLeaves walletStays in wallet
CentralizationSingle entityMany relayers
Cost to appsApps pay veDelegateApps earn fees

veDelegate: docs.vedelegate.vet / github.com/vechain-energy/vedelegate-for-dapps

Smart Contracts Detail

XAllocationVoting.sol (v8)

Auto-voting added in v8 via AutoVotingLogicUpgradeable module.

Storage (in AutoVotingLogic library):

  • _autoVotingEnabled: Checkpointed per-user status (changes take effect next round)
  • _userVotingPreferences: Array of app IDs per user (max 15, validated, no duplicates)
  • _totalAutoVotingUsers: Checkpointed total count

Key functions:

toggleAutoVoting(address user)                         // Enable/disable
setUserVotingPreferences(bytes32[] memory appIds)      // Set apps (1-15)
castVoteOnBehalfOf(address voter, uint256 roundId)     // Relayer executes vote
getUserVotingPreferences(address)                      // View preferences
isUserAutoVotingEnabled(address)                       // Current status
isUserAutoVotingEnabledForRound(address, uint256)      // Status at round snapshot
getTotalAutoVotingUsersAtRoundStart()                  // Count at last emission
getTotalAutoVotingUsersAtTimepoint(uint48)             // Historical count

Vote execution (castVoteOnBehalfOf):

  1. Validate early access (registered relayer during window)
  2. Get user preferences, filter eligible apps
  3. Split voting power equally across eligible apps
  4. Cast via internal _countVote()
  5. Register VOTE action on RelayerRewardsPool (3 weight points)

VoterRewards.sol (v6)

V6 added relayer fee integration. Fee deduction happens HERE during claimReward().

V6 storage: xAllocationVoting, relayerRewardsPool

Fee flow in claimReward(uint256 cycle, address voter):

  1. Check user had auto-voting at round start (checkpointed)
  2. Calculate raw rewards (voting + GM reward)
  3. If auto-voting: fee = min(totalReward * 10/100, 100 B3TR)
  4. Fee proportionally split between voting and GM reward
  5. Fee approved + deposited to RelayerRewardsPool.deposit(fee, cycle)
  6. registerRelayerAction(msg.sender, voter, cycle, CLAIM) - credits caller with 1 weight point
  7. Net reward transferred to voter wallet

Important: msg.sender calling claimReward() IS the relayer credited for CLAIM action.

Early access: During window, validateClaimDuringEarlyAccess() reverts if caller is the voter or not a registered relayer.

RelayerRewardsPool.sol (v1)

Manages registration, action tracking, reward distribution.

Storage:

totalRewards[roundId]                    // Pool amount (funded by fees)
relayerWeightedActions[roundId][relayer] // Per-relayer weighted work
totalWeightedActions[roundId]            // Expected weighted total
completedWeightedActions[roundId]        // Completed weighted total
registeredRelayers[address]              // Registration mapping
relayerAddresses[]                       // All registered addresses
voteWeight = 3                           // Points per vote action
claimWeight = 1                          // Points per claim action
earlyAccessBlocks = 432,000              // ~5 days on VeChain
relayerFeePercentage = 10               // 10%
feeCap = 100 ether                       // 100 B3TR

Reward formula:

relayerShare = (relayerWeightedActions / completedWeightedActions) * totalRewards

Claimability: isRewardClaimable(roundId) requires:

  • Round ended (emissions.isCycleEnded(roundId))
  • All work done (completedWeightedActions >= totalWeightedActions)

Registration (open to anyone):

  • registerRelayer() — self-registration, callable by anyone
  • unregisterRelayer(address) — callable by admin or the relayer itself
  • setTotalActionsForRound(roundId, userCount) - sets expected = userCount x 2 actions, userCount x 4 weighted
  • reduceExpectedActionsForRound(roundId, userCount) - for ineligible users
  • registerRelayerAction(relayer, voter, roundId, action) - record work
  • deposit(amount, roundId) - fund pool

Early access:

  • Vote window: roundSnapshot + earlyAccessBlocks
  • Claim window: roundDeadline + earlyAccessBlocks
  • During: only registered relayers, user can't self-act
  • After: anyone can act

Auto-Voting Lifecycle (Per Round)

Round N: User enables auto-voting + sets preferences (checkpointed)
Round N+1:
  1. startNewRound() - snapshot locks auto-voting status
  2. setTotalActionsForRound(roundId, userCount)
  3. Relayers call castVoteOnBehalfOf() for each user
     - Ineligible users: reduceExpectedActionsForRound()
     - Each successful vote: +3 weighted points to relayer
  4. Round ends (deadline block)
  5. Relayers call VoterRewards.claimReward() for each user
     - Fee deducted and deposited to pool
     - Each successful claim: +1 weighted point to relayer
  6. All actions complete -> pool unlocked
  7. Relayers call RelayerRewardsPool.claimRewards()

Relayer Node (relayer-node/)

Standalone CLI tool. No monorepo dependency.

Deps: @vechain/sdk-core, @vechain/sdk-network, @vechain/vebetterdao-contracts

relayer-node/src/
  index.ts      # Entry, env parsing, main loop, SIGINT
  config.ts     # Mainnet + testnet-staging addresses
  contracts.ts  # 26 view functions + event pagination
  relayer.ts    # Batch vote/claim with isolation/retry
  display.ts    # Terminal UI (box drawing + chalk)
  types.ts      # Shared interfaces

Env vars: MNEMONIC / RELAYER_PRIVATE_KEY, RELAYER_NETWORK, RUN_ONCE, DRY_RUN

Cycle: Discover users from events -> filter voted -> batch castVoteOnBehalfOf -> batch claimReward -> loop 5min

Relayer Dashboard (apps/relayer-dashboard/)

Static Next.js 14 (output: "export"), Chakra UI v3, VeChain Kit, Recharts. GitHub Pages under /b3tr.

Data: Static report.json (hourly GH Action, temporary) + on-chain reads via useCallClause

Pages (state-based nav, not file routing):

  • Home: StatsCards (2x2), RoundsChart, RoundsList, info cards
  • My Relayer: ConnectedWallet view
  • Info: BecomeRelayer + AppsAsRelayers
  • Round detail: /round?roundId=X - 2-col layout, summary/actions/financials

Hooks:

  • contracts.ts - ABIs + addresses from @repo/config
  • useCurrentRoundId - XAllocationVoting.currentRoundId()
  • useTotalAutoVotingUsers - getTotalAutoVotingUsersAtTimepoint()
  • useRegisteredRelayers - getRegisteredRelayers()
  • useRoundRewardStatus - isRewardClaimable() + getTotalRewards()
  • useReportData - fetches /data/report.json
  • useB3trToVthoRate - oracle exchange rate

Commands: yarn relayer:dev:staging, yarn relayer:dev:mainnet, yarn relayer:build:staging, yarn relayer:build:mainnet

Gas Cost Analysis

ActionGasVTHOB3TR equiv
Vote (5-8 apps)~441K~4.41~0.075
Claim~208K~2.08~0.035
Total/user/round~6.49~0.11

Average user: ~10.8k-22.6k VOT3, earns ~90-190 B3TR/round. At 10% fee: ~9-19 B3TR per user into pool. Relayer cost: ~0.11 B3TR. Margin: ~8.9-18.9 B3TR/user.

External Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.69%
按下载量换算104

Claude

30.74%
按下载量换算85

Cursor

17.46%
按下载量换算48

Gemini CLI

9.88%
按下载量换算27

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/vechain/vechain-ai-skills --skill auto-voting-relayers 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills