@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
13 lines • 442 B
TypeScript
import { type CryptoBackend } from '@btc-vision/ecpair';
import { type EccLib } from '@btc-vision/bitcoin';
/**
* Shared noble-curves backend for all EC operations.
* Instantiated once and reused across the entire library.
*/
export declare const backend: CryptoBackend;
/**
* EccLib is now a type alias for CryptoBackend.
* The backend can be used directly.
*/
export declare const eccLib: EccLib;
//# sourceMappingURL=backend.d.ts.map