Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.walletkit.com/llms.txt

Use this file to discover all available pages before exploring further.

Prerequisite: Create Wallet
const exportWalletResp = await wk.wallets.export({
    network: Network.Base,
    address: "<walelt address>",
    userPin: "<user pin>",
});

if (!exportWalletResp.ok) {
// handle error
}

const mnemonicPhrase = exportWalletResp.body.mnemonicPhrase;