Skip to content

Commit

Permalink
Merge pull request #20 from valory-xyz/fix/funds-agent
Browse files Browse the repository at this point in the history
chore: Update USDC required amount to 15
  • Loading branch information
gauravlochab authored Oct 2, 2024
2 parents 8379e88 + 0a8b29b commit c8c138a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
COST_OF_BOND = 1
COST_OF_BOND_STAKING = 2 * 10 ** 19
STAKED_BONDING_TOKEN = "OLAS"
USDC_REQUIRED = 10_000_000
USDC_REQUIRED = 15_000_000
USDC_ADDRESS = "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
WARNING_ICON = colored('\u26A0', 'yellow')
OPERATE_HOME = Path.cwd() / ".optimus"
Expand Down Expand Up @@ -624,7 +624,7 @@ def main() -> None:
spinner.succeed(f"[{chain_name}] Safe updated balance: {balance} {STAKED_BONDING_TOKEN}")

if chain_metadata.get("usdcRequired", False) and not service_exists:
print(f"[{chain_name}] Please make sure address {address} has at least 10 USDC")
print(f"[{chain_name}] Please make sure address {address} has at least 15 USDC")

spinner = Halo(
text=f"[{chain_name}] Waiting for USDC...",
Expand Down

0 comments on commit c8c138a

Please sign in to comment.