Updated on 2026-08-14

This commit is contained in:
Tangem 2024-08-12 22:01:26 +05:00
parent f748b8539d
commit f1238f5ef8
20 changed files with 528 additions and 88 deletions

View file

@ -0,0 +1,8 @@
package com.tangem.domain.staking.model
sealed class StakingApproval {
data class Needed(val spenderAddress: String) : StakingApproval()
data object Empty : StakingApproval()
}