Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function useGridClient(config?): GridClient;
config?
apiKey?
string
environment?
baseUrl?
appId?
solanaRpcUrl?
config.apiKey?
config.environment?
config.baseUrl?
config.appId?
config.solanaRpcUrl?
GridClient
function MyComponent() { const client = useGridClient({ apiKey: 'your-api-key', environment: 'sandbox' }); if (!client) return <div>Loading...</div>; return <div>Client ready!</div>; }
Was this page helpful?