You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Hedera Solo
v0.2
A GitHub Action for setting up a Hedera Solo network.
The network contains one node that can be accessed at localhost:50211
.
The action creates an account that contains 10,000,000 hbars. All information about the account is stored as output to the github action.
The GitHub action takes the following inputs:
installMirrorNode
: A boolean parameter that isfalse
by default. If set totrue
, the action will install a mirror node in addition to the main node. The mirror node can be accessed atlocalhost:8080
.
The GitHub action outputs the following information:
accountId
: The account ID of the account created.privateKey
: The private key of the account created.publicKey
: The public key of the account created.
- name: Setup Hedera Solo
uses: OpenElements/[email protected]
id: solo
- name: Use Hedera Solo
run: |
echo "Account ID: ${{ steps.solo.outputs.accountId }}"
echo "Private Key: ${{ steps.solo.outputs.privateKey }}"
echo "Public Key: ${{ steps.solo.outputs.publicKey }}"
This action is based on the work of Hedera Hashgraph and Hedera Solo. Without the great help of Timo, Nathan, and Lenin this action would not exist.