Docs
How to Create a Wallet

How to Create a Wallet

Your Gateway to Cryptocurrency Ownership.

Creating a wallet is a crucial first step in managing your cryptocurrency. But don’t worry—it’s a simple and fast process, thanks to proven technology from the Ethereum network. A wallet is essentially a pair of keys: a private key and a public key. These keys are what allow you to securely store, send, and receive tokens.

To make things easier, we’ve opted to use a solution that’s already tried and tested in the Ethereum ecosystem. Here’s how to create your wallet in no time.

1. No Server Connection Required

Unlike some platforms that require you to connect to a server to create a wallet, our method is completely independent. You can generate your wallet locally on your own device without needing to share any information with us. It’s a secure and decentralized approach.

2. Use the Ethers Package

To generate your wallet, all you need is a package that can create Ethereum-compatible keys. We recommend using the ethers package, a widely trusted tool in the Ethereum network. You can install it via npm using this command:

npm install ethers

Or, if you prefer, you can use any other package that generates keys for Ethereum.

3. Generate Your Wallet

Once the package is installed, generating your wallet is as simple as running a single command. Here’s an example using the ethers package:

const { Wallet } = require('ethers');
 
// Generate a new random wallet
const wallet = Wallet.createRandom();
 
console.log('Address:', wallet.address);
console.log('Private Key:', wallet.privateKey);

That’s it! You now have your wallet’s public address and private key. The public address is what others will use to send you tokens, while the private key is your secret to accessing and managing your funds—so keep it safe!

4. Easy and Fast

In just a few seconds, you’ve created a fully functional cryptocurrency wallet. No need to interact with our servers, no complex setup—just a quick, secure way to manage your tokens.