1
Configure your Authentication
You’ll need to add the JWKS Endpoint from your Auth Provider to authenticate gasless transactions.
With this JWKS Endpoint setup, you can now run secure code in your frontend
using a rotating JWT token.
Getting your JWKS Endpoint
For these common Auth Providers, you can get your JWKS Endpoint like this:- Go to your API Keys
- Copy your Jwks Url and paste it into the JWKS Endpoint field in your Chipi Dashboard.
2
Get your Public Key
Now go to your Api Keys and click on your project.Which will give you access to your Public Key (
pk_prod_xxxx
). Keep this handy as you’ll need it to initialize the SDK.You won’t need the Secret Key (
sk_prod_xxxx
) for now.3
Install the SDK
4
Initialize the SDK
- Add your Public Key to your environment variables.
- In your main
App.tsx
orindex.tsx
, wrap your app with theChipiProvider
component as shown below:
5
Celebrate & Learn More!
That’s it! You should now have an initial working version of Chipi Pay integrated into your application. You can now start implementing various features like:Need help? Join our Telegram Community to ask us anything on your mind.
- Wallet Creations
- Sending tokens
- Signing transactions
- and more!
To quickly test the integration, you can use our Test Mode in
development.