Updates scripts to 0.1.4 with built-in marketplace address

This commit is contained in:
Ben 2024-09-24 11:02:56 +02:00
parent e65330c300
commit 76991ecc2a
No known key found for this signature in database
GPG Key ID: 0F16E812E736C24B
6 changed files with 8 additions and 10 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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"

View File

@ -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"

View File

@ -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