Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/solana/SolanaManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class SolanaManager {
*
* @example
* ```tsx
* import { createClient } from '@solana-foundation/framework-kit';
* import { createClient, autoDiscover } from '@solana/client';
*
* const client = createClient({ endpoint: '...', walletConnectors: autoDiscover() });
* formo.solana.setStore(client.store);
Expand Down
2 changes: 1 addition & 1 deletion src/solana/storeTypes.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Type definitions for framework-kit's zustand store integration.
*
* These types mirror the state shape of @solana-foundation/framework-kit's
* These types mirror the state shape of framework-kit's
* vanilla zustand store, allowing the SDK to subscribe to wallet and
* transaction state changes without wrapping any wallet methods.
*
Expand Down
4 changes: 2 additions & 2 deletions src/solana/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ export interface SolanaOptions {
* When provided, wallet connect/disconnect and transaction events are tracked
* automatically by subscribing to zustand store state changes.
*
* This is the recommended approach for apps using @solana-foundation/framework-kit.
* This is the recommended approach for apps using framework-kit.
*
* @example
* ```tsx
* import { createClient } from '@solana-foundation/framework-kit';
* import { createClient, autoDiscover } from '@solana/client';
* const client = createClient({ endpoint, walletConnectors: autoDiscover() });
* const formo = await Formo.init(writeKey, { solana: { store: client.store } });
* ```
Expand Down