diff --git a/scripts/download.sh b/scripts/download.sh index 9351e8b..87ab3de 100755 --- a/scripts/download.sh +++ b/scripts/download.sh @@ -48,7 +48,7 @@ else ARCHIVE_EXT=".tar.gz" EXE_EXT="" fi -VERSION="v0.1.3" +VERSION="v0.1.4" BASE_URL="http://192.168.88.253:8080" EXTRACT_DIR="./" # Use BINARY_NAMES=("codex" "codex-prover") to also download/verify/extract prover binary diff --git a/scripts/download_online.sh b/scripts/download_online.sh index a31e3ce..5181d93 100755 --- a/scripts/download_online.sh +++ b/scripts/download_online.sh @@ -48,7 +48,7 @@ else ARCHIVE_EXT=".tar.gz" EXE_EXT="" fi -VERSION="v0.1.3" +VERSION="v0.1.4" BASE_URL="https://github.com/codex-storage/nim-codex/releases/download/${VERSION}" EXTRACT_DIR="./" # Use BINARY_NAMES=("codex" "codex-prover") to also download/verify/extract prover binary diff --git a/scripts/run_client.sh b/scripts/run_client.sh index 05b0721..7f4c688 100755 --- a/scripts/run_client.sh +++ b/scripts/run_client.sh @@ -21,7 +21,7 @@ if [ ! -f eth.key ]; then fi # Set variables -VERSION="v0.1.3" +VERSION="v0.1.4" OS=$(get_os) ARCH=$(get_arch) DATA_DIR="data_client" @@ -39,5 +39,4 @@ chmod 0700 ${DATA_DIR} --bootstrap-node=${BOOTSPR} \ persistence \ --eth-private-key=eth.key \ - --eth-provider=https://rpc.testnet.codex.storage \ - --marketplace-address=0x9C88D67c7C745D2F0A4E411c18A6a22c15b37EaA + --eth-provider=https://rpc.testnet.codex.storage diff --git a/scripts/windows/download-online.bat b/scripts/windows/download-online.bat index d078365..dbcfe1e 100644 --- a/scripts/windows/download-online.bat +++ b/scripts/windows/download-online.bat @@ -8,7 +8,7 @@ set "OS=windows" call :get_arch ARCH set "ARCHIVE_EXT=.zip" set "EXE_EXT=.exe" -set "VERSION=v0.1.3" +set "VERSION=v0.1.4" set "BASE_URL=https://github.com/codex-storage/nim-codex/releases/download/%VERSION%" set "EXTRACT_DIR=.\" set "BINARY_NAMES=codex" diff --git a/scripts/windows/download.bat b/scripts/windows/download.bat index bd96e40..2f3a07d 100644 --- a/scripts/windows/download.bat +++ b/scripts/windows/download.bat @@ -8,7 +8,7 @@ set "OS=windows" call :get_arch ARCH set "ARCHIVE_EXT=.zip" set "EXE_EXT=.exe" -set "VERSION=v0.1.3" +set "VERSION=v0.1.4" set "BASE_URL=http://192.168.88.253:8080" set "EXTRACT_DIR=.\" set "BINARY_NAMES=codex" diff --git a/scripts/windows/run-client.bat b/scripts/windows/run-client.bat index 7e3fe4f..dde0588 100644 --- a/scripts/windows/run-client.bat +++ b/scripts/windows/run-client.bat @@ -18,7 +18,7 @@ if not exist eth.key ( ) :: Set variables -set "VERSION=v0.1.3" +set "VERSION=v0.1.4" set "OS=windows" call :get_arch ARCH set "DATA_DIR=data_client" @@ -37,8 +37,7 @@ codex-%VERSION%-%OS%-%ARCH%.exe ^ --bootstrap-node=%BOOTSPR% ^ persistence ^ --eth-private-key=eth.key ^ - --eth-provider=https://rpc.testnet.codex.storage ^ - --marketplace-address=0x9C88D67c7C745D2F0A4E411c18A6a22c15b37EaA + --eth-provider=https://rpc.testnet.codex.storage exit /b 0