public string GetFunctionParameters(Nethereum.ABI.FunctionEncoding.Parameter[] parameters) { return string.Join(",", parameters.Select(x => x.Name).ToArray()); }
public string GetFunctionCallParameters(Nethereum.ABI.FunctionEncoding.Parameter[] parameters) { return string.Join(",", parameters.Select(x => GetTypeMap(x.ABIType.Name) + " " + x.Name).ToArray()); }