laconicd-stack/playbooks/validator/validator-vars.example.yml
shreerang 3a483792f7 Add playbooks to run TMKMS service (#14)
Part of https://www.notion.so/Create-stacks-for-mainnet-1f2a6b22d4728034be4be2c51decf94e

Co-authored-by: Shreerang Kale <shreerangkale@gmail.com>
Reviewed-on: #14
Co-authored-by: shreerang <shreerang@noreply.git.vdb.to>
Co-committed-by: shreerang <shreerang@noreply.git.vdb.to>
2025-06-12 11:20:33 +00:00

36 lines
1.2 KiB
YAML

# The URL of the laconicd node's RPC endpoint (e.g., "tcp://NODE_PUBLIC_IP_ADDRESS:26657")
node_url: ""
# The public key of the validator node. This is required for creating the validator on chain
# It should be wrapped in single quotes
validator_pub_key: ''
# Custom moniker for the validator node
cerc_moniker: ""
# Comma-separated list of persistent peers for the laconicd node
# You can find available peers in https://git.vdb.to/cerc-io/laconicd-stack/src/branch/main/node-addresses.yml
cerc_peers: ""
# Set to true to enable TMKMS (Tendermint Key Management System) for this node
# If true, the node will use an external TMKMS for signing validator operations
tmkms_enabled:
# The chain ID for the blockchain network
cerc_chain_id: "laconic-mainnet"
# Minimum gas price for transactions, in ALNT (e.g., 0.001alnt)
min_gas_price: 0.001
# Log level for the laconicd node (e.g., "info", "debug", "error")
cerc_loglevel: "info"
# Absolute path to the mainnet genesis.json file
genesis_file: "~/cerc/laconicd-stack/config/mainnet-genesis.json"
# Absolute path to the staking-amount.json file
staking_amount_file: "~/cerc/laconicd-stack/config/staking-amount.json"
# Desired key name for the validator account
key_name: "laconic-validator"