How to change wallet address for Store on Mac

Hi, I am running Store on a Mac using docker and I want to change the original wallet address I setup to my wallet address on my Ledger Nano X. Can someone point me in the right direction or the code to be able to do this as I seem to not be doing it right.
Cheers
Efraim

Please follow the instructions in the FAQ.

Thanks for the fax but I am a bit confused if I am to rerun the whole text in terminal or just specific for the payout address.

docker run -d --restart unless-stopped --stop-timeout 300
-p 28967:28967/tcp
-p 28967:28967/udp
-p 127.0.0.1:14002:14002
-e WALLET=“0xXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX”
-e EMAIL="user@example.com"
-e ADDRESS=“domain.ddns.net:28967”
-e STORAGE=“2TB”
–mount type=bind,source="",destination=/app/identity
–mount type=bind,source="",destination=/app/config
–name storagenode storjlabs/storagenode:latest

Cheers

After you edited the payout address, you need to run storagenode with the entire text including all parameters, not only the Wallet address line.

You also need to remove a previous container before run a new one:

docker stop -t 300 storagenode
docker rm storagenode

Then run your full docker run command with all your parameters include changed ones.

Thank you Alexey for the explanation.

I ran all the code and changed the wallet address. Thanks everyone for your help.

Cheers

1 Like