Skip to content

Smart Contract Addresses#

This page contains all deployed Eden smart contract addresses across different networks with links to block explorers.

Sepolia Testnet#

Network: Ethereum Sepolia Testnet
Chain ID: 11155111
Block Explorer: Sepolia Etherscan
RPC: https://sepolia.infura.io/v3/YOUR_KEY

Agent Registry System#

Contract Address Description Explorer Link
AgentRegistry 0x3F91E8Ec6d6861309B726AFab8dCD21E83259492 Main AI agent registration and metadata management View

NFT Collections#

Contract Address Description Explorer Link
AbrahamEarlyWorks 0x2cFe7820fcBDBca222E252B46ACe4D6B4D9302Fe Limited edition NFT collection with authorized minting View

Base Sepolia Testnet#

Network: Base Sepolia Testnet
Chain ID: 84532
Block Explorer: Base Sepolia Scan
RPC: https://sepolia.base.org

Auction Systems#

Contract Address Description Explorer Link
ThirteenYearAuction 0x1234567890123456789012345678901234567890 Long-term NFT auction mechanism View
DailyAuctionNFT 0x2345678901234567890123456789012345678901 Daily recurring NFT auctions View

Governance System#

Contract Address Description Explorer Link
Governor 0x3456789012345678901234567890123456789012 DAO governance contract View
GovToken 0x4567890123456789012345678901234567890123 Governance token for voting View
Timelock 0x5678901234567890123456789012345678901234 Timelock controller for governance View

Spirit Token System#

Contract Address Description Explorer Link
Spirit 0x6789012345678901234567890123456789012345 Main SPIRIT governance token View
Distributor 0x7890123456789012345678901234567890123456 Revenue distribution mechanism View
PureSuperToken 0x8901234567890123456789012345678901234567 SuperFluid-based streaming token View
DistributionPool 0x9012345678901234567890123456789012345678 Token distribution pool management View

Ethereum Mainnet#

Network: Ethereum Mainnet
Chain ID: 1
Block Explorer: Etherscan
RPC: https://mainnet.infura.io/v3/YOUR_KEY

Production Deployment

These are production contracts. Exercise extreme caution when interacting with them.

Contract Address Description Explorer Link
Coming Soon - Production contracts to be deployed -

Contract Verification Status#

All contracts are verified on their respective block explorers with public source code.

Development Networks#

  • Sepolia: All contracts verified
  • Base Sepolia: All contracts verified
  • Base Mainnet: Pending deployment

ABI Files#

Contract ABIs are available in the smart-contracts repository.


Integration Notes#

For Developers#

// Example: Connect to AgentRegistry on Sepolia
const AGENT_REGISTRY_ADDRESS = "0x3F91E8Ec6d6861309B726AFab8dCD21E83259492";
const SEPOLIA_RPC = "https://sepolia.infura.io/v3/YOUR_KEY";

// Using ethers.js
const provider = new ethers.JsonRpcProvider(SEPOLIA_RPC);
const agentRegistry = new ethers.Contract(
  AGENT_REGISTRY_ADDRESS, 
  AgentRegistryABI, 
  provider
);

For Frontend Applications#

// Network configuration
const networks = {
  sepolia: {
    chainId: 11155111,
    name: 'Sepolia',
    agentRegistry: '0x3F91E8Ec6d6861309B726AFab8dCD21E83259492',
    explorer: 'https://sepolia.etherscan.io'
  },
  baseSepolia: {
    chainId: 84532,
    name: 'Base Sepolia',
    walletRegistry: '0xd7fE443358458c8Fa6C48B1efF6098C6f8454c09',
    explorer: 'https://sepolia.basescan.org'
  }
};

Support#

For questions about contract addresses or integration support:


Last Updated: September 1, 2025
Contract Status: Active Development