added a model for TokenInPoolResult

This commit is contained in:
Alfred Kamanda 2025-05-17 14:36:26 +03:00
parent 8b2bd72143
commit f101ffd4c9
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -16,3 +16,7 @@ type PoolSwapResult struct {
type MaxLimitResult struct { type MaxLimitResult struct {
Max string `json:"max"` Max string `json:"max"`
} }
type TokenInPoolResult struct {
CanSwapFrom bool `json:"canSwapFrom"`
}