Interface RPCOriginationOperation

Description

RPC origination operation

interface RPCOriginationOperation {
    balance: string;
    delegate?: string;
    fee: number;
    gas_limit: number;
    kind: ORIGINATION;
    script: {
        code: any;
        storage: any;
    };
    source?: string;
    storage_limit: number;
}

Properties

balance: string
delegate?: string
fee: number
gas_limit: number
kind: ORIGINATION
script: {
    code: any;
    storage: any;
}

Type declaration

  • code: any
  • storage: any
source?: string
storage_limit: number

Generated using TypeDoc