How to Configure Hedera Local Node
Step By Step Process
OPERATOR_ID=""
OPERATOR_KEY=""
LOCALNODE_ADDRESS="11.11.11.11"
LOCALNODE_PROTOCOL="http"
HEDERA_NET="localnode"Demo Video
Last updated
Was this helpful?
Install a Hedera Local Network following the official documentation
Configure Guardian's configuration files .env/.env.docker accordingly:
OPERATOR_ID=""
OPERATOR_KEY=""
LOCALNODE_ADDRESS="11.11.11.11"
LOCALNODE_PROTOCOL="http"
HEDERA_NET="localnode"Note:
Set LOCALNODE_ADDRESS to the IP address of your local node instance. The value above is given as example.
Set HEDERA_NET to localnode. If not specified, the default value is testnet.
Configure OPERATOR_ID and OPERATOR_KEY accordingly with your local node configuration.
Remove INITIALISATION_TOPIC_ID as the topic will be created automatically.
Set LOCALNODE_PROTOCOL to http or https accordingly with your local node configuration (It uses HTTP by default).
OPERATOR_ID: The ID of the operation
OPERATOR_Key: Private key of the operator_
LOCALNODE_ADDRESS : The address of the localnode server. This can be its IP address or a domain name
LOCALNODE_PROTOCOL : Communication protocol for interactions with the local node, can be http or https.
HEDERA_NET : Type of the Hedera node to transact.
Last updated
Was this helpful?
Was this helpful?