To use Para, you need an API key. This key authenticates your requests to Para services and is essential for integration. Before integrating Para with your application, ensure you have:
Completed Para authentication setup in your application (see one of our Setup Guides)
A valid Para API key
An RPC endpoint for your desired network
Need an API key? Visit the Developer Portal to create API keys, manage billing, teams, and more.
Para’s Wagmi connector supports additional configuration options to customize the user experience:
Copy
Ask AI
const connector = paraConnector({ para, chains: [sepolia], appName: "Your dApp Name", options: { // Custom options for your connector }, nameOverride: "Para", // Custom name displayed in UI idOverride: "para", // Custom ID for the connector oAuthMethods: [ OAuthMethod.GOOGLE, OAuthMethod.TWITTER, OAuthMethod.DISCORD, // Add or remove methods as needed ], disableEmailLogin: false, // Set to true to disable email login disablePhoneLogin: false, // Set to true to disable phone login onRampTestMode: true, // Enable test mode for on-ramps if applicable customTheme: { // Custom theme options accentColor: "#5F4DFF", backgroundColor: "#FFFFFF", },});
If you’d like to learn more about how to use Wagmi with Para, check out this example that creates a custom wallet connector UI with Para as a wallet option:
To use Para, you need an API key. This key authenticates your requests to Para services and is essential for integration. Before integrating Para with your application, ensure you have:
Completed Para authentication setup in your application (see one of our Setup Guides)
A valid Para API key
An RPC endpoint for your desired network
Need an API key? Visit the Developer Portal to create API keys, manage billing, teams, and more.
Para’s Wagmi connector supports additional configuration options to customize the user experience:
Copy
Ask AI
const connector = paraConnector({ para, chains: [sepolia], appName: "Your dApp Name", options: { // Custom options for your connector }, nameOverride: "Para", // Custom name displayed in UI idOverride: "para", // Custom ID for the connector oAuthMethods: [ OAuthMethod.GOOGLE, OAuthMethod.TWITTER, OAuthMethod.DISCORD, // Add or remove methods as needed ], disableEmailLogin: false, // Set to true to disable email login disablePhoneLogin: false, // Set to true to disable phone login onRampTestMode: true, // Enable test mode for on-ramps if applicable customTheme: { // Custom theme options accentColor: "#5F4DFF", backgroundColor: "#FFFFFF", },});
If you’d like to learn more about how to use Wagmi with Para, check out this example that creates a custom wallet connector UI with Para as a wallet option: