Connect Edge wallet balances, swaps and statements to your stack — without holding user keys
Edge - Bitcoin & Crypto Wallet is a zero-knowledge, non-custodial wallet that stores private keys only on the user's device, supports more than 120 crypto assets and ships with an in-app aggregator across roughly 19 centralised and decentralised swap venues such as Changelly, ChangeNOW and ShapeShift. Our team turns that surface into clean, OpenFinance-style APIs you can drop into accounting tools, treasury dashboards, tax engines and crypto-native back offices.
Data available for integration
Because Edge is non-custodial and zero-knowledge, the most valuable data lives on-device and on chain. We surface it through user-authorised reads, never by impersonating accounts. The matrix below summarises the data classes our integration layer normalises.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Account & wallet metadata | Login / Wallets screen (edge-core-js EdgeAccount) | Per username, per currency wallet, HD-derived addresses | Multi-wallet onboarding, segregation of duties, KYB linkage |
| Native & token balances | Wallets list, asset detail | Confirmed / unconfirmed, per chain & token contract | Treasury dashboards, NAV reporting, alerting |
| Transaction history | Wallet activity feed | Per txid: height, timestamp, fee, memo, counterparty, fiat-at-execution | Bookkeeping, capital-gains calculation, audit trails |
| Receive addresses (HD) | Request screen | Fresh per-invoice address, BIP21/BIP70 URIs, QR payloads | E-commerce checkout, subscription billing, donation pages |
| Swap quotes & executions | Exchange aggregator (Changelly, ChangeNOW, ShapeShift, Maya …) | Quote, route, slippage, settled tx pair | Best-execution analytics, swap reconciliation, tax basis |
| Buy / sell ramp events | Buy & Sell flows, debit-card and ACH off-ramps | Fiat amount, processor, card last4, status timeline | Reconciliation of fiat legs against on-chain transfers |
| DeFi positions | Aave loans, Botanix dApps, Maya cross-chain | Position size, collateral ratio, accrued interest | Risk dashboards, liquidation watch, treasury hedging |
Typical integration scenarios
1. Crypto-native bookkeeping & tax
An accounting SaaS that already imports bank feeds wants to ingest Edge wallets so a self-employed user can close their books in one tool. We map the statement endpoint into the SaaS chart of accounts, attach fiat value at execution for every leg, and pre-classify swap pairs so the tax engine produces correct cost basis under FIFO/HIFO. Exports cover Form 8949 in the US and country equivalents in the EU.
2. Treasury & NAV reporting for crypto SMBs
A small fund or DAO holds operating cash across BTC, ETH, USDC on Polygon and HBAR. The integration polls balances every 60 seconds, reconciles them against custody policy thresholds, and alerts via webhook if a wallet drains beyond a watermark. NAV snapshots feed an internal Looker board.
3. Merchant checkout & subscription billing
An e-commerce platform issues HD receive addresses per invoice, watches confirmations through the Edge plugin layer, and fires order-paid events into Shopify or WooCommerce. For recurring billing, we generate fresh addresses per period and emit reminder webhooks before grace expires.
4. Compliance & AML monitoring
For regulated counterparties, every outgoing transfer is screened against Travel Rule thresholds and the relevant VASP messaging protocol (TRISA, TRUST or Notabene). The integration emits a consent receipt and a hashed counterparty record so MiCA-aligned audit trails remain reconstructable for at least five years.
5. DeFi position dashboards
A risk team that lets staff use Edge for personal-but-business-adjacent activity wants visibility into Aave loan health and Maya cross-chain positions opened from the wallet. We expose a read-only positions feed with collateral ratios and liquidation distance, refreshed via on-chain calls rather than third-party indexers, so data stays verifiable.
Technical implementation
Our integrations sit on top of edge-core-js, the official open-source SDK that drives the Edge wallet (NodeJS, browser, React Native v0.60+ with autolinking). Currency support comes from plugins such as edge-currency-bitcoin, edge-currency-ethereum and edge-currency-monero; swap providers ship as separate plugins loaded via addEdgeCorePlugins and lockEdgeCorePlugins. For server-to-server use we wrap edge-rest-wallet behind hardened, OAuth-style endpoints so your downstream services never touch raw seeds.
Bootstrap an Edge context (Node.js)
// Load the Edge core, register currency & swap plugins
import { makeEdgeContext } from 'edge-core-js'
import bitcoin from 'edge-currency-bitcoin'
import ethereum from 'edge-currency-ethereum'
const context = await makeEdgeContext({
apiKey: process.env.EDGE_API_KEY,
appId: 'co.openfinance.edge-bridge',
plugins: { bitcoin: true, ethereum: true }
})
const account = await context.loginWithPassword(username, password, {
otp: process.env.EDGE_OTP
})
const btcWallet = await account.waitForCurrencyWallet(account.activeWalletIds[0])
Statement export endpoint (REST wrapper)
POST /api/v1/edge/statement
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>
{
"wallet_id": "BTC-bip49-xprv...redacted",
"from": "2026-04-01T00:00:00Z",
"to": "2026-04-30T23:59:59Z",
"format": "csv",
"include_fiat": true,
"fiat_currency": "USD"
}
200 OK
{
"wallet_id": "BTC-...",
"count": 142,
"transactions": [{
"txid": "9b2f...e7",
"height": 894012,
"timestamp": "2026-04-12T08:14:00Z",
"amount_sats": -2350000,
"fee_sats": 920,
"counterparty": "bc1q...8h",
"fiat_value_at_execution": -1571.42,
"memo": "supplier invoice 2026-04-12"
}]
}
Swap-execution webhook (signed)
POST https://your-app.example.com/hooks/edge-swap
X-Edge-Signature: t=1746243600,v1=8c7d...
Content-Type: application/json
{
"event": "swap.completed",
"provider": "changelly",
"from": { "wallet": "BTC-...", "amount_sats": 2500000 },
"to": { "wallet": "ETH-...", "amount_wei": "412300000000000000" },
"rate": 0.06173,
"slippage_bps": 14,
"tx_in": "9b2f...e7",
"tx_out": "0xab12...90"
}
Compliance & privacy
Regulatory alignment
Edge integrations operate under user authorisation and use only documented public or sanctioned interfaces. For EU-facing deployments the implementation respects the Markets in Crypto-Assets Regulation (MiCA) and the EU Transfer of Funds Regulation, which became fully enforceable on 30 December 2024 and applies a zero-threshold Travel Rule to all crypto-asset transfers. US deployments respect the FinCEN $3,000 Travel Rule threshold and BSA record-keeping. Where required we plug transfer screening into TRISA, TRUST or Notabene messaging.
Privacy posture
Edge's zero-knowledge model means neither Edge nor any third party can read user funds, keys or transaction data. Our integration preserves that posture: seeds and OTP secrets stay on the user's device or in a hardware-backed KMS, address books are encrypted client-side before sync, and our REST wrapper logs only opaque request IDs and counterparty hashes — never private keys, mnemonics or raw contact lists.
Data flow / architecture
A typical pipeline looks like: Edge mobile client → edge-core-js bridge (Node.js or React Native) → OpenFinance API gateway with auth, rate limits and Travel-Rule screening → Storage (Postgres for normalised statements + S3/object store for exports) → Downstream consumers (BI, accounting, treasury, compliance). Webhooks fan out swap and transfer events; a nightly reconciliation job replays on-chain confirmations against the database to catch reorgs and dropped transactions.
Market positioning & user profile
Edge ships on Android and iOS and is positioned as a privacy-first, self-custody mobile wallet for retail users worldwide. Power users include Bitcoin and privacy-coin holders (notably Monero), DeFi participants using Aave, Maya and Botanix, and US users who value the in-app debit-card off-ramp launched in late 2023. Our integration clients tend to be accounting platforms, crypto-native fintechs, regulated VASPs, and SMBs that want to plug a non-custodial wallet into existing OpenBanking-style stacks.
Screenshots
Tap any thumbnail to enlarge. The screenshots below illustrate the on-device data classes our integration normalises into APIs.
Similar apps & the integration landscape
Teams that rely on Edge often hold value across other non-custodial mobile wallets too. Below is a snapshot of adjacent apps that frequently appear in the same finance, treasury or compliance pipelines. We frame them as part of the broader ecosystem so a single bookkeeping or treasury layer can ingest data from all of them.
- Cake Wallet — Open-source non-custodial wallet with strong Monero, Bitcoin and Lightning support; users with mixed XMR/BTC books often need unified statement exports across Cake and Edge.
- Trust Wallet — Binance-acquired multi-chain wallet with 220M+ downloads by end of 2025; common when teams need EVM and BNB Chain coverage alongside Edge's BTC/XMR strengths.
- Exodus — Desktop-and-mobile wallet covering 50+ chains and 350+ assets; integrators often combine its portfolio data with Edge transaction history for full coverage.
- Atomic Wallet — Multi-asset wallet with built-in atomic-swap exchange; complementary to Edge's swap aggregator data when comparing best-execution quotes.
- Coinbase Wallet — Self-custodial companion to Coinbase exchange supporting 5,000+ assets; useful to merge with Edge for users who keep DeFi positions outside their custodial Coinbase account.
- MetaMask — Dominant browser/mobile wallet for EVM and, via Snaps, for Bitcoin, Solana and Cosmos; Edge users often import the same seed elsewhere, so deduplication logic matters in joint exports.
- Unstoppable Wallet — Open-source mobile wallet with Bitcoin, Ethereum and a built-in DEX aggregator; mentioned alongside Edge in privacy-first wallet round-ups.
- BlueWallet — Bitcoin- and Lightning-focused mobile wallet popular with merchants; pairs naturally with Edge for users who keep BTC and altcoins in different apps.
- Zengo — MPC keyless self-custody wallet; appears in compliance-heavy stacks where Edge is also used and unified Travel-Rule logs are required.
- Strike — Bitcoin and Lightning-native payments app; integrators often need to reconcile Lightning payments from Strike with on-chain BTC activity inside Edge.
What we deliver
Deliverables checklist
- OpenAPI / Swagger specification for every exposed endpoint
- Protocol & auth flow report (edge-core-js login, OTP, plugin loading)
- Runnable source for wallet bootstrap, statement, balance and swap APIs (Node.js / Python)
- Webhook contract with signed payloads and replay protection
- Automated integration tests against an Edge sandbox account
- Compliance brief (Travel Rule thresholds, MiCA record-keeping, GDPR data classes)
Engagement workflow
- Scope confirmation — which wallets, chains and use cases (1–2 days)
- Protocol & SDK review — edge-core-js and plugin landscape (2–4 days)
- Build & internal validation against sandbox accounts (3–8 days)
- Docs, samples, signed webhook, compliance brief (1–2 days)
- First delivery typically ships in 5–15 business days; complex DeFi or multi-region scopes may extend.
About us
OpenFinance Lab is an independent studio focused on mobile fintech, non-custodial crypto and OpenBanking-style integrations. Our engineers come from banks, payment gateways, blockchain infrastructure and protocol-analysis backgrounds, and we ship end-to-end APIs under privacy and compliance constraints from day one.
- Crypto wallets, exchanges, payments and cross-border rails
- Custom Node.js / Python / Go SDKs and signed webhook contracts
- Protocol analysis, traffic capture and authorised reverse engineering
- Source code delivery from $300 — runnable code and full docs; pay after delivery upon satisfaction
- Pay-per-call hosted API — usage-based pricing, no upfront cost, ideal for early-stage teams
Contact
For quotes or to submit your target app and requirements, open our contact page:
FAQ
Does Edge expose an official API for third parties?
Can I export my Edge transaction history programmatically?
How do you handle the FATF Travel Rule and MiCA compliance?
What does delivery look like?
Why work with us on Edge specifically
Edge has been open source since the Airbitz days and ships a serious plugin architecture, but production integration still needs careful work: API-key provisioning, OTP handling, plugin selection per chain, swap-provider failover, signed webhooks, and Travel-Rule plumbing. We do that work once and hand you a stable surface, instead of every team re-discovering the same edge cases.
📱 Original app overview (appendix)
Edge - Bitcoin & Crypto Wallet (package co.edgesecure.app, formerly Airbitz) is a non-custodial mobile wallet for Android and iOS that emphasises total privacy and security. Neither Edge nor any third party can access user funds, keys or transaction data. Account creation uses just a username and password; the wallet uses hierarchical-deterministic (HD) addresses that change per transaction, and a decentralised server architecture so sending, receiving and storing crypto continues to work even when Edge servers are down. The full source is open-source at github.com/EdgeApp.
- Supports 120+ crypto assets including Bitcoin (BTC), Ethereum (ETH), Avalanche (AVAX), Solana (SOL), Litecoin (LTC), Monero (XMR), Polygon (MATIC), Hedera (HBAR), Bitcoin Cash (BCH), Binance Coin (BNB), Ripple (XRP), Tezos (XTZ), Stellar (XLM), Ravencoin (RVN), Dogecoin (DOGE), Feathercoin (FTC) and more.
- Built-in exchange aggregator across roughly 19 centralised and decentralised venues (Changelly, ChangeNOW, ShapeShift and others) for buying, selling and swapping.
- 2023–2024 expansion: US users can sell coins and settle proceeds to a Visa/MasterCard debit card or US bank account; integrations with Maya Protocol (cross-chain swaps), Aave (loans) and Botanix (EVM-compatible smart contracts on Bitcoin) bring DeFi inside the wallet.
- Privacy notice: Edge requests access to the device contact list to autocomplete addresses and to send email/SMS payment requests. No personal info or contact list ever leaves the device unencrypted; encryption uses the user's credentials.
- Recognised in 2025–2026 reviews from outlets such as Cypherock, 99Bitcoins, CryptoNews and CryptoSlate as a leading mobile self-custody wallet.