Prathamesh Musale
8c672c0966
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675) Requires cerc-io/fixturenet-laconicd-stack#14 Reviewed-on: #25 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
24 lines
501 B
Bash
Executable File
24 lines
501 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
|
|
set -x
|
|
fi
|
|
|
|
set -e
|
|
|
|
# Create the required config file
|
|
config_file="/app/config.yml"
|
|
cat <<EOF > $config_file
|
|
services:
|
|
registry:
|
|
rpcEndpoint: ${CERC_LACONICD_RPC_ENDPOINT}
|
|
gqlEndpoint: ${CERC_LACONICD_GQL_ENDPOINT}
|
|
userKey: "${CERC_LACONICD_USER_KEY}"
|
|
bondId: ${CERC_LACONICD_BOND_ID}
|
|
chainId: ${CERC_LACONICD_CHAIN_ID}
|
|
gas: ${CERC_LACONICD_GAS}
|
|
fees: ${CERC_LACONICD_FEES}
|
|
EOF
|
|
|
|
echo "Exported config to $config_file"
|