waves_logo Docs
  • Why Waves
    Why Waves
  • Waves Basics
    Waves Basics
  • Account
    • Creating Account
      Creating Account
    • Address
      Address
    • Account Balance
      Account Balance
    • Account Data Storage
      Account Data Storage
    • Alias
      Alias
    • dApp and Smart Account
      dApp and Smart Account
    Account
  • Token (Asset)
    • Non-Fungible Token
      Non-Fungible Token
    • Smart Asset
      Smart Asset
    • Token ID
      Token ID
    • WAVES
      WAVES
    Token (Asset)
  • Transaction
    • Transaction Fee
      • Sponsored Fee
        Sponsored Fee
      Transaction Fee
    • Signature and Proofs
      Signature and Proofs
    • Transaction Types
      • Burn Transaction
        Burn Transaction
      • Create Alias Transaction
        Create Alias Transaction
      • Data Transaction
        Data Transaction
      • Exchange Transaction
        • Order
          Order
        Exchange Transaction
      • Genesis Transaction
        Genesis Transaction
      • Invoke Script Transaction
        Invoke Script Transaction
      • Issue Transaction
        Issue Transaction
      • Lease Cancel Transaction
        Lease Cancel Transaction
      • Lease Transaction
        Lease Transaction
      • Mass Transfer Transaction
        Mass Transfer Transaction
      • Reissue Transaction
        Reissue Transaction
      • Set Asset Script Transaction
        Set Asset Script Transaction
      • Set Script Transaction
        Set Script Transaction
      • Sponsor Fee Transaction
        Sponsor Fee Transaction
      • Transfer Transaction
        Transfer Transaction
      • Update Asset Info Transaction
        Update Asset Info Transaction
      • Ethereum-like Transaction
        Ethereum-like Transaction
      Transaction Types
    • Transaction Validation
      Transaction Validation
    Transaction
  • Block
    • Transactions Root Hash
      Transactions Root Hash
    • Genesis Block
      Genesis Block
    Block
  • Node
    • Leasing
      Leasing
    • Generator’s Income
      Generator’s Income
    • Monetary Policy
      Monetary Policy
    Node
  • Mainnet, Testnet, Stagenet
    Mainnet, Testnet, Stagenet
  • Unit Zero
    Unit Zero
  • Oracle
    Oracle
  • Protocols & Data formats
    • Cryptographic Practical Details
      Cryptographic Practical Details
    • Leased Proof of Stake
      Leased Proof of Stake
    • Waves-NG Solution
      Waves-NG Solution
    • Waves-NG Protocol
      Waves-NG Protocol
    • Waves 1.5
      Waves 1.5
    • Blockchain Data Types
      Blockchain Data Types
    • Binary Format
      • Address Binary Format
        Address Binary Format
      • Alias Binary Format
        Alias Binary Format
      • Block Binary Format
        Block Binary Format
      • Network Message Binary Format
        • Block Message Binary Format
          Block Message Binary Format
        • Checkpoint Message Binary Format
          Checkpoint Message Binary Format
        • Get Block Message Binary Format
          Get Block Message Binary Format
        • Get Peers Message Binary Format
          Get Peers Message Binary Format
        • Get Signatures Message Binary Format
          Get Signatures Message Binary Format
        • Handshake Message Binary Format
          Handshake Message Binary Format
        • Peers Message Binary Format
          Peers Message Binary Format
        • Score Message Binary Format
          Score Message Binary Format
        • Signatures Message Binary Format
          Signatures Message Binary Format
        • Transaction Message Message Binary Format
          Transaction Message Message Binary Format
        Network Message Binary Format
      • Order Binary Format
        Order Binary Format
      • Transaction Binary Format
        • Burn Transaction Binary Format
          Burn Transaction Binary Format
        • Create Alias Transaction Binary Format
          Create Alias Transaction Binary Format
        • Data Transaction Binary Format
          Data Transaction Binary Format
        • Exchange Transaction Binary Format
          Exchange Transaction Binary Format
        • Genesis Transaction Binary Format
          Genesis Transaction Binary Format
        • Invoke Script Transaction Binary Format
          Invoke Script Transaction Binary Format
        • Issue Transaction Binary Format
          Issue Transaction Binary Format
        • Lease Cancel Transaction Binary Format
          Lease Cancel Transaction Binary Format
        • Lease Transaction Binary Format
          Lease Transaction Binary Format
        • Mass Transfer Transaction Binary Format
          Mass Transfer Transaction Binary Format
        • Reissue Transaction Binary Format
          Reissue Transaction Binary Format
        • Set Asset Script Transaction Binary Format
          Set Asset Script Transaction Binary Format
        • Set Script Transaction Binary Format
          Set Script Transaction Binary Format
        • Sponsor Fee Transaction Binary Format
          Sponsor Fee Transaction Binary Format
        • Transfer Transaction Binary Format
          Transfer Transaction Binary Format
        • Update Asset Info Transaction Binary Format
          Update Asset Info Transaction Binary Format
        • Ethereum-like Transaction Binary Format
          Ethereum-like Transaction Binary Format
        Transaction Binary Format
      • Transaction Proof Binary Format
        Transaction Proof Binary Format
      Binary Format
    • Validation Rules
      Validation Rules
    Protocols & Data formats
  • Glossary
    Glossary
      • English
      • Русский
      On this page
        • How to Create Wallets for Users in Bulk?
      waves_logo Docs

          # How to Create Account / Waves Wallet

          To create a Waves account, you don't need to register anywhere. To create a Waves account means to generate account key pair and address based on a secret (seed) phrase.

          ⚠️ Security Information

          • The secret phrase or the private key derived from it provides complete control over the account, including the ability to dispose of funds. Do not give your secret phrase and private key to anyone, and do not publish or send them.
          • The secret phrase cannot be changed: another secret phrase (even one that differs by a single character) will generate a different key pair, and therefore a different account.
          • If you lose your secret phrase and private key, you will no longer be able to access your account permanently. We strongly encourage you to write down the secret phrase on a piece of paper and store it in a safe place.
          • If the secret phrase is compromised (you have accidentally sent it to someone or suspect that it was taken by fraudsters), immediately create a new account and transfer all assets to it.

          You can use one of the recommended apps to create an account:

          • Keeper Wallet browser extension

            See instructions in the Getting started article.

          • WX Network online/desktop/mobile app developed by the third party team from the community.

            See instructions in the How to Create a New Account article in the WX Network Help Center.

          • WavesFX app developed by the third party team from the community.

          Alternatively, you can use one of the client libraries, such as:

          • TypeScript/JavaScript library ts-lib-crypto (it is also included in waves-transactions ):

            const libCrypto = require('@waves/ts-lib-crypto')
            
            const seed = libCrypto.randomSeed() // or input your existing seed
            const sk = libCrypto.privateKey(seed)
            const pk = libCrypto.publicKey(seed)
            const addressBase58 = libCrypto.address(seed) // address for Mainnet
            const addressTestnetBase58 = libCrypto.address(seed, 'T') // address for Testnet
            
          • Python module Pywaves

            import pywaves as pw
            
            # pw.setChain('testnet') # Mainnet by default
            
            # generate a new address
            myAddress = pw.Address(seed='<insert your seed here>')
            
            print(f'Your seed:   {myAddress.seed}')
            print(f'Private Key: {myAddress.privateKey}')
            print(f'Public Key:  {myAddress.publicKey}')
            print(f'Address:     {myAddress.address}')
            
          • Java library WavesJ

            String seed = Crypto.getRandomSeedPhrase();
            PrivateKey privateKey = PrivateKey.fromSeed(seed);
            PublicKey publicKey = PublicKey.from(privateKey);
            Address address = Address.from(publicKey);
            

          Please note:

          • An account key pair and address are generated and stored locally. No data needs to be sent to the node or anywhere else.
          • The address is immediately available for transferring tokens. In particular, it can be specified as the recipient in the Transfer transaction.
          • The address appears on the blockchain along with the first transaction in which the account participates.
          • To use your account in another application or on another device, you need to enter a secret phrase on it and repeat the key pair generation.

          # How to Create Wallets for Users in Bulk?

          It is bad practice to generate accounts for users centrally. Knowing the secret phrase or private key allows you to do anything on behalf of the account. It is unsafe to store and transfer this data: in addition to the abuse of confidence, there is a risk of data theft or leakage.

          Each user should create their own account, and the application should obtain a user signature separately for each transaction. To do this, you can use the Signer library on your site. Signer provides the user with the ability to log into their account or create an account and then sign transactions without providing their secret phrase or private key to your app.

          Account
          Address
          Account
          Address