Added the GetSwapFromTokenMaxLimit

This commit is contained in:
2025-03-11 15:46:17 +03:00
parent 3b39b86d09
commit 17e89e0b88
3 changed files with 12 additions and 0 deletions

View File

@@ -863,3 +863,9 @@ func (das *DevAccountService) GetPoolSwappableVouchers(ctx context.Context, pool
return swapToList, nil
}
func (das *DevAccountService) GetSwapFromTokenMaxLimit(ctx context.Context, poolAddress, fromTokenAddress, toTokenAddress, publicKey string) (*models.MaxLimitResult, error) {
return &models.MaxLimitResult{
Max: "1339482",
}, nil
}