How do I generate a public key/wallet from a private key in Javascript?
In the documentation of Cosmos SDK and everywhere in the internet what's described is how to generate a wallet out of a mnemonic phrase: import { DirectSecp256k1HdWallet } from "@cosmjs/proto-signing"; const my_mnemonic = "<..........>"; const wallet_1 = await DirectSecp256k1HdWallet.fromMnemonic(my_mnemonic, {prefix:…