public Task <string> GetCreationAddressQueryAsync(BigInteger gUID, BlockParameter blockParameter = null)
        {
            var getCreationAddressFunction = new GetCreationAddressFunction();

            getCreationAddressFunction.GUID = gUID;

            return(ContractHandler.QueryAsync <GetCreationAddressFunction, string>(getCreationAddressFunction, blockParameter));
        }
 public Task <string> GetCreationAddressQueryAsync(GetCreationAddressFunction getCreationAddressFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetCreationAddressFunction, string>(getCreationAddressFunction, blockParameter));
 }