bip39-generate
Create BIP39 mnemonic phrases with customizable word counts (12, 15, 18, 21, or 24) for secure cryptocurrency wallet seed generation.
Instructions
Generate BIP39 mnemonic phrases
Input Schema
Name | Required | Description | Default |
---|---|---|---|
wordCount | No | Number of words in the mnemonic |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"wordCount": {
"description": "Number of words in the mnemonic",
"enum": [
"12",
"15",
"18",
"21",
"24"
],
"type": "string"
}
},
"type": "object"
}