Interface IRawContract

Interface for raw contract data. IRawContract

Raw

interface IRawContract {
    bytecode: string | Buffer;
    contractAddress: string;
    contractSaltHash: string | Buffer;
    contractSeed: string | Buffer;
    deployedTransactionHash: string;
    deployedTransactionId: string;
    deployerAddress: string;
    deployerPubKey: string | Buffer;
    p2trAddress: string;
    virtualAddress: string;
    wasCompressed: boolean;
}

Implemented by

Properties

bytecode: string | Buffer
contractAddress: string
contractSaltHash: string | Buffer
contractSeed: string | Buffer
deployedTransactionHash: string
deployedTransactionId: string
deployerAddress: string
deployerPubKey: string | Buffer
p2trAddress: string
virtualAddress: string
wasCompressed: boolean