description |
---|
Here is a step-by-step guide for generating an Arweave cold wallet |
The following procedure allows you to generate an extremely secure Arweave cold wallet. Using this procedure, your keys will never be exposed to an internet-connected computer before you intend to use your tokens, giving you exceptionally strong guarantees about the security of your AR.
{% hint style="info" %} This procedure may seem long but we have broken each of its steps down into granular chunks that should be simple to follow {% endhint %}
- Open up https://arweave.app in your browser tab.
- Once loaded, disconnect your computer from the internet
- Click the [ + ] button in the bottom left
- Click the big "Create new wallet" button in the screen that pops up.
- Write down your passphrase on a piece of paper.
- When the wallet generation step completes, click the "Click to proceed" button.
- Identify your newly created wallet on the next screen and click the "Download" button to download the key file.
- Make copies of this file on multiple offline storage mediums (for example, USB sticks or prints of the file to physical paper). Store these copies securely
- Click the "Delete" button to remove your newly created wallet from the browser.
- Reconnect to the internet
- Download ArConnect for Chrome or Firefox.
- Once downloaded, the wallet will take you to the setup page. At this point, you'll need to disconnect your device from the internet. If the setup page has not been opened, you can click on the ArConnect icon in the extensions section (seen below) to open it.
Chrome | Firefox |
- On the setup page, you'll need to create a password. Fill out the password inputs and click "Create".
- Click the "New Wallet" button on the next screen and wait for your new wallet to generate. While this process is in progress you can write down your seedphrase on a piece of paper.
- Once the wallet has generated, a button with the text "Download Keyfile" will appear. Click it to download the generated keyfile.
- As a safety measure, this file should be stored on different offline storage mediums, like how mentioned above.
- Now go into your extensions settings by entering
chrome://extensions
on Chrome,about:addons
on Firefox into your browser's address bar. There you'll have to identify the ArConnect extension/add-on and click on the "Remove" button to uninstall it.
Chrome | Firefox |
- Your wallet is now removed from your browser and you can reconnect to the internet.
{% hint style="warning" %} This process is for more advanced users. If you have not used a CLI before, it is recommended to follow the guides above! {% endhint %}
- You'll need to have Node.js and npm installed for the ArDrive CLI to work.
- Open up your OS' default terminal and install the ArDrive CLI with the following command:
npm install -g ardrive-cli
- Disconnect your device from the internet.
- Generate a seedphrase with the following command, then write it down on a piece of paper.
ardrive generate-seedphrase
- Copy the generated seedphrase and paste it between the quotes in the following command. Run the command to generate a keyfile.
ardrive generate-wallet -s "PASTE_GENERATED_SEEDPHRASE_HERE" > ./wallet.json
- You'll be able to find you keyfile name
wallet.json
in the directory where you ran the CLI. You should copy it to an offline storage medium and delete the file from your device. - You can now reconnect your device to the internet.
{% hint style="success" %} Congratulations for completing the steps! Your AR tokens will now be stored safely and securely for months and years to come {% endhint %}
Had problems? Don’t worry, drop us a line at [email protected] and we'd be happy to help.
If you'd like to make transactions from your cold wallet the ArDrive command line tool has a nice writeup for how to securely send a transaction from a cold wallet.