diff --git a/goth/address.py b/goth/address.py index d87efa4c..de4c1ce6 100644 --- a/goth/address.py +++ b/goth/address.py @@ -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/") diff --git a/goth/default-assets/docker/docker-compose.yml b/goth/default-assets/docker/docker-compose.yml index 7e3238ff..e19dd5d9 100644 --- a/goth/default-assets/docker/docker-compose.yml +++ b/goth/default-assets/docker/docker-compose.yml @@ -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" diff --git a/goth/node.py b/goth/node.py index 866d65d2..fee3ae99 100644 --- a/goth/node.py +++ b/goth/node.py @@ -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, @@ -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