Official Go implementation of the QLC Chain protocol.
3.5K
docker pull qlcchain/go-qlc:latest
You can choose to run a normal node without an account or run an account node.
docker container run -d --name go-qlc \
-p 9734:9734 \
-p 127.0.0.1:9735:9735 \
-p 127.0.0.1:9736:9736 \
qlcchain/go-qlc:latest
You only need to assign a value to the environment variable seed to run the account node
docker container run -d --name go-qlc \
-e seed = "B4F6494E3DD8A036EFF547C0293055B2A0644605DE4D9AC91B45343CD0E0E559" \
-p 9734:9734 \
-p 127.0.0.1:9735:9735 \
-p 127.0.0.1:9736:9736 \
qlcchain/go-qlc:latest
Content type
Image
Digest
Size
28.4 MB
Last updated
over 5 years ago
docker pull qlcchain/go-qlc