Create a Private Key
Last updated
Was this helpful?
Last updated
Was this helpful?
Like most other cryptocurrencies, to send and recieve funds on Radius, you will need to generate a keypair and the associated Ethereum address. If you already have an Ethereum address and the corresponding keypair, you can use it on Radius to sign transactions and receive funds. Below we explain how you may generate one if you don't have one, or would like to create a new one.
There are many ways to do this. For l33t coders or folks who prefer a CLI interface, we recommend using cast. For those more comfortable with a browser and GUI, MetaMask is a reasonable option.
Metamask is a popular Ethereum wallet that runs in most popular browsers.
When setting up for the first time, there will be a few simple steps to complete.
Click "Create a new wallet"
Finish the account setup process
You should now have an account setup.
At the top middle of the screen, you will see an account nickname (default is "Account 1"), and your account address.
If you click on the account dropdown (the arrow next to the account nickname), you will see a prompt to "Add account or hardware wallet".
Click "Add account or hardware wallet", then click "Add a new Ethereum account".
Enter a nickname (or don't) and click "Add account". You should now have another account in MetaMask.
For app development you will likely want to work outside of MetaMask, and will likely need a way to sign transactions.
Click on the account dropdown, and click the three dots next to the account for which you want to get the private key.
Click on account details.
Click on "Show private key" WARNING! If you plan to use this private key for anything sensitive, do not share this with anyone. Maybe even go hide in a corner when you display it on the screen.
You can copy your private key from there.
Cast is a CLI tool for interacting with Ethereum. It's developed by Foundry, maintained by Paradigm. You can start installiation in your terminal with:
Or follow the official instructions.
If you're going this route, it's the opinion of the author that you should get familiar with the tools cast
, and foundry
. Additionally local testing of smart contracts can be done easily with anvil
.
Once setup, generating a keypair is as simple as:
This will print a keypair to the console.
Then save these values somewhere, and use the given private key to sign transactions.
If you like, you can import this private key into Metamask or other popular wallets for a graphical interface by which you can send transactions and check your balance.