DAO Tools
Tools for interacting with DAOs
DAO tools provide functionality for interacting with DAOs, managing proposals, voting, and working with DAO extensions.
Tool Overview
dao_actionproposals_get_proposal
Get details of an action proposal
Proposal status, voting info
dao_actionproposals_vote_on_proposal
Vote on an action proposal
For/against voting, vote tracking
dao_timedvault_deposit_stx
Deposit STX to a DAO's timed vault
Transaction creation, receipt
dao_timedvault_withdraw_stx
Withdraw STX from a DAO's timed vault
Authorization check, receipt
dao_charter_get_current
Get the current DAO charter
Full charter text, version info
dao_payments_get_invoice
Get details of a payment invoice
Invoice status, payment details
dao_treasury_is_allowed_asset
Check if an asset is allowed in treasury
Asset validation
Tool Details
dao_actionproposals_get_proposal
Retrieves details about a specific action proposal.
Input Parameters:
dao_contract
: Contract principal of the DAOproposal_id
: ID of the proposal to retrieve
Output:
Example Prompt:
dao_actionproposals_vote_on_proposal
Votes on an action proposal.
Input Parameters:
dao_contract
: Contract principal of the DAOproposal_id
: ID of the proposal to vote onvote
: "for" or "against"amount
: Amount of voting power to use
Output:
Example Prompt:
dao_timedvault_deposit_stx
Deposits STX to a DAO's timed vault.
Input Parameters:
dao_contract
: Contract principal of the DAOamount
: Amount of STX to deposit
Output:
Example Prompt:
dao_timedvault_withdraw_stx
Withdraws STX from a DAO's timed vault (requires authorization and respects withdrawal period).
Input Parameters:
dao_contract
: Contract principal of the DAO
Output:
Example Prompt:
dao_charter_get_current
Retrieves the current charter for a DAO.
Input Parameters:
dao_contract
: Contract principal of the DAO
Output:
Example Prompt:
dao_payments_get_invoice
Retrieves details about a specific invoice.
Input Parameters:
dao_contract
: Contract principal of the DAOinvoice_id
: ID of the invoice to retrieve
Output:
Example Prompt:
dao_treasury_is_allowed_asset
Checks if an asset is allowed in the DAO's treasury.
Input Parameters:
dao_contract
: Contract principal of the DAOasset_contract
: Contract principal of the asset
Output:
Example Prompt:
Error Handling
All DAO tools return standardized error responses when operations fail:
Common error codes:
5001: Unauthorized access
5002: Proposal not found
5003: Invalid vote
5004: Insufficient voting power
5005: Proposal expired
Last updated