#!/usr/bin/env bash set -e SCRIPT_PATH="$(dirname "${BASH_SOURCE[0]}")" cd $SCRIPT_PATH # Log only to stderr # Only output from this script should be the container id of the node at the very end # Location that will be mounted to /spec in containers # This is where the initial members and balances files and generated chainspec files will be located. DATA_PATH=$PWD/data mkdir -p ${DATA_PATH} # Initial account balance for sudo account SUDO_INITIAL_BALANCE=${SUDO_INITIAL_BALANCE:=100000000} SUDO_ACCOUNT_URI=${SUDO_ACCOUNT_URI:="//Alice"} SUDO_ACCOUNT=$(docker run --rm --pull=always docker.io/parity/subkey:2.0.1 inspect ${SUDO_ACCOUNT_URI} --output-type json | jq .ss58Address -r) # Source of funds for all new accounts that are created in the tests. TREASURY_INITIAL_BALANCE=${TREASURY_INITIAL_BALANCE:=100000000} TREASURY_ACCOUNT_URI=${TREASURY_ACCOUNT_URI:=$SUDO_ACCOUNT_URI} TREASURY_ACCOUNT=$(docker run --rm --pull=always docker.io/parity/subkey:2.0.1 inspect ${TREASURY_ACCOUNT_URI} --output-type json | jq .ss58Address -r) >&2 echo "sudo account from suri: ${SUDO_ACCOUNT}" >&2 echo "treasury account from suri: ${TREASURY_ACCOUNT}" # The docker image tag to use for joystream/node RUNTIME=${RUNTIME:=$(../../scripts/runtime-code-shasum.sh)} echo "{ \"balances\":[ [\"$SUDO_ACCOUNT\", $SUDO_INITIAL_BALANCE], [\"$TREASURY_ACCOUNT\", $TREASURY_INITIAL_BALANCE] ] }" > ${DATA_PATH}/initial-balances.json # Remember if there are initial members at genesis query-node needs to be bootstrapped # or any events processed for this member will cause processor to fail. if [ "${MAKE_SUDO_MEMBER}" == true ] then echo " [{ \"member_id\":0, \"root_account\":\"$SUDO_ACCOUNT\", \"controller_account\":\"$SUDO_ACCOUNT\", \"handle\":\"sudosudo\", \"avatar_uri\":\"https://sudo.com/avatar.png\", \"about\":\"Sudo\", \"registered_at_time\":0 }] " > ${DATA_PATH}/initial-members.json else echo "[]" > ${DATA_PATH}/initial-members.json fi # Create a chain spec file docker run --rm -v ${DATA_PATH}:/spec --entrypoint ./chain-spec-builder joystream/node:${RUNTIME} \ new \ --authority-seeds Alice \ --sudo-account ${SUDO_ACCOUNT} \ --deployment dev \ --chain-spec-path /spec/chain-spec.json \ --initial-balances-path /spec/initial-balances.json \ --initial-members-path /spec/initial-members.json # Convert the chain spec file to a raw chainspec file docker run --rm -v ${DATA_PATH}:/spec joystream/node:${RUNTIME} build-spec \ --raw --disable-default-bootnode \ --chain /spec/chain-spec.json > ${DATA_PATH}/chain-spec-raw.json # Start a chain with generated chain spec export JOYSTREAM_NODE_TAG=${RUNTIME} docker-compose -f ../../docker-compose.yml run -d -v ${DATA_PATH}:/spec --name joystream-node \ -p 9944:9944 -p 9933:9933 joystream-node \ --alice --validator --unsafe-ws-external --unsafe-rpc-external \ --rpc-methods Unsafe --rpc-cors=all -l runtime \ --chain /spec/chain-spec-raw.json