UNPKG

@btc-vision/transaction

Version:

OPNet transaction library allows you to create and sign transactions for the OPNet network.

20 lines (17 loc) 326 B
/** * Interface for the generated wallet */ export interface IWallet { /** * The address of the wallet */ readonly address: string; /** * The private key of the wallet */ readonly privateKey: string; /** * The public key of the wallet */ readonly publicKey: string; }