Smart Wallet
User-Agent Smart Wallet for managing assets and DAO interactions
The Smart Wallet contract (aibtc-user-agent-smart-wallet
) provides a secure interface between a user and an agent for managing assets and interacting with DAOs. It enables key features to allow user self-custody and control and agent interaction with DAO proposals.
Contract Overview
Title: aibtc-user-agent-smart-wallet
Version: 1.0.0
Implements:
aibtc-smart-wallet-traits.aibtc-smart-wallet
traitaibtc-smart-wallet-traits.aibtc-proposals-v2
traitaibtc-smart-wallet-traits.faktory-buy-sell
trait
Print Events
deposit-stx
Emitted when STX is deposited
Amount, sender, caller, recipient
deposit-ft
Emitted when a fungible token is deposited
Amount, asset contract, sender, caller, recipient
withdraw-stx
Emitted when STX is withdrawn
Amount, sender, caller, recipient
withdraw-ft
Emitted when a fungible token is withdrawn
Amount, asset contract, sender, caller, recipient
approve-asset
Emitted when an asset is approved
Asset, approved status, sender, caller
revoke-asset
Emitted when an asset approval is revoked
Asset, approved status, sender, caller
approve-dex
Emitted when a DEX is approved
DEX contract, approved status, sender, caller
revoke-dex
Emitted when a DEX approval is revoked
DEX contract, approved status, sender, caller
set-agent-can-buy-sell
Emitted when agent buy/sell is toggled
Can buy/sell status, sender, caller
buy-asset
Emitted when buying an asset
DEX contract, asset, amount, sender, caller
sell-asset
Emitted when selling an asset
DEX contract, asset, amount, sender, caller
proxy-propose-action
Emitted when proposing an action via proxy
Proposal contract, action, parameters, sender, caller
proxy-create-proposal
Emitted when creating a proposal via proxy
Proposal contract, proposal, sender, caller
vote-on-action-proposal
Emitted when voting on an action proposal
Proposal contract, proposal ID, vote, sender, caller
vote-on-core-proposal
Emitted when voting on a core proposal
Proposal contract, proposal, vote, sender, caller
conclude-action-proposal
Emitted when concluding an action proposal
Proposal contract, proposal ID, action, sender, caller
conclude-core-proposal
Emitted when concluding a core proposal
Proposal contract, proposal, sender, caller
smart-wallet-created
Emitted when the smart wallet is created
Configuration details
Public Functions
Asset Management Functions
deposit-stx
Deposit STX to the smart wallet
amount
: uint
deposit-ft
Deposit fungible tokens to the smart wallet
ft
: ft-trait, amount
: uint
withdraw-stx
Withdraw STX from the smart wallet
amount
: uint
withdraw-ft
Withdraw fungible tokens from the smart wallet
ft
: ft-trait, amount
: uint
approve-asset
Add an asset to the approved list
asset
: principal
revoke-asset
Remove an asset from the approved list
asset
: principal
DAO Interaction Functions
proxy-propose-action
Propose an action to a DAO via proxy
action-proposals
: action-proposals-trait, action
: action-trait, parameters
: buff 2048
proxy-create-proposal
Create a proposal in a DAO via proxy
core-proposals
: core-proposals-trait, proposal
: proposal-trait
vote-on-action-proposal
Vote on an action proposal
action-proposals
: action-proposals-trait, proposalId
: uint, vote
: bool
vote-on-core-proposal
Vote on a core proposal
core-proposals
: core-proposals-trait, proposal
: proposal-trait, vote
: bool
conclude-action-proposal
Conclude an action proposal
action-proposals
: action-proposals-trait, proposalId
: uint, action
: action-trait
conclude-core-proposal
Conclude a core proposal
core-proposals
: core-proposals-trait, proposal
: proposal-trait
Faktory DEX Trading Functions
buy-asset
Buy an asset from a Faktory DEX
faktory-dex
: dao-faktory-dex, asset
: faktory-token, amount
: uint
sell-asset
Sell an asset to a Faktory DEX
faktory-dex
: dao-faktory-dex, asset
: faktory-token, amount
: uint
approve-dex
Add a DEX to the approved list
faktory-dex
: dao-faktory-dex
revoke-dex
Remove a DEX from the approved list
faktory-dex
: dao-faktory-dex
set-agent-can-buy-sell
Set whether the agent can buy/sell assets
canBuySell
: bool
Read-Only Functions
is-approved-asset
Check if an asset is approved
asset
: principal
is-approved-dex
Check if a DEX is approved
dex
: principal
get-balance-stx
Get the STX balance of the smart wallet
None
get-configuration
Get the smart wallet configuration
None
Error Codes
u9000
ERR_UNAUTHORIZED
Caller is not authorized
u9001
ERR_UNKNOWN_ASSET
Asset is not in the approved list
u9002
ERR_OPERATION_FAILED
Operation failed
u9003
ERR_BUY_SELL_NOT_ALLOWED
Buy/sell operation not allowed for agent
Security Features
Only the user can withdraw assets
Only the user and agent can interact with DAOs
Assets must be explicitly approved before they can be deposited or withdrawn
DEXes must be explicitly approved before they can be used for trading
Agent buy/sell permissions can be toggled by the user
Pre-approved tokens and DEXes are configured at deployment
All actions are logged with detailed print events
Security Considerations
Access Control
The smart wallet implements strict access control:
User-only functions: withdraw-stx, withdraw-ft, approve-asset, revoke-asset, approve-dex, revoke-dex, set-agent-can-buy-sell
User and Agent functions: proxy-propose-action, proxy-create-proposal, vote-on-action-proposal, vote-on-core-proposal, conclude-action-proposal, conclude-core-proposal
Agent trading functions: buy-asset, sell-asset (only when explicitly permitted by the user via set-agent-can-buy-sell)
Public functions: deposit-stx, deposit-ft (anyone can deposit assets to the smart wallet)
Asset Protection
Assets in the smart wallet are protected by:
Requiring explicit approval of assets before they can be deposited or withdrawn
Limiting withdrawal capability to the user only
Requiring explicit approval of DEXes before they can be used for trading
Requiring explicit permission for the agent to perform buy/sell operations
Transparency
All actions are logged with detailed print events, providing:
Complete audit trail of all interactions
Visibility into who initiated each action
Details of all asset movements
Immutability
The user and agent addresses cannot be changed after deployment
The contract cannot be upgraded after deployment
Usage Scenarios
Asset Management
The smart wallet allows users to securely store and manage their assets (STX and fungible tokens) with the following benefits:
Secure storage with controlled access
Ability to approve/revoke specific tokens
Transparent transaction logging
DAO Participation
The smart wallet enables participation in DAO governance through:
Proposal creation via proxy
Voting on proposals
Concluding proposals
This allows the user to delegate certain DAO interactions to their agent while maintaining control over the assets.
Interaction Flows
DAO Proposal Interaction Flow
DEX Trading Interaction Flow
DEX Trading
The smart wallet enables trading on Faktory DEXes:
User can always buy and sell assets
Agent can buy and sell assets only if explicitly permitted by the user via the set-agent-can-buy-sell function
The user can enable or disable agent trading permission at any time
Only approved DEXes can be used for trading
All trading activity is logged with detailed print events
Deployment Configuration
When deployed, the smart wallet is configured with:
User principal (wallet owner)
Agent principal (proposal voter)
Pre-approved tokens (sBTC and DAO token)
Pre-approved DEXes (DAO token DEX)
Contract Naming Convention
Smart wallet contracts follow a specific naming convention that incorporates both the owner and agent addresses:
Where:
OWNER_FIRST5
represents the first 5 characters of the owner's Stacks addressOWNER_LAST5
represents the last 5 characters of the owner's Stacks addressAGENT_FIRST5
represents the first 5 characters of the agent's Stacks addressAGENT_LAST5
represents the last 5 characters of the agent's Stacks address
For example, if an agent with address ST2CY5V39NHDPWSXMW9QDT3HC3GD6Q6XX4CFRK9AG
were to deploy a smart wallet for an owner with address ST1PQHQKV0RJXZFY1DGX8MNSNYVE3VGZJSRTPGZGM
, it would be named:
This naming convention ensures that:
Each user-agent pair has a unique smart wallet
Smart wallets are easily identifiable by both the owner's and agent's addresses
One agent can deploy multiple smart wallets for different users
Multiple agents can deploy different smart wallets for the same user
Last updated