예제 #1
0
        public Task <string> GetIpfsHashQueryAsync(string addr, BlockParameter blockParameter = null)
        {
            var getIpfsHashFunction = new GetIpfsHashFunction();

            getIpfsHashFunction.Addr = addr;

            return(ContractHandler.QueryAsync <GetIpfsHashFunction, string>(getIpfsHashFunction, blockParameter));
        }
예제 #2
0
 public Task <string> GetIpfsHashQueryAsync(GetIpfsHashFunction getIpfsHashFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetIpfsHashFunction, string>(getIpfsHashFunction, blockParameter));
 }