Server for generating seed phrases and authorization using a seed phrase in the Minter blockchain. Server listens to port: 3999.
GET: http://localhost:3999/api/v1/newMnemonic
Result:
{
"status":true,
"mnemonic":"mushroom urban cruel bone sting cash office glide impact twin finger bless",
"err_msg":""
}
or
POST: http://localhost:3999/api/v1/authSeed
Body-post: { "sp":"mushroom urban cruel bone sting cash office glide impact twin finger bless" }
Result:
{
"status":true,
"mnemonic":"mushroom urban cruel bone sting cash office glide impact twin finger bless",
"err_msg":"",
"address":"Mx7c09f6b08d175a5d799c876db6849ec79e5719fa",
"priv_key":"b69361e151b563ceb83b401b3ee5bca49ef433186eb12e454a5cb5fe62b0c624"
}