Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-18 13:50:25 +05:00
parent 64efc8af01
commit e11e2d953d
9 changed files with 40 additions and 18 deletions

View file

@ -22,7 +22,7 @@ interface TangemPayCardDetailsRepository {
suspend fun getPin(userWalletId: UserWalletId, cardId: String): Either<UniversalError, String?>
suspend fun setPin(userWalletId: UserWalletId, pin: String): Either<UniversalError, SetPinResult>
suspend fun setPin(userWalletId: UserWalletId, cardId: String, pin: String): Either<UniversalError, SetPinResult>
suspend fun isAddToWalletDone(userWalletId: UserWalletId): Either<UniversalError, Boolean>