# Generate a random address

### Paper wallet

To generate a new random address you can use Obyte paper wallet offline here: <https://bonustrack.github.io/obyte-paperwallet/>

### Node.js

Open your terminal and run:

```
npm i byteball bitcore-mnemonic --save
```

Then run this script to generate a new wallet:

```javascript
const { toWif, getChash160 } = require('byteball/lib/utils');
const Mnemonic = require('bitcore-mnemonic');

const testnet = false; // Change to "true" to generate testnet wallet
const passphrase = ''; // Add a passphrase for encryption

const path = "m/44'/0'/0'/0/0";
let mnemonic = new Mnemonic();
while (!Mnemonic.isValid(mnemonic.toString())) {
  mnemonic = new Mnemonic();
}
const xPrivKey = mnemonic.toHDPrivateKey(passphrase);
const { privateKey } = xPrivKey.derive(path);
const privKeyBuf = privateKey.bn.toBuffer({ size: 32 });
const wif = toWif(privKeyBuf, testnet);
const pubkey = privateKey.publicKey.toBuffer().toString('base64');
const definition = ['sig', { pubkey }];

const { privateKey: devicePrivateKey } = xPrivKey.derive('m/1');
const devicePubKey = devicePrivateKey.publicKey.toBuffer().toString('base64');

console.log(
  'Root private key:', xPrivKey.toString(),
  '\nSeed words:', mnemonic.phrase,
  '\nPath:', path,
  '\nWIF:', wif,
  '\nWallet public key:', pubkey,
  '\nWallet address:', getChash160(definition),
  '\nDevice address:', `0${getChash160(devicePubKey)}`
);
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://obytejs.com/utils/generate-wallet.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
