opnet
Version:
The perfect library for building Bitcoin-based applications.
22 lines (18 loc) • 615 B
text/typescript
import { Address } from '@btc-vision/transaction';
/**
* Interface for raw contract data.
* @interface IRawContract
* @cathegory Raw
*/
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;
}