public Task <BigInteger> QuorumQueryAsync(BigInteger blockNumber, BlockParameter blockParameter = null)
        {
            var quorumFunction = new QuorumFunction();

            quorumFunction.BlockNumber = blockNumber;

            return(ContractHandler.QueryAsync <QuorumFunction, BigInteger>(quorumFunction, blockParameter));
        }
 public Task <BigInteger> QuorumQueryAsync(QuorumFunction quorumFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <QuorumFunction, BigInteger>(quorumFunction, blockParameter));
 }