PowerPool
  • powerpool overview
    • PowerPool
      • PowerPool DAO Story
      • Value Proposition
      • Use Cases
      • CVP Token
      • Vision 2027
    • Blockchain Automation
      • Glossary
    • PowerAgent Stats
    • How to contribute
    • Contracts and Links
  • Power Agent
    • đŸŽ¯PowerAgent features
    • đŸ›ī¸Architecture
      • â„šī¸Agent
      • â„šī¸Keeper
      • â„šī¸Job
        • Full Specification
    • 📜User Guides and Instructions
      • ❓I Want to Automate my Tasks
        • Job Registration Guide
      • ❓I Want to Become a Keeper
    • â„šī¸Scenarios
    • ⌛Old Pages
      • Installation Guide (Old)
        • Prerequisites
        • DAppNode Installation
        • Registering in PowerAgent
        • Installing PowerAgent Package on DAppNode
        • Standalone Installation
        • Chain-specific configs
      • Keeper (Old)
        • Keeper Registration and Update
        • Keeper staking, withdrawal, and deactivation
          • Keeper activation and deactivation in PPAgentV2RANDAO
        • Keeper assignment and release in RanDAO realisation
      • Job (Old)
        • Job Registration & Update
        • Job funds deposition and withdrawal
      • Agent (old)
        • Page
        • Execution
      • Technical Implementation (Old)
        • Hooks and helper functions
        • Errors
        • Modifiers
          • Flags
      • Job Registration Guide (Old)
      • 📑Testnet Rules
      • Slashing
        • Copy of Slashing
      • Task Reward and Gas Compensation
        • Fees and income sources
        • Copy of Task Reward and Gas Compensation
  • PowerPool Incentives
    • PowerPool Points Program
  • Security
    • Bug Bounty
    • Security Audits
  • Research
    • Automation Networks Research
      • Approaches on Keeper Selection
      • On-chain Random Number Generation
      • Keeper Weighing
      • 🌊PowerPool & PowerAgent Automation Network
      • Value Proposition-PowerPool
    • PowerAgent v2.1
      • Keeper Selection
      • Hooks
  • Resources
    • Website
    • Twitter
    • Medium
    • Discord
    • Github
    • Telegram
    • Governance Voting
    • Governance Forum
  • Legacy & Deprecated
    • Index Products
      • $YLA: Yearn Lazy Ape
        • Invest (ZAP) in YLA with low fees
        • Instant YLA mint via USDC
        • $CVP Boost Program
        • Redeem YLA
        • YLA Onsen Liquidity Mining [deprecated]
      • $BSCDEFI: BSC DeFi Pool/Index
        • Guide: Mint $BSCDEFI with $BNB
        • Guide: Multi-Asset $BSCDEFI Mint
        • Guide: PancakeSwap LM Farming
        • Add $BSCDEFI to MetaMask.
        • Redeem $BSCDEFI
      • $ASSY: Aave, SushiSwap, Synthetix, and Yearn Index
        • $CVP Boost Program
        • Underlying Token Staking
      • $PIPT: PowerIndex Pool
      • $YETI: Yearn Ecosystem Index
      • Market Price vs Fair Value
      • About ZAP
    • CVP reward program
      • How to create a DCA flow in Partitura
Powered by GitBook
On this page
  • Sepolia (Testnet)
  • Gnosis (Testnet)

Was this helpful?

  1. Power Agent
  2. Old Pages
  3. Installation Guide (Old)

Chain-specific configs

Herein chain-specific configs for the standalone installation are given.

In general, only the network name in the "details" and "enabled" fields and the agent address are subject to change.

Sepolia (Testnet)

main.yaml
networks:
  data_source: network
  enabled:
    - sepolia
  details:
    sepolia:
      rpc: 'YOUR_WS_RPC'
      max_priority_fee_per_gas: 6000000
      agents:
        'SEPOLIA_AGENT_ADDRESS':
          executor: pga
          keeper_worker_address: 'YOUR_WORKER_ADDRESS'
          key_pass: 'YOUR_VERY_SECURE_PASSWORD'
          accept_max_base_fee_limit: true
          accrue_reward: true
          tx_resend_or_drop_after_blocks: 4
          tx_resend_max_gas_price_gwei: 1000
          tx_resend_max_attempts: 4
          gas_price_priority_add_gwei: 100
          # data_source: subgraph
          # subgraph_url: https://api.studio.thegraph.com/query/44364/ppav2-rd-sepolia-b11/version/latest
          max_block_delay: 10
          resolve_min_success_count: 3

Gnosis (Testnet)

main.yaml
networks:
  data_source: network
  enabled:
    - gnosis
  details:
    gnosis:
      rpc: 'YOUR_WS_RPC'
      max_priority_fee_per_gas: 6000000
      agents:
        'GNOSIS_AGENT_ADDRESS':
          executor: pga
          keeper_worker_address: 'YOUR_WORKER_ADDRESS'
          key_pass: 'YOUR_VERY_SECURE_PASSWORD'
          accept_max_base_fee_limit: true
          accrue_reward: true
          tx_resend_or_drop_after_blocks: 4
          tx_resend_max_gas_price_gwei: 1000
          tx_resend_max_attempts: 4
          gas_price_priority_add_gwei: 100
          # data_source: subgraph
          # subgraph_url: https://api.studio.thegraph.com/query/44364/ppav2-rd-sepolia-b11/version/latest
          max_block_delay: 10
          resolve_min_success_count: 3

PreviousStandalone InstallationNextKeeper (Old)

Last updated 1 year ago

Was this helpful?

⌛