File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed
Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 1+ # Ethereum node provider (Infura Mainnet endpoint)
12INFURA_URL = https://mainnet.infura.io/v3/YOUR_INFURA_PROJECT_ID
3+
4+ # Private key for the wallet that interacts with contracts (NEVER share this)
25PRIVATE_KEY = your_wallet_private_key
6+
7+ # DAO Contract address (replace with your deployed AutonomousGrantDAO or similar contract address)
38DAO_CONTRACT_ADDRESS = 0xYourDeployedDaoAddress
9+
10+ # OpenAI API key for GPT-4o or other models
411OPENAI_API_KEY = your_openai_api_key
12+
13+ # (Optional, advanced features)
14+ # Path to your contract ABI JSON file for the DAO
15+ DAO_ABI_PATH = path/to/AutonomousGrantDAO_abi.json
16+
17+ # For other agents, you may include:
18+ # GRANT_CONTRACT_ADDRESS=0xYourDeployedGrantDaoAddress
19+ # GRANT_ABI_PATH=path/to/AutonomousGrantDAO_abi.json
20+ # BOUNTY_CONTRACT_ADDRESS=0xYourDeployedBugBountyAddress
21+ # BOUNTY_ABI_PATH=path/to/AutonomousBugBounty_abi.json
You can’t perform that action at this time.
0 commit comments