public Task <BigInteger> CommitmentsQueryAsync(byte[] returnValue1, BlockParameter blockParameter = null)
        {
            var commitmentsFunction = new CommitmentsFunction();

            commitmentsFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <CommitmentsFunction, BigInteger>(commitmentsFunction, blockParameter));
        }
 public Task <BigInteger> CommitmentsQueryAsync(CommitmentsFunction commitmentsFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <CommitmentsFunction, BigInteger>(commitmentsFunction, blockParameter));
 }