Faq

Gold blockchain CLI Commands Reference

Basic commands

Install Gold---Install

gold -h – Help 

       Some examples:
           gold -h
           gold plots -h
           gold plots check -h
           gold plotters madmax -h
           gold start -h

gold init – migrates files from an old version to the latest version after an update

gold start node – starts node only

gold start node -r – restarts the node

gold start farmer – starts the farmer, harvester, bode, and wallet

gold start farmer -r – restarts everything

gold plots check – checks all plot files

gold show -s – show status of node

gold farm summary – Show summary of the farmer

gold wallet show – Show wallet data

gold keys generate – Generate keys

gold keys add – Add keys / seed

gold stop -d all – turn off all gold services

gold netspace – show the current size of the network

gold version – shows the current gold version


Creating gold Plots

gold create – creates a new plot according to the settings chosen in the start parameters

-k NUMBER – specifies the k-size for the plot – valid values are 32, 33, 34 or 35. A k32 plot requires about 240 GB of temp memory and ends up with about 100 GB.

-n NUMBER – the number of times a plot should be created

-b NUMBER – size of memory to be used in MB (default 4608 MB).

-f NUMBER – the farmer public key can be specified here

-p NUMBER – the public key of a pool can be specified here

-a NUMBER – here you can specify the fingerprint of the key to use, this option is useful if you have multiple private keys stored

-t PATH – specifies the path to the temp. directory

-2 PATH – specifies the path to the optional second temp. directory; this directory is used only for phase 3 and 4

-d PATH – specifies the path to the final directory where the plot will be saved

-r NUMBER – specifies the number of CPU cores to use in phase 1. 2 cores seems to be the best setting, more than 4 cores will give negative results.

-u NUMBER – specifies the number of buckets / “pots”. More pots require less ram but more accesses to the SSD/HDD. There is no advantage to use less pots, the default is 128

-e – disables bitfield plotting. This setting is not recommended.


Wallet commands

gold wallet get_address – Get a receiving address

gold wallet get_transaction – Obtain a transaction

gold wallet get_transactions – Show all transactions

gold wallet show – Show wallet data

gold wallet send – send gold to another wallet


Plot commands

gold plots add PATH – adds a directory as plot directory

gold plots check – checks the existing plot files

gold plots create – creates a new plot (see above)

gold plots remove – removes a plot directory from the configuration

gold plots show – shows the currently stored paths for plots


farm commands

gold farm challenges – displays recent challenges

gold farm summary – displays a summary of the farmer


key commands

gold keys add – add a key by seed

gold keys delete -f NUMBER – deletes the key with the fingerprint NUMBER

gold keys delete_all – deletes all keys

gold keys generate – generates a new key

gold keys generate_and_print – generates a new key WITHOUT saving it

gold keys show – shows all saved keys

gold keys sign – signs a message with the private key

gold keys verify – verifies a signature

BACK