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