Updates scripts to 0.1.4 with built-in marketplace address
This commit is contained in:
parent
e65330c300
commit
76991ecc2a
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue