Skip to content

Commit

Permalink
fix typs again
Browse files Browse the repository at this point in the history
  • Loading branch information
macalinao committed Mar 24, 2024
1 parent 362274d commit fd09f08
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/use-solana/src/adapters/solana.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
import type {
EventEmitter,
SignerWalletAdapter,
SupportedTransactionVersions,
WalletAdapterEvents,
} from "@solana/wallet-adapter-base";
import { BaseSignerWalletAdapter } from "@solana/wallet-adapter-base";
Expand All @@ -34,7 +35,7 @@ type SolanaWalletAdapterInterface = Omit<
| keyof EventEmitter
> &
EventEmitter<WalletAdapterEvents> & {
supportedTransactionVersions: ReadonlySet<"legacy"> | null;
supportedTransactionVersions: SupportedTransactionVersions;
signTransaction: <T extends Transaction>(transaction: T) => Promise<T>;
signAllTransactions: <T extends Transaction>(
transactions: T[],
Expand Down

0 comments on commit fd09f08

Please sign in to comment.