public Task <byte[]> ContenthashQueryAsync(byte[] node, BlockParameter blockParameter = null)
        {
            var contenthashFunction = new ContenthashFunction();

            contenthashFunction.Node = node;

            return(ContractHandler.QueryAsync <ContenthashFunction, byte[]>(contenthashFunction, blockParameter));
        }
        public Task <byte[]> ContenthashQueryAsync(byte[] Node, BlockParameter BlockParameter = null)
        {
            var ContenthashFunction = new ContenthashFunction
            {
                Node = Node
            };

            return(ContractHandler.QueryAsync <ContenthashFunction, byte[]>(ContenthashFunction, BlockParameter));
        }
 public Task <byte[]> ContenthashQueryAsync(ContenthashFunction ContenthashFunction,
                                            BlockParameter BlockParameter = null)
 {
     return(ContractHandler.QueryAsync <ContenthashFunction, byte[]>(ContenthashFunction, BlockParameter));
 }