Skip to content
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
4 changes: 2 additions & 2 deletions goth/address.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ def _with_default(self, mapping: Mapping[str, object]):
{"host": ROUTER_HOST, "port": ROUTER_PORT, "protocol": ROUTER_PROTOCOL},
)

GOLEM_BASE_RPC_URL = "http://golem-base:8545"
GOLEM_BASE_WS_URL = "ws://golem-base:8545"
ARKIV_RPC_URL = "http://arkiv:8545"
ARKIV_WS_URL = "ws://arkiv:8545"


ACTIVITY_API_URL = Template("$base/activity-api/v1/")
Expand Down
2 changes: 1 addition & 1 deletion goth/default-assets/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ services:
image: yagna-goth
entrypoint: /usr/bin/ya-relay-server

golem-base:
arkiv:
image: quay.io/golemnetwork/gb-op-geth:latest
ports:
- "8545:8545"
Expand Down
12 changes: 6 additions & 6 deletions goth/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

from goth.address import (
ACTIVITY_API_URL,
GOLEM_BASE_RPC_URL,
GOLEM_BASE_WS_URL,
ARKIV_RPC_URL,
ARKIV_WS_URL,
MARKET_API_URL,
PAYMENT_API_URL,
ROUTER_HOST,
Expand Down Expand Up @@ -35,10 +35,10 @@ def node_environment(
"RUST_BACKTRACE": "1",
"RUST_LOG": "debug,tokio_core=info,tokio_reactor=info,hyper=info",
"YAGNA_API_URL": YAGNA_REST_URL.substitute(host="0.0.0.0"),
"GOLEM_BASE_NETWORK": "Custom",
"GOLEM_BASE_CUSTOM_RPC_URL": GOLEM_BASE_RPC_URL,
"GOLEM_BASE_CUSTOM_WS_URL": GOLEM_BASE_WS_URL,
"GOLEM_BASE_CUSTOM_FUND_PREALLOCATED": "true",
"ARKIV_NETWORK": "Custom",
"ARKIV_CUSTOM_RPC_URL": ARKIV_RPC_URL,
"ARKIV_CUSTOM_WS_URL": ARKIV_WS_URL,
"ARKIV_CUSTOM_FUND_PREALLOCATED": "true",
}
if account_list:
daemon_env["ACCOUNT_LIST"] = account_list
Expand Down