From 7a96b85b28692b15a745c17b5f36f4e96d816f98 Mon Sep 17 00:00:00 2001 From: lash Date: Tue, 14 Jan 2025 13:57:18 +0000 Subject: [PATCH] Correct alias result struct --- remote/account_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote/account_service.go b/remote/account_service.go index ee86653..2c67b12 100644 --- a/remote/account_service.go +++ b/remote/account_service.go @@ -15,6 +15,6 @@ type AccountService interface { FetchTransactions(ctx context.Context, publicKey string) ([]dataserviceapi.Last10TxResponse, error) VoucherData(ctx context.Context, address string) (*models.VoucherDataResult, error) TokenTransfer(ctx context.Context, amount, from, to, tokenAddress string) (*models.TokenTransferResponse, error) - CheckAliasAddress(ctx context.Context, alias string) (*dataserviceapi.AliasAddress, error) + CheckAliasAddress(ctx context.Context, alias string) (*models.AliasAddress, error) RequestAlias(ctx context.Context, hint string, publicKey string) (*models.RequestAliasResult, error) }