An open API service indexing awesome lists of open source software.

https://github.com/ghostdevv/mnemonic-worker

A cloudflare worker for generating mnemonic phrases
https://github.com/ghostdevv/mnemonic-worker

Last synced: 11 months ago
JSON representation

A cloudflare worker for generating mnemonic phrases

Awesome Lists containing this project

README

          

# Mnemonic Worker

This worker generates mnemonic phrases. It uses the rust [mnemonic crate](https://crates.io/crates/mnemonic) and [getrandom](https://crates.io/crates/getrandom)

# Use

- You can use my hosted version here: https://mnemonic.willow.sh/
- Or host your own copy!

# Routes

## GET [/new](https://mnemonic.willow.sh/new)

Returns an array of 24 words. For example:

```
GET /new

[
"uniform",
"equal",
"olivia",
"rhino",
"orchid",
"herbert",
"toyota",
"flower",
"quality",
"table",
"plume",
"dublin",
"bali",
"store",
"dominic",
"lotus",
"camel",
"protein",
"carrot",
"plaza",
"speed",
"remark",
"pyramid",
"john"
]
```