opnet
Version:
The perfect library for building Bitcoin-based applications.
14 lines (13 loc) • 553 B
TypeScript
import { Address } from '../../../node_modules/@btc-vision/transaction/build/index.js';
export interface IRawContract {
readonly contractAddress: string;
readonly contractPublicKey: string | Buffer;
readonly bytecode: Buffer | string;
readonly wasCompressed: boolean;
readonly deployedTransactionId: string;
readonly deployedTransactionHash: string;
readonly deployerPubKey: Buffer | string;
readonly contractSeed: Buffer | string;
readonly contractSaltHash: Buffer | string;
readonly deployerAddress: Address;
}