From 4179c5221162e29d3b15c85a2519b0e4efd28b33 Mon Sep 17 00:00:00 2001 From: AtlasTylo <165769083+AtlasTylo@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:31:20 +0200 Subject: [PATCH] Add StandardEventsFeature as a return type to features() Just added StandardEventsFeature as a return type as it was missing and my IDE did not like it. --- packages/wallet-adapter/base/src/wallet.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/wallet-adapter/base/src/wallet.ts b/packages/wallet-adapter/base/src/wallet.ts index 5875a492..22e91c6d 100644 --- a/packages/wallet-adapter/base/src/wallet.ts +++ b/packages/wallet-adapter/base/src/wallet.ts @@ -106,6 +106,7 @@ export class SolanaWalletAdapterWallet implements Wallet { get features(): StandardConnectFeature & StandardDisconnectFeature & + StandardEventsFeature & SolanaSignAndSendTransactionFeature & Partial { const features: StandardConnectFeature &