opnet
Version:
The perfect library for building Bitcoin-based applications.
16 lines (15 loc) • 631 B
TypeScript
import { Address } from '@btc-vision/transaction';
import { IRawContract } from './interfaces/IRawContract.js';
export declare class ContractData implements Omit<IRawContract, 'contractTweakedPublicKey'> {
readonly contractAddress: string;
readonly contractPublicKey: Address;
readonly bytecode: Buffer;
readonly wasCompressed: boolean;
readonly deployedTransactionId: string;
readonly deployedTransactionHash: string;
readonly deployerPubKey: Buffer;
readonly contractSeed: Buffer;
readonly contractSaltHash: Buffer;
readonly deployerAddress: Address;
constructor(raw: IRawContract);
}