Are these a set of linux commands that will restore my wallet based on a seed?
First, you will have to enable RPC calls if you have not already done that. You will go to the node directory and open up the config.json file. Then make sure you have
ârpc_enableâ: âtrueâ
âenable_controlâ: âtrueâ
Now you will need to create a new fresh wallet:
curl -d â{âactionâ:âwallet_createâ}â [::1]:7076
Copy the WALLET_ID and input in next command to restore your WALLET_SEED:
curl -d â{âactionâ:âwallet_change_seedâ, âwalletâ:âWALLET_IDâ, âseedâ:âWALLET_SEEDââ}â [::1]:7076
Now you can list your accounts to check if itâs loaded correctly:
curl -d â{âactionâ:âaccount_listâ, âwalletâ:âWALLET_IDâ}â [::1]:7076
If you donât see any account or the account you need, you can generate it (or several) if needed. They will always be generated in the same order regardless of which wallet you use.
curl -d â{âactionâ:âaccount_createâ, âwalletâ:âWALLET_IDââââââââ}â [::1]:7076