Updated on 2026-08-14

This commit is contained in:
Tangem 2025-05-06 12:59:42 +03:00
commit 91bcf5d117
50 changed files with 887 additions and 198 deletions

View file

@ -172,6 +172,9 @@ interface TangemTechApi {
@GET("user-wallets/wallets/{wallet_id}")
suspend fun getWalletById(@Path("wallet_id") walletId: String): ApiResponse<WalletResponse>
@GET("user-wallets/wallets/by-app/{app_id}")
suspend fun getWallets(@Path("app_id") appId: String): ApiResponse<List<WalletResponse>>
// endregion
companion object {