React SDK
This is the official React SDK for the AhoraCrypto payment widget, allowing you to easily integrate cryptocurrency payments into your React applications, including those using Capacitor for mobile apps.
Installation
or
Key Features
Optimized Performance: Improved initialization process eliminates double loading issues
Development Logging: Detailed logs only appear in development mode, not in production builds
Enhanced Iframe Attributes: Complete set of permissions for optimal integration
Responsive Themes: Automatic light/dark mode detection with manual overrides
Cross-Domain Communication: Reliable iframe messaging system
Auto Container ID: No need to provide a container ID when using the React component
Usage
The SDK provides two ways to integrate the AhoraCrypto widget:
React Component: Use the
AhoraCryptoWidget
component in your JSX/TSX.Function API: Use the
renderWebwidget
function to render the widget programmatically (similar to the vanilla JavaScript SDK).
React Component Approach
Function API Approach
Capacitor Integration
The SDK works seamlessly with Capacitor for building mobile apps. Here's how to use it in a Capacitor-based project:
Setup in Capacitor
Install the SDK and Capacitor:
Initialize Capacitor (if not already done):
Add platforms:
Example Usage in a Capacitor App
Building for iOS/Android
After integrating the widget into your React app, build and sync the project:
Open the native projects:
Configuration Options
The widget accepts the following configuration options:
containerId
string
Required only for Function API. ID of the container element
language
string
Optional language code for the widget
cryptoCurrency
string
Cryptocurrency symbol to select by default
fiatCurrency
string
Fiat currency symbol to select by default
logoUrl
string
Custom logo image URL
backgroundColor
string
Background color (HEX)
buttonColor
string
Button color (HEX)
borderRadius
number
Border radius of components
borderWithShadow
boolean
Whether to apply a styled border with shadow
theme
'light' | 'dark'
Force a specific theme
iframeWidth
number
Custom iframe width
iframeHeight
number
Custom iframe height
paymentIntentId
string
Payment intent ID
referral
string
Referral identifier for traffic tracking
Controller Methods
The widget controller provides the following methods for interacting with the widget:
setWalletAddress(address)
Sets the wallet address
setPaymentIntentId(id)
Sets the payment intent ID
sendSignedMessage(signature, address, messageHash?)
Sends a signed message to the widget
requestMessageToSign()
Requests a message for signing
connectWeb3Wallet(provider, address, chainId)
Connects a Web3 wallet to the widget
setTheme(theme)
Sets the widget theme ('light' or 'dark')
onReady(callback)
Registers a callback for when the widget is ready
ready()
Returns a promise that resolves when the widget is ready
isReady()
Returns whether the widget is ready
Development and Debugging
Logging System
The SDK includes a smart logging system that only displays logs in development environments:
In development mode (
NODE_ENV === 'development'
), detailed logs appear to help with debuggingIn production builds, logs are automatically suppressed to avoid cluttering the console
This helps developers debug during development while ensuring a clean console in production.
Performance Optimizations
Recent optimizations include:
Single Initialization: Widget now initializes only once, preventing duplication of events
Improved Loading: Enhanced initialization process with better handling of the "ready" state
No Message Queuing: Messages are only sent when the widget is ready, preventing potential timing issues
Memory Efficiency: Better state management to reduce memory usage and avoid leaks
Auto Container ID: When using the React component, a unique container ID is generated automatically
Troubleshooting
If you encounter issues with the widget:
Widget Not Displaying: Ensure the container has sufficient width and height
Communication Issues: Check the console for errors in development mode
Iframe Not Loading: Verify your internet connection and that the domain is accessible
Last updated