Create account / seed in nodejs

Hello, how can i generate a new waves account (seed, address, keypair) in nodeJs?
Been using waves-api lib that had a Waves.Seed.create() method returning an object with seed, address and keypair but it is no longer maintained, waves-transactions is only offering transactions.
Any pointer on how to do that without waves-api?

Thank you.

Thanks a lot will check this :slight_smile:

I tried this:

npm install @waves/waves-signature-generator --save

const sign_gen = require('@waves/waves-signature-generator')

const seed = sign_gen.Seed.create();
console.log(seed); 

But im getting this error:

App threw an error during load
Error: Secure random number generation is not supported by this browser.
Use Chrome, Firefox or Internet Explorer 11

Any idea ? not working with electron ?

The same issue happened in waves-api so maybe the same fix could apply?

My method to create a seed is:

import bip39 from 'bip39';
import { SeedAdapter } from '@waves/signature-adapter';

export const createWallet = () => {
  const words = bip39.generateMnemonic(160);
  const adapter = new SeedAdapter(words).seed;

  return adapter;
};

Thanks bro, will try this as well :slight_smile: