@btc-vision/transaction
Version:
OPNet transaction library allows you to create and sign transactions for the OPNet network.
13 lines (12 loc) • 334 B
JavaScript
import { networks } from '@btc-vision/bitcoin';
export class ContractBaseMetadata {
constructor(network = networks.bitcoin) {
this.network = network;
}
static getAddress(network = networks.bitcoin) {
throw new Error('Method not implemented.');
}
getAddress() {
return this.address;
}
}