diff --git a/e2e/docker-compose.yml b/e2e/docker-compose.yml index 5ae362843..5eeda311a 100644 --- a/e2e/docker-compose.yml +++ b/e2e/docker-compose.yml @@ -197,7 +197,7 @@ services: volumes: - "./e2e/keystore:/tmp/keystore:ro" - "./e2e/passwords.txt:/tmp/passwords.txt:ro" - - "./e2e/jwt.txt:/tmp/jwt.txt:ro" + - "./e2e/jwt.hex:/tmp/jwt.hex:ro" - { type: "tmpfs", target: "/tmp" } networks: e2e: @@ -221,7 +221,7 @@ services: volumes: - "./e2e/keystore:/tmp/keystore:ro" - "./e2e/passwords.txt:/tmp/passwords.txt:ro" - - "./jwt.txt:/tmp/jwt.txt:ro" + - "./jwt.hex:/tmp/jwt.hex:ro" - "./entrypointl2.sh:/tmp/entrypointl2.sh" - "./genesisl2.sh:/tmp/genesisl2.sh" - "./output:/tmp/output" @@ -253,7 +253,7 @@ services: volumes: - "./e2e/keystore:/tmp/keystore:ro" - "./e2e/passwords.txt:/tmp/passwords.txt:ro" - - "./jwt.txt:/tmp/jwt.txt:ro" + - "./jwt.hex:/tmp/jwt.hex:ro" - "./entrypointl2.sh:/tmp/entrypointl2.sh" - "./genesisl2.sh:/tmp/genesisl2.sh" - "./output:/tmp/output" @@ -286,7 +286,7 @@ services: volumes: - "./e2e/keystore:/tmp/keystore:ro" - "./e2e/passwords.txt:/tmp/passwords.txt:ro" - - "./jwt.txt:/tmp/jwt.txt:ro" + - "./jwt.hex:/tmp/jwt.hex:ro" - "./entrypointl2.sh:/tmp/entrypointl2.sh" - "./genesisl2.sh:/tmp/genesisl2.sh" - "./output:/tmp/output" @@ -315,7 +315,7 @@ services: command: - "op-node/bin/op-node" - "--l2=ws://op-geth-l2:8551" - - "--l2.jwt-secret=/tmp/jwt.txt" + - "--l2.jwt-secret=/tmp/jwt.hex" - "--sequencer.enabled=true" - "--sequencer.l1-confs=0" - "--sequencer.stopped=true" @@ -345,7 +345,7 @@ services: - "--l1.beacon.ignore=true" volumes: - "l2configs:/l2configs" - - "./jwt.txt:/tmp/jwt.txt" + - "./jwt.hex:/tmp/jwt.hex" - "./op-node-priv-key.txt:/tmp/op-node-priv-key.txt" networks: e2e: @@ -369,7 +369,7 @@ services: command: - "op-node/bin/op-node" - "--l2=ws://op-geth-l2-2:8551" - - "--l2.jwt-secret=/tmp/jwt.txt" + - "--l2.jwt-secret=/tmp/jwt.hex" - "--sequencer.enabled=true" - "--sequencer.l1-confs=0" - "--sequencer.stopped=true" @@ -397,7 +397,7 @@ services: - "--l1.beacon.ignore=true" volumes: - "l2configs:/l2configs" - - "./jwt.txt:/tmp/jwt.txt" + - "./jwt.hex:/tmp/jwt.hex" - "./op-node-priv-key-2.txt:/tmp/op-node-priv-key.txt" networks: e2e: @@ -420,7 +420,7 @@ services: command: - "op-node/bin/op-node" - "--l2=ws://op-geth-l2-3:8551" - - "--l2.jwt-secret=/tmp/jwt.txt" + - "--l2.jwt-secret=/tmp/jwt.hex" - "--sequencer.enabled=true" - "--sequencer.l1-confs=0" - "--sequencer.stopped=true" @@ -448,7 +448,7 @@ services: - "--l1.beacon.ignore=true" volumes: - "l2configs:/l2configs" - - "./jwt.txt:/tmp/jwt.txt" + - "./jwt.hex:/tmp/jwt.hex" - "./op-node-priv-key-3.txt:/tmp/op-node-priv-key.txt" networks: e2e: @@ -649,7 +649,7 @@ services: - "--rpc.port=8547" volumes: - "l2configs:/l2configs" - - "./jwt.txt:/tmp/jwt.txt" + - "./jwt.hex:/tmp/jwt.hex" restart: always networks: e2e: @@ -683,7 +683,7 @@ services: - "--rpc.port=8547" volumes: - "l2configs:/l2configs" - - "./jwt.txt:/tmp/jwt.txt" + - "./jwt.hex:/tmp/jwt.hex" restart: always networks: e2e: @@ -717,7 +717,7 @@ services: - "--rpc.port=8547" volumes: - "l2configs:/l2configs" - - "./jwt.txt:/tmp/jwt.txt" + - "./jwt.hex:/tmp/jwt.hex" restart: always networks: e2e: diff --git a/e2e/entrypointl2.sh b/e2e/entrypointl2.sh index 968384255..21690e68c 100644 --- a/e2e/entrypointl2.sh +++ b/e2e/entrypointl2.sh @@ -40,7 +40,7 @@ fi --authrpc.vhosts="*" \ --authrpc.addr=0.0.0.0 \ --authrpc.port=8551 \ - --authrpc.jwtsecret=/tmp/jwt.txt \ + --authrpc.jwtsecret=/tmp/jwt.hex \ --verbosity=5 \ --gpo.maxprice=1 \ --tbc.network=localnet \ diff --git a/e2e/jwt.txt b/e2e/jwt.hex similarity index 100% rename from e2e/jwt.txt rename to e2e/jwt.hex diff --git a/localnode/docker-compose.yml b/localnode/docker-compose.yml index 1046d9e9e..366d73b49 100644 --- a/localnode/docker-compose.yml +++ b/localnode/docker-compose.yml @@ -131,7 +131,7 @@ services: - geth_data:/tmp/geth # change this token value if you expose this service's ports for # connection from other machines - - ./jwt.txt:/tmp/jwt/jwt.hex + - ./jwt.hex:/tmp/jwt/jwt.hex ports: - '8545:8545' networks: @@ -166,7 +166,7 @@ services: - ./testnet-genesis.json:/tmp/testnet-genesis.json # change this token value if you expose this service's ports for # connection from other machines - - ./jwt.txt:/tmp/jwt/jwt.hex:ro + - ./jwt.hex:/tmp/jwt/jwt.hex:ro - ./entrypointl2.sh:/tmp/entrypointl2.sh - op-geth_data:/tmp/datadir - ./rollup.json:/tmp/rollup.json @@ -222,7 +222,7 @@ services: volumes: # change this token value if you expose this service's ports for # connection from other machines - - ./jwt.txt:/tmp/jwt/jwt.txt + - ./jwt.hex:/tmp/jwt/jwt.hex - ./op-node-priv-key.txt:/tmp/op-node-priv-key.txt - ./rollup.json:/tmp/rollup.json environment: @@ -263,7 +263,7 @@ services: - prysm_data:/data # change this token value if you expose this service's ports for # connection from other machines - - ./jwt.txt:/tmp/jwt/jwt.hex:ro + - ./jwt.hex:/tmp/jwt/jwt.hex:ro ports: - '4000:4000' networks: