@bsv/wallet-toolbox
Version:
BRC100 conforming wallet, wallet storage and wallet signer components
26 lines • 740 B
TypeScript
import { KeyDeriverApi, WalletInterface } from '@bsv/sdk';
export declare function createWalletPaymentOutput(args: {
toIdentityKey: string;
fromRootKeyHex: string;
logResult?: boolean;
}): {
senderIdentityKey: string;
derivationPrefix: string;
derivationSuffix: string;
lockingScript: string;
};
export declare function createWalletPaymentAction(args: {
toIdentityKey: string;
outputSatoshis: number;
keyDeriver: KeyDeriverApi;
wallet: WalletInterface;
logResult?: boolean;
}): Promise<{
senderIdentityKey: string;
vout: number;
txid: string;
derivationPrefix: string;
derivationSuffix: string;
atomicBEEF: string;
}>;
//# sourceMappingURL=walletLive.man.test.d.ts.map