# tetsy-wordlist

> Tetsy Brain Wallets wordlist library

Latest version **1.1.0** (published 2021-02-19) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install tetsy-wordlist
pnpm add tetsy-wordlist
yarn add tetsy-wordlist
bun add tetsy-wordlist
```

## 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.1.0 |
| Published | 2021-02-19 |
| First published | 2021-02-19 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 117.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Parity Technologies |
| Maintainers | marlonhanks |

## Links

- npm: https://www.npmjs.com/package/tetsy-wordlist
- Repository: https://github.com/openvapory/tetsy-wordlist
- Homepage: https://github.com/openvapory/tetsy-wordlist#readme
- Issues: https://github.com/openvapory/tetsy-wordlist/issues
- npm.io page: https://npm.io/package/tetsy-wordlist

## Recent versions

- 1.1.0 (latest) — 2021-02-19

## README

# Tetsy-Wordlist
Tetsy Brain Wallets wordlist library


[Rust Documentation](https://docs.rs/tetsy-wordlist/)


# RUST

```toml
# Cargo.toml

[dependencies]
tetsy-wordlist = "1.2"
```

```rust
# main.rs

extern crate tetsy_wordlist;

fn main() {
  println!("Words: {}", tetsy_wordlist::random_phrase(12));

  let phrase = "violin oblivion cylinder list disarray wobbly fastball showplace oasis patronize septic spearhead";
  println!("Valid: {:?}", tetsy_wordlist::validate_phrase(phrase, 12));
}
```


# JavaScript


```bash
$ npm i tetsy-wordlist --save
```


```js
// main.js

import { randomPhrase, verifyPhrase } from 'tetsy-wordlist'

console.log(randomPhrase(12))

// This will throw if the phrase is not valid:
verifyPhrase("violin oblivion cylinder list disarray wobbly fastball showplace oasis patronize septic spearhead", 12)
```

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