interface OffChainNewContract {
    abiVersion: number;
    callData: string;
    code: ByteCode;
    deposit: bigint;
    op: "OffChainNewContract";
    owner: string;
    vmVersion: number;
}

Hierarchy (view full)

Properties

abiVersion: number
callData: string

Base64Check encoded tagged byte array

code: ByteCode
deposit: bigint
op

Polymorphic discriminator, which specifies the different types this object can be

owner: string

Base58Check encoded tagged pubkey

vmVersion: number