-
Notifications
You must be signed in to change notification settings - Fork 213
Conversation
- Save this in a file named `restore-wallet.json` in the `testnet` folder: | ||
|
||
``` | ||
> cd $PLUTUS/plutus-pab/test-node/ | ||
> cat testnet/restore-wallet.json | ||
{ "name": "PAB testing wallet" | ||
, "mnemonic_sentence": ["word1", "word2", ...] | ||
, "passphrase": "pab123456789" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe a better way to put the recovery phrase? I had to manually add the double quotes and commas..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes; I ended up using a search-and-replace: of space (
) to ", "
😀
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh right, that works too :D
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did do it manually the first few times 😁
> export WALLET_ID=... | ||
``` | ||
|
||
- Put some tAda in it, by first obtaining an address: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correction: Ada
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, unless tAda
means testnet Ada
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I discovered this yesterday!
|
||
``` | ||
> cd $PLUTUS/plutus-pab/test-node/ | ||
> cabal exec -- plutus-chain-index --config testnet/chain-index-config.json start-index |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm getting a testnet/chain-index-config.json
not found.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@koslambrou It should be there; did you run that command from the right dir? (note the file is added in this diff)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, I was on the wrong branch
Fixes SCP-3021
I think the instructions need a note to wait for the chain-index to say it's ready to go; otherwise the entire thing fails, silently.
TODO:
Add a gif showing it in operationAdd Jann's notes about why it may go wrong.Pre-submit checklist: