Overview
Features
Integration Steps
const params = new URLSearchParams({ key: "CSHRMP-PUBK_xxx", paymentType: "deposit", coin: "USDC", network: "CELO", amount: "100", redirectUrl: "https://your-app.com/callback", }); const url = `https://useaccrue.com/hosted/ramp?${params}`;// Option 1 (Default) window.ethereum; // Option 2: Custom wallet flow window.addEventListener("message", (event) => { if ( event.origin === "https://useaccrue.com" && event.data.type === "crypto.requested" ) { const { amountUsd, destination } = event.data.payload; // Trigger your wallet flow } });mutation { confirmTransaction( paymentRequest: "request_id" transactionHash: "0x123..." ) }
Common Use Cases
Industry
Implementation
Last updated