How do I change the key generation method from secure random to bip39 seed? I modified the json as in the example and ran it, but the cmd window closed.
{
"command": "Find",
"finder": {
"keyProducerJavaRandom": [
{
"keyProducerJavaRandomInstance": "SECURE_RANDOM",
"customSeed": 0,
"keyProducerId": "exampleKeyProducerSecureRandomId",
"privateKeyMaxNumBits": 256
}
Here, i change the secure_random to bip39_seed
but not working
{
"keyProducerJavaRandomInstance": "BIP39_SEED",
"mnemonic": "abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about"
}
I did it as an example, but it was forced to terminate the same way.
How do I change the key generation method from secure random to bip39 seed? I modified the json as in the example and ran it, but the cmd window closed.
{ "command": "Find", "finder": { "keyProducerJavaRandom": [ { "keyProducerJavaRandomInstance": "SECURE_RANDOM", "customSeed": 0, "keyProducerId": "exampleKeyProducerSecureRandomId", "privateKeyMaxNumBits": 256 }Here, i change the secure_random to bip39_seed
but not working
{ "keyProducerJavaRandomInstance": "BIP39_SEED", "mnemonic": "abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about" }I did it as an example, but it was forced to terminate the same way.