Interface GenerateMethodCallArgs

The argument object for generateMethodCall

The signed long hash for the method generated by BlockTalk compiler

Optional argument list for the method. The arguments must be numerical, and cannot be alphanumeric. To convert a short text (max 8 chars/bytes) into a numerical representation use convertShortStringToContractData

interface GenerateMethodCallArgs {
    methodArgs?: ContractData[];
    methodId: string;
}

Properties

methodArgs?: ContractData[]
methodId: string