@macalinao/grill
Version:
Modern Solana development kit for React applications with automatic account batching, caching, and transaction notifications
13 lines • 495 B
TypeScript
import type { TransactionSendingSigner } from "@solana/kit";
/**
* Context state for providing Solana Kit wallet utilities throughout the app.
*/
export interface WalletContextState {
/** The transaction sending signer, null when wallet is not connected */
signer: TransactionSendingSigner | null;
}
/**
* React context for wallet-related functionality
*/
export declare const WalletContext: React.Context<WalletContextState | undefined>;
//# sourceMappingURL=wallet-context.d.ts.map