import React from 'react'; export type WidgetState = { ownerAddress?: { address: string | undefined; // -- this is used to force a state update for the same address -- lastRequest: string; }; signedMessageData?: { signature: string; msgToSign: string; }; foundNft?: string; }; export type WidgetStateSetter = ( key: keyof WidgetState, value: WidgetState[typeof key] ) => void; type Context = { widgetState: null | WidgetState; setWidgetState: WidgetStateSetter; }; export const WalletChatContext = React.createContext(null);