public Task <string> GetOwnerQueryAsync(byte[] name, BlockParameter blockParameter = null)
        {
            var getOwnerFunction = new GetOwnerFunction();

            getOwnerFunction.Name = name;

            return(ContractHandler.QueryAsync <GetOwnerFunction, string>(getOwnerFunction, blockParameter));
        }
 public Task <string> GetOwnerQueryAsync(GetOwnerFunction getOwnerFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetOwnerFunction, string>(getOwnerFunction, blockParameter));
 }