# eth_mnemonic_signer

> Sign Ethereum transactions with a mnemonic and optional HD path.

Latest version **1.0.9** (published 2023-01-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install eth_mnemonic_signer
pnpm add eth_mnemonic_signer
yarn add eth_mnemonic_signer
bun add eth_mnemonic_signer
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.9 |
| Published | 2023-01-25 |
| First published | 2022-11-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 24.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | elmutt |

## Links

- npm: https://www.npmjs.com/package/eth_mnemonic_signer
- Repository: https://github.com/elmutt/Ethereum-Mnemonic-Signer
- Homepage: https://github.com/elmutt/Ethereum-Mnemonic-Signer#readme
- Issues: https://github.com/elmutt/Ethereum-Mnemonic-Signer/issues
- npm.io page: https://npm.io/package/eth_mnemonic_signer

## Dependencies (4)

- [web3](https://npm.io/package/web3.md) 1.7.4
- [bip39](https://npm.io/package/bip39.md) ^3.0.4
- [ethers](https://npm.io/package/ethers.md) ^5.7.2
- [ethereumjs-wallet](https://npm.io/package/ethereumjs-wallet.md) ^1.0.2

## Recent versions

- 1.0.9 (latest) — 2023-01-25
- 1.0.5 — 2022-11-21
- 1.0.4 — 2022-11-18
- 1.0.3 — 2022-11-18
- 1.0.2 — 2022-11-17
- 1.0.1 — 2022-11-12
- 1.0.0 — 2022-11-12

## README

### Sign EVM transactions with mnemonic and optional bip44 path

#### Example

```
const mnemonic = 'all all all all all all all all all all all all'

const transaction = {
    to: `0x8a65ac0e23f31979db06ec62af62b132a6df4741`,
    data: `0x12345c0e23f31979db06ec62af62b132a6df4741`,
    gasLimit: 200000,
    gasPrice: `0x123`,
    value: '0x456',
    chainId: 1,
}

const message = 'Message to sign'
```

```
await signTx(transaction, mnemonic)
=
0xf8648082012383030d40948a65ac0e23f31979db06ec62af62b132a6df47418201238025a03ab47df7bc1fbc3c491fb35d0261b085ae9840c4ecfe72a2e29543045cd82c2fa003833f1220a80b11ad6eb6b55068604612bedf91dd5480f594aeb1efa0612e4a
```

```
await getAddress(mnemonic)
=
0x73d0385f4d8e00c5e6504c6030f47bf6212736a8
```

```
await getPrivateKey(mnemonic)
=
759e46263f1505994d11142d70027975c9b9fef15489b09bd987eb8a31aba0db
```

```
await signMessage(message, mnemonic)
=
0xb12c2106ce0983e5fb271b06d23f8e6c17dc3f05a1db17e9bcb4f925fd84157021a1ef392780ac19995eeca7f01851260b7c7fcd09a8f6dd80f3604107b9a48a1c
```

```
// custom hd path
await getAddress(mnemonic, `m/44'/60'/0'/0/1`)
=
0xfa01a39f8abaeb660c3137f14a310d0b414b2a15
```

```
// validating valid bip39 mnemonic
await validateMnemonic(mnemonic)
=
true
```

---
_Source: https://npm.io/package/eth_mnemonic_signer · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
