Interface DeployArguments

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

Properties

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