public Task <BigInteger> GetPriceQueryAsync(string ipfsHash, BlockParameter blockParameter = null)
        {
            var getPriceFunction = new GetPriceFunction();

            getPriceFunction.IpfsHash = ipfsHash;

            return(ContractHandler.QueryAsync <GetPriceFunction, BigInteger>(getPriceFunction, blockParameter));
        }