Generate secret keys
Key Generation Options
Generate Aptos Private Key
const { utils } = window.fantasysAptosWalletSDK;
// in hex string, starts with 0x...
const newPrivateKey = utils.generateAptosPrivateKey();Generate Mnemonic (12 words)
const { utils } = window.fantasysAptosWalletSDK;
const mnemonic = utils.generateAptosMnemonic();Last updated