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
- Host: GitHub
- URL: https://github.com/ghostdevv/mnemonic-worker
- Owner: ghostdevv
- License: other
- Created: 2022-08-19T22:46:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T23:36:37.000Z (about 3 years ago)
- Last Synced: 2025-02-14T02:54:16.510Z (about 1 year ago)
- Language: Rust
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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"
]
```