Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kek/default holesky #136

Merged
merged 3 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ python -m golem find-node --runtime vm --timeout 1m # stops after 60 seconds
python -m golem allocation list

python -m golem allocation new 1
python -m golem allocation new 2 --driver erc20 --network goerli
python -m golem allocation new 2 --driver erc20 --network holesky

python -m golem allocation clean
```
Expand Down
2 changes: 1 addition & 1 deletion examples/cli_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ printf "\n*** ALLOCATION NEW ***\n"
python3 -m golem allocation new 1

printf "\n*** ALLOCATION NEW ***\n"
python3 -m golem allocation new 2 --driver erc20 --network goerli
python3 -m golem allocation new 2 --driver erc20 --network holesky

printf "\n*** ALLOCATION LIST ***\n"
python3 -m golem allocation list
Expand Down
2 changes: 1 addition & 1 deletion examples/managers/mid_agreement_payments.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
WORK_RUN_TIME = timedelta(minutes=60)


async def print_yagna_payment_status(yagna_path="yagna", network="goerli"):
async def print_yagna_payment_status(yagna_path="yagna", network="holesky"):
process = await asyncio.create_subprocess_exec(
yagna_path,
"payment",
Expand Down
2 changes: 1 addition & 1 deletion golem/payload/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
INF_STORAGE = "golem.inf.storage.gib"

DEFAULT_PAYMENT_DRIVER: str = getenv("YAGNA_PAYMENT_DRIVER", "erc20").lower()
DEFAULT_PAYMENT_NETWORK: str = getenv("YAGNA_PAYMENT_NETWORK", "goerli").lower()
DEFAULT_PAYMENT_NETWORK: str = getenv("YAGNA_PAYMENT_NETWORK", "holesky").lower()

DEFAULT_LIFETIME = timedelta(minutes=30)
DEFAULT_SUBNET: str = getenv("YAGNA_SUBNET", "public")
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

source /tmp/goth_interactive.env
YAGNA_PAYMENT_NETWORK=goerli pytest -sv tests/integration
YAGNA_PAYMENT_NETWORK=holesky pytest -sv tests/integration
Loading