-
public interface ExplorerService
-
-
Method Summary
Modifier and Type Method Description abstract Response<DappListingsDTO>getAllDapps(@Query(value = projectId) String projectId)abstract Response<ProjectListingDTO>getProjects(@Query(value = projectId) String projectId, @Query(value = entries) Integer entries, @Query(value = page) Integer page, @Query(value = isVerified) Boolean isVerified, @Query(value = isFeatured) Boolean isFeatured)abstract Response<NotifyConfigDTO>getNotifyConfig(@Query(value = projectId) String projectId, @Query(value = appDomain) String appDomain)abstract Response<WalletListingDTO>getAndroidWallets(@Query(value = projectId) String projectId, @Query(value = chains) String chains, @Query(value = sdkType) String sdkType, @Query(value = sdkVersion) String sdkVersion, @Query(value = excludedIds) String excludedIds, @Query(value = recommendedIds) String recommendedIds)-
-
Method Detail
-
getAllDapps
@GET(value = v3/dapps) abstract Response<DappListingsDTO> getAllDapps(@Query(value = projectId) String projectId)
-
getProjects
@GET(value = w3i/v1/projects) abstract Response<ProjectListingDTO> getProjects(@Query(value = projectId) String projectId, @Query(value = entries) Integer entries, @Query(value = page) Integer page, @Query(value = isVerified) Boolean isVerified, @Query(value = isFeatured) Boolean isFeatured)
-
getNotifyConfig
@GET(value = w3i/v1/notify-config) abstract Response<NotifyConfigDTO> getNotifyConfig(@Query(value = projectId) String projectId, @Query(value = appDomain) String appDomain)
-
getAndroidWallets
@GET(value = w3m/v1/getAndroidListings) abstract Response<WalletListingDTO> getAndroidWallets(@Query(value = projectId) String projectId, @Query(value = chains) String chains, @Query(value = sdkType) String sdkType, @Query(value = sdkVersion) String sdkVersion, @Query(value = excludedIds) String excludedIds, @Query(value = recommendedIds) String recommendedIds)
-
-
-
-