UNPKG

@btc-vision/transaction

Version:

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

16 lines 552 B
import { type Network } from '@btc-vision/bitcoin'; export declare abstract class ContractBaseMetadata { protected network: Network; protected abstract readonly address: string; protected constructor(network?: Network); /** * @description Get the contract address * @param {Network} network - The network to get the address for */ static getAddress(_network?: Network): string; /** * @description Get the contract address */ getAddress(): string; } //# sourceMappingURL=ContractBaseMetadata.d.ts.map