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

Fix and update orbit #76

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
9 changes: 4 additions & 5 deletions deploy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@
"format": "prettier --write '**/*.{ts,js,yml}'",
"ts:check": "tsc --noEmit",
"ts:build": "tsc",
"deploy": "ts-node main.ts",
"tangle": "ts-node tangle.ts",
"faucet": "ts-node faucet.ts",
"deposit": "ts-node deposit.ts",
"deploy": "node --loader ts-node/esm main.ts",
"faucet": "node --loader ts-node/esm faucet.ts",
"deposit": "node --loader ts-node/esm deposit.ts",
"test": "mocha"
},
"dependencies": {
Expand All @@ -28,7 +27,7 @@
"@webb-tools/proposals": "^1.0.8",
"@webb-tools/utils": "^1.0.8",
"@webb-tools/vbridge": "^1.0.8",
"@webb-tools/tangle-substrate-types": "0.3.2-hotfix.1",
"@webb-tools/tangle-substrate-types": "0.5.5",
"chalk": "^4",
"ecpair": "^2.1.0",
"ethers": "5.7.2",
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ networks:

services:
athena_chain:
image: ethereum/client-go:stable
image: ethereum/client-go:v1.13.14
container_name: athena-chain
ports:
- ${ATHENA_CHAIN_PORT}:8545
Expand Down Expand Up @@ -51,7 +51,7 @@ services:
max-file: "10"

hermes_chain:
image: ethereum/client-go:stable
image: ethereum/client-go:v1.13.14
container_name: hermes-chain
ports:
- ${HERMES_CHAIN_PORT}:8545
Expand Down Expand Up @@ -96,7 +96,7 @@ services:
max-file: "10"

demeter_chain:
image: ethereum/client-go:stable
image: ethereum/client-go:v1.13.14
container_name: demeter-chain
ports:
- ${DEMETER_CHAIN_PORT}:8545
Expand Down
6 changes: 6 additions & 0 deletions explorers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ services:
PORT: "${ATHENA_CHAIN_EXPLORER_PORT}"
SUBNETWORK: "${ATHENA_CHAIN_SUBNETWORK}"
BLOCKSCOUT_HOST: "athena-explorer.${DOMAIN}"
ports:
- ${ATHENA_CHAIN_EXPLORER_PORT}:${ATHENA_CHAIN_EXPLORER_PORT}
volumes:
- ./logs/athena_blockscout/:/app/logs/
logging:
Expand Down Expand Up @@ -154,6 +156,8 @@ services:
PORT: "${HERMES_CHAIN_EXPLORER_PORT}"
SUBNETWORK: "${HERMES_CHAIN_SUBNETWORK}"
BLOCKSCOUT_HOST: "hermes-explorer.${DOMAIN}"
ports:
- ${HERMES_CHAIN_EXPLORER_PORT}:${HERMES_CHAIN_EXPLORER_PORT}
volumes:
- ./logs/hermes_blockscout:/app/logs/

Expand Down Expand Up @@ -189,6 +193,8 @@ services:
PORT: "${DEMETER_CHAIN_EXPLORER_PORT}"
SUBNETWORK: "${DEMETER_CHAIN_SUBNETWORK}"
BLOCKSCOUT_HOST: "demeter-explorer.${DOMAIN}"
ports:
- ${DEMETER_CHAIN_EXPLORER_PORT}:${DEMETER_CHAIN_EXPLORER_PORT}
volumes:
- ./logs/demeter_blockscout:/app/logs/
logging:
Expand Down
2 changes: 1 addition & 1 deletion scripts/setup-orbit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function geth() {
required_arg "$1" "chain-datadir"
local chain_datadir=$1
shift 1 # Remove the first arg $1 from the list of args $@
docker run -t --rm -v $ROOT_DIR/$chain_datadir:/data ethereum/client-go:stable --datadir /data "$@"
docker run -t --rm -v $ROOT_DIR/$chain_datadir:/data ethereum/client-go:v1.13.14 --datadir /data "$@"
}

# Extradata is the extra data field in the genesis file.
Expand Down
Loading