Skip to main content

How to create a new wallet

  • Solana
  • Base (and EVM)
1

Install Solana CLI

sh -c "$(curl -sSfL https://release.solana.com/stable/install)"
2

Create a new Solana wallet

# Create a new wallet
solana-keygen new --outfile client-wallet.json

# Get the publicKey address
solana address -k client-wallet.json
Save the publicKey address. You will need it later for funding!
3

Secure your wallet

Store client-wallet.json securely and never commit it to version control.Add it to your .gitignore:
client-wallet.json
*.json