Developer Portal forAgentDAO

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
Bounty System
Contracts for managing domain bounties
Proposal System
Contracts for domain governance
Fund Management
Contracts for managing domain funds

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()