From fe0c43eea2617a8a61f732e0bf8dc09398f8feee Mon Sep 17 00:00:00 2001 From: Vid Kersic Date: Mon, 7 Aug 2023 10:26:06 +0200 Subject: [PATCH 1/3] silius: remove extra params --- launchers/silius/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launchers/silius/docker-compose.yml b/launchers/silius/docker-compose.yml index 31bcd6d..9b7422e 100644 --- a/launchers/silius/docker-compose.yml +++ b/launchers/silius/docker-compose.yml @@ -3,7 +3,7 @@ version: '2' services: bundler: image: ghcr.io/vid201/silius:latest - command: --rpc-listen-address 0.0.0.0:3000 --eth-client-address http://geth-dev:8545 --mnemonic-file /root/${BUNDLER_ACCOUNT} --beneficiary 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --gas-factor 600 --min-balance 1 --entry-points 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789 --min-stake 1 --min-unstake-delay 0 --min-priority-fee-per-gas 0 --max-verification-gas 1500000 --rpc-api eth,debug + command: --rpc-listen-address 0.0.0.0:3000 --eth-client-address http://geth-dev:8545 --mnemonic-file /root/${BUNDLER_ACCOUNT} --beneficiary 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --entry-points 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789 --rpc-api eth,debug ports: [ '3000:3000' ] volumes: - ./keys:/root From c5582811e816d25f3caed6fdad1893deb222a896 Mon Sep 17 00:00:00 2001 From: Vid Kersic Date: Sat, 19 Aug 2023 15:38:01 +0200 Subject: [PATCH 2/3] silius: add http flag --- launchers/silius/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launchers/silius/docker-compose.yml b/launchers/silius/docker-compose.yml index 9b7422e..d6e9066 100644 --- a/launchers/silius/docker-compose.yml +++ b/launchers/silius/docker-compose.yml @@ -3,7 +3,7 @@ version: '2' services: bundler: image: ghcr.io/vid201/silius:latest - command: --rpc-listen-address 0.0.0.0:3000 --eth-client-address http://geth-dev:8545 --mnemonic-file /root/${BUNDLER_ACCOUNT} --beneficiary 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --entry-points 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789 --rpc-api eth,debug + command: --rpc-listen-address 0.0.0.0:3000 --eth-client-address http://geth-dev:8545 --mnemonic-file /root/${BUNDLER_ACCOUNT} --beneficiary 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --entry-points 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789 --http --rpc-api eth,debug ports: [ '3000:3000' ] volumes: - ./keys:/root @@ -18,4 +18,4 @@ services: geth-dev: build: geth-dev - ports: [ '8545:8545' ] \ No newline at end of file + ports: [ '8545:8545' ] From 41f2b272572d7c98192825cdd2e30b29a87b3ed1 Mon Sep 17 00:00:00 2001 From: Vid Kersic Date: Wed, 6 Sep 2023 17:49:03 +0200 Subject: [PATCH 3/3] silius: update args --- launchers/silius/docker-compose.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/launchers/silius/docker-compose.yml b/launchers/silius/docker-compose.yml index d6e9066..dac571e 100644 --- a/launchers/silius/docker-compose.yml +++ b/launchers/silius/docker-compose.yml @@ -3,7 +3,25 @@ version: '2' services: bundler: image: ghcr.io/vid201/silius:latest - command: --rpc-listen-address 0.0.0.0:3000 --eth-client-address http://geth-dev:8545 --mnemonic-file /root/${BUNDLER_ACCOUNT} --beneficiary 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 --entry-points 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789 --http --rpc-api eth,debug + command: + - bundler + - --eth-client-address + - http://geth-dev:8545 + - --datadir + - data/silius + - --mnemonic-file + - /root/${BUNDLER_ACCOUNT} + - --beneficiary + - 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266 + - --entry-points + - 0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789 + - --http + - --http.addr + - 0.0.0.0 + - --http.port + - "3000" + - --http.api + - eth,debug,web3 ports: [ '3000:3000' ] volumes: - ./keys:/root