@gm-network/gm-connector
v0.2.51
Published
```ts // yarn add @gm-network/particle
Downloads
385
Maintainers
Readme
@gm-network/gm-connector
// 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>
);
};