There are some reasons why you might want to change the payout address for your pool rewards. Maybe you feel that the keys tied to your plots are compromised after exposing your key to third-party software like forks or plotting managers and you want to farm directly to a cold wallet. Or on the contrary, you want to send your farmer rewards directly to a third-party hot wallet on your phone. Whatever the reason you want to change your payout address, note that it is vital that you check whether you have access to the address you input!
In this guide, you learn how to change payout address by either:
After you change your payout address, check if the change is accepted by the pool in your SpaceFarmer Dashboard.
Your payout address is regularly sent to the pool from the Chia farmer service. If you run multiple farmers, ensure that all of them are configured to send the same payout address. If you have multiple farmers configured with different payout addresses, your payout address as seen by the pool will change around seemingly randomly.
In the GUI, navigate to the Pools tab, then navigate to the PlotNFT for which you want to change the payout address. Click the three vertical dots and select “Edit Payout Instructions”. You will be presented with a field where you can enter the payout address for your pool rewards. Make sure that you have access to the address that you enter in this field!
chia plotnft show
on your farmer to obtain the launcher ID of the plot NFT for which you want to change the payout address. This will also show you the currently configured payout address.chia plotnft change_payout_instructions -l <LAUNCHER_ID> -a <PAYOUT_ADDRESS>
to change to your desired payout address.chia plotnft show
again, to verify that the plot NFT's payout address changed correctly.Warning: this method is easy to get wrong and obsoleted by the GUI/CLI methods above.
You can also change the payout instruction through the config.yaml. Do note that you need to convert your receive address to a puzzle hash. The steps below show you how to do this:
chia stop farmer-only
. This is important to not have the farmer mess with your config.yaml while you edit it.config.yaml
file in your .chia
folder. C:\Users\<username>\.chia\mainnet\config
~/.chia/mainnet/log/config
config.yaml
and navigate to the pool:
part (e.g. by using the search function). Here you will find a list of all your PlotNFTs. launcher_id:
; be sure to double-check!launcher_id:
is payout_instructions:
. Take the puzzle hash output from step 1 MINUS the 0x
part and change the entry. Make sure the entry should look something like payout_instructions: 61751cc01a73d5e64a07d6e37b451eed9f157f04da53e3c7d06f355928ba2113
. You can check if you copied correctly, by converting your number back to a receive address in the tool from step 1. config.yaml
.chia start farmer-only
. (Note that if you didn't stop your farmer before editing your config.yaml and you only restart the farmer at this point, your config.yaml changes are likely overwritten during farmer shutdown.)Warning: this method is easy to get wrong and obsoleted by the GUI/CLI methods above.
You can also change your payout address using the RPC API. This way, you won't accidentally mess up your config. Here's how to do this:
chia plotnft show
0x
part:curl --insecure --no-progress-meter \ --cert ~/.chia/mainnet/config/ssl/farmer/private_farmer.crt \ --key ~/.chia/mainnet/config/ssl/farmer/private_farmer.key \ -H "Content-Type: application/json" \ -X POST https://localhost:8559/set_payout_instructions \ -d '{"launcher_id": "<YOUR_LAUNCHER_ID>", "payout_instructions": "<YOUR_PUZZLE_HASH>"}'
chia plotnft show
.