opnet
Version:
The perfect library for building Bitcoin-based applications.
14 lines (13 loc) • 523 B
TypeScript
import { Address } from '@btc-vision/transaction';
export interface IRawContract {
readonly contractAddress: string;
readonly contractTweakedPublicKey: 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;
}