← 返回
开发者工具 中文

Smart Accounts

Deploy and manage multi-signature smart accounts. Use when you or the user want to create a smart wallet, deploy a multi-sig, add or remove owners, change th...
部署和管理多签智能账户。适用于创建智能钱包、部署多签、添加或移除所有者、更改阈值等操作。
rachidjarray-hk-qa-fdt
开发者工具 clawhub v0.1.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 532
下载
💾 3
安装
1
版本
#latest

概述

Smart Account Management

Deploy multi-signature smart accounts on any supported EVM chain and manage their ownership (add/remove owners, change signing threshold).

Confirm wallet is authenticated

fdx status

If the wallet is not authenticated, refer to the authenticate skill.

Deploying a Smart Account

Create a new smart account on a specific chain:

fdx call deploySmartAccount \
  --chainKey <chain>

deploySmartAccount Parameters

ParameterRequiredDescription
-------------------------------------------------------------------------------------------------
--chainKeyYesBlockchain to deploy on (e.g. ethereum, polygon, base, arbitrum)
--initialOwnersNoComma-separated list of owner addresses
--thresholdNoNumber of signatures required to execute transactions

Examples

# Deploy a simple smart account on Ethereum
fdx call deploySmartAccount --chainKey ethereum

# Deploy a 2-of-3 multi-sig
fdx call deploySmartAccount \
  --chainKey ethereum \
  --initialOwners 0xOwner1...,0xOwner2...,0xOwner3... \
  --threshold 2

Managing Ownership

Add owners, remove owners, or change the signing threshold on an existing smart account:

fdx call manageSmartAccountOwnership \
  --chainKey <chain> \
  --accountAddress <smartAccountAddress> \
  --action <action>

manageSmartAccountOwnership Parameters

ParameterRequiredDescription
------------------------------------------------------------------------------------------------
--chainKeyYesBlockchain of the smart account
--accountAddressYesSmart account address to manage
--actionYesAction to perform (e.g. addOwner, removeOwner, changeThreshold)
--ownerAddressNoOwner address to add or remove (required for addOwner/removeOwner)
--newThresholdNoNew signing threshold (required for changeThreshold)

Examples

# Add a new owner
fdx call manageSmartAccountOwnership \
  --chainKey ethereum \
  --accountAddress 0xSmartAccount... \
  --action addOwner \
  --ownerAddress 0xNewOwner...

# Remove an owner
fdx call manageSmartAccountOwnership \
  --chainKey ethereum \
  --accountAddress 0xSmartAccount... \
  --action removeOwner \
  --ownerAddress 0xOldOwner...

# Change the threshold to 3-of-5
fdx call manageSmartAccountOwnership \
  --chainKey ethereum \
  --accountAddress 0xSmartAccount... \
  --action changeThreshold \
  --newThreshold 3

Viewing Smart Account Details

Check the smart account's holdings and activity:

fdx call getWalletOverview \
  --chainKey <chain> \
  --accountAddress <smartAccountAddress>

Flow

  1. Check authentication with fdx status
  2. Deploy a smart account with fdx call deploySmartAccount
  3. Note the returned smart account address
  4. Manage ownership as needed with fdx call manageSmartAccountOwnership
  5. Use the smart account address in send-tokens or swap-tokens skills via --fromAccountAddress

Important: Ownership changes on multi-sig accounts are sensitive operations. Always confirm the action, addresses, and new threshold with your human before executing. Removing too many owners or setting the threshold too high can lock the account.

Prerequisites

  • Must be authenticated (fdx status to check, see authenticate skill)
  • Smart accounts are deployed on EVM chains only (not Solana)

Error Handling

  • "Not authenticated" — Run fdx setup first, or see authenticate skill
  • "Invalid account address" — Verify the smart account address exists on the specified chain
  • "Threshold exceeds owner count" — Threshold must be ≤ number of owners

版本历史

共 1 个版本

  • v0.1.0 当前
    2026-03-29 23:59 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,414
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 672 📥 324,462
productivity

Yield Strategies

rachidjarray-hk-qa-fdt
在多条链和协议中发现、存入并提取 DeFi 收益策略,适用于您或用户想要获取收益时使用,...
★ 0 📥 596