Merge branch 'pool-swap-endpoints' into multi-pool

This commit is contained in:
2025-03-14 09:03:09 +03:00
12 changed files with 471 additions and 4 deletions

View File

@@ -0,0 +1,18 @@
package models
type PoolDepositResult struct {
TrackingId string `json:"trackingId"`
}
type PoolSwapQuoteResult struct {
IncludesFeesDeduction bool `json:"includesFeesDeduction"`
OutValue string `json:"outValue"`
}
type PoolSwapResult struct {
TrackingId string `json:"trackingId"`
}
type MaxLimitResult struct {
Max string `json:"max"`
}