I want to create the blockstack address by the mnemonic word ;
How can i do it ?
Where can i find the method about it ?
If i have the BTC privateKey; How can i get the blockstack address;
Thanks for helping me。
I want to create the blockstack address by the mnemonic word ;
How can i do it ?
Where can i find the method about it ?
If i have the BTC privateKey; How can i get the blockstack address;
Thanks for helping me。
You will need to install the CLI and use the make_keychain
command to generate mnemonics. The CLI can be found here: https://github.com/blockstack/cli-blockstack
To generate an address from a private key, you can first get the BTC address and use the convert_address
command to convert it to a STX address (the only differences between the two are the encoding alphabet and the version byte – both encode a version byte, a 20-byte RIPEMD-160(SHA256)
hash of your public key, and a 4-byte checksum).
Thanks