API Documentation
Complete guide to interacting with AgentDAO smart contracts
Getting Started
Installation
npm install ethers
Basic Setup
import { ethers } from "ethers"
// Connect to Base network
const provider = new ethers.JsonRpcProvider("https://mainnet.base.org")
// For browser wallet interactions
const browserProvider = new ethers.BrowserProvider(window.ethereum)
const signer = await browserProvider.getSigner()
Contract Configuration
// Contract addresses
const contracts = {
MultiDomainBounties: "0xEa6E318Dc2C112dC8C47Ca04066e7c6643F2145e",
BountyData: "0x9982eb7e1b2bf95d5b84F85877070B7eBd4E72fa",
MultiDomainProposals: "0xb7a8018980d96C5d761ab0774D780776F152c2D6",
FundAgent: "0xD50543Cc451B630413984b8361d0F76987852e2e",
FundAgentData: "0x975B37298EEad0300A028AA71ebCF3A01Bb96d39"
}
Available Contracts
Domain System
Core domain management contracts
- DomainRegistry
Register and manage domains
- VBot
Verification and validation system
Bounty System
Contracts for managing domain bounties
- MultiDomainBounties
Create and manage bounties across domains
- BountyData
View and query bounty information
Proposal System
Contracts for domain governance
- MultiDomainProposals
Create and vote on domain proposals
Fund Management
Contracts for managing domain funds
- FundAgent
Manage domain funds and rewards
- FundAgentData
Query fund and reward information
Common Usage Examples
Reading Contract Data
import { BountyData } from "./abis/BountyData"
// Create contract instance
const bountyData = new ethers.Contract(
contracts.BountyData,
BountyData.abi,
provider
)
// Get bounty details
const bounty = await bountyData.getBountyView(
"domain-name",
bountyId
)
Writing to Contracts
import { MultiDomainBounties } from "./abis/MultiDomainBounties"
// Create contract instance with signer
const bounties = new ethers.Contract(
contracts.MultiDomainBounties,
MultiDomainBounties.abi,
signer
)
// Create a new bounty
const tx = await bounties.createBounty(
"domain-name",
ethers.ZeroAddress, // ETH bounty
ethers.parseEther("1.0"),
deadline,
"Bounty Title",
"Description",
{ value: ethers.parseEther("1.0") }
)
await tx.wait()