Interface UpgradeArguments

interface UpgradeArguments {
    caller: IAddress;
    chainID: IChainID;
    code: ICode;
    codeMetadata?: ICodeMetadata;
    gasLimit: IGasLimit;
    gasPrice?: IGasPrice;
    initArguments?: any[];
    value?: ITransactionValue;
}

Properties

caller: IAddress
chainID: IChainID
code: ICode
codeMetadata?: ICodeMetadata
gasLimit: IGasLimit
gasPrice?: IGasPrice
initArguments?: any[]