From 13353eb806b619742a70abdc105b711efa95447b Mon Sep 17 00:00:00 2001 From: kaladinlight <35275952+kaladinlight@users.noreply.github.com> Date: Fri, 9 Aug 2024 10:53:58 -0600 Subject: [PATCH] chore: update multisig docs --- cli/MultiSig.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/MultiSig.md b/cli/MultiSig.md index ed816cf..ea4e94f 100644 --- a/cli/MultiSig.md +++ b/cli/MultiSig.md @@ -11,10 +11,10 @@ ```bash git clone https://gitlab.com/thorchain/thornode.git cd thornode -git checkout develop +git fetch origin +git checkout {current_version} git pull -cd cmd/thornode -go build --tags cgo,ledger +TAG=mainnet,cgo,ledger make install ``` ## Create MultiSig @@ -27,7 +27,7 @@ go build --tags cgo,ledger ```bash ./thornode keys show {person1} --pubkey ``` -- Import signer pubkeys: +- Import signer pubkeys (ex. `'{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"someKeyValue}'`): ```bash ./thornode keys add {person2} --pubkey '{person2_pubkey}' ./thornode keys add {person3} --pubkey '{person3_pubkey}'