@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
26 lines • 632 B
TypeScript
/**
* Interface for the generated wallet
*/
export interface IWallet {
/**
* The classical Bitcoin address of the wallet (P2WPKH)
*/
readonly address: string;
/**
* The classical private key of the wallet (WIF format or hex)
*/
readonly privateKey: string;
/**
* The classical public key of the wallet (hex)
*/
readonly publicKey: string;
/**
* The quantum ML-DSA private key (hex)
*/
readonly quantumPrivateKey: string;
/**
* The quantum ML-DSA public key (hex)
*/
readonly quantumPublicKey: string;
}
//# sourceMappingURL=IWallet.d.ts.map