From bf830e92dea2310bb7fe9df4244fd53ab51cc0c5 Mon Sep 17 00:00:00 2001 From: alfred-mk Date: Thu, 5 Jun 2025 20:41:08 +0300 Subject: [PATCH] add the RetrievePoolDetails to the account_service --- remote/account_service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/remote/account_service.go b/remote/account_service.go index bafa665..020a21a 100644 --- a/remote/account_service.go +++ b/remote/account_service.go @@ -22,6 +22,7 @@ type AccountService interface { SendPINResetSMS(ctx context.Context, admin, phone string) error PoolDeposit(ctx context.Context, amount, from, poolAddress, tokenAddress string) (*models.PoolDepositResult, error) FetchTopPools(ctx context.Context) ([]dataserviceapi.PoolDetails, error) + RetrievePoolDetails(ctx context.Context, sym string) GetPoolSwappableFromVouchers(ctx context.Context, poolAddress, publicKey string) ([]dataserviceapi.TokenHoldings, error) GetPoolSwappableVouchers(ctx context.Context, poolAddress string) ([]dataserviceapi.TokenDetails, error) GetPoolSwapQuote(ctx context.Context, amount, from, fromTokenAddress, poolAddress, toTokenAddress string) (*models.PoolSwapQuoteResult, error)