@gm-network/gmaa
v0.1.66
Published
```ts // yarn add @gm-network/particle
Downloads
376
Readme
@gm-network/gmaa
// yarn add @gm-network/particle
import { ParticleContextProvider } from '@gm-network/particle';
const App = () => {
// replace 'xxxx' with particle project config.
return (
<ParticleContextProvider
{...{
projectId: 'xxxx',
clientKey: 'xxxx',
appId: 'xxxx',
supportedChainIds:[1, ...],
}}
>
<YourApp />
</AuthCoreContextProvider>
);
};