Bring Wallet Verse multi-chain wallet data into your accounting, treasury or analytics stack
Wallet Verse: DeFi, Buy Crypto is a self-custodial multi-currency wallet supporting Bitcoin, Ethereum, Solana, TRON, XRP, Notcoin, Hamster Kombat (HMSTR) and more than 600 other tokens, with a 100+ DEX/CEX aggregator and six fiat on-ramps (MoonPay, Simplex, Banxa, Transak, Wert). The user holds the keys, but every on-chain balance, transfer, swap, NFT mint and staking position the app shows on screen can be turned into a structured, queryable feed — that is the OpenFinance angle we deliver here.
What we deliver
Each engagement starts with a focused protocol analysis of the Wallet Verse client (app version under com.walletverse) and ends with a runnable, documented API that your downstream services can call. Below is the typical bundle; we adjust scope to match the chains and data types you actually need.
Deliverables checklist
- OpenAPI 3.1 specification for every endpoint (balances, transactions, swaps, NFTs, staking)
- Protocol and auth flow report (mnemonic-derived key handling, WalletConnect v2, RPC selection)
- Runnable source code in Python (FastAPI) and Node.js (Express/Fastify) — buyer keeps the code
- Indexer adapters for Etherscan-family explorers, Solscan, Tronscan, XRPL clio and Bitcoin Core RPC
- Automated test suite (pytest + Jest), recorded fixtures, and Postman/Bruno collection
- Compliance brief: FATF Travel Rule mapping, AML risk-tagging hooks, GDPR retention notes
Engagement models
- Source code delivery from $300 — fixed-price drop of runnable code plus docs; pay after delivery once you have validated the output against your test wallets.
- Pay-per-call hosted API — we run the indexers and key-derivation in our infrastructure, and you pay per call with no upfront fee. Useful for teams that want a one-week proof of value before committing to a self-hosted build.
- Hybrid — start on the hosted endpoint, then migrate to your own infrastructure once volumes justify it; we hand over the same image we run.
Data available for integration
The table below maps the data surfaces visible inside Wallet Verse to concrete API outputs we can deliver. Source columns reference the in-app screen that displays the data; granularity describes how the API exposes it; typical use describes the downstream system that consumes it.
| Data type | Source (in-app screen) | Granularity | Typical use |
|---|---|---|---|
| Multi-chain balances | Portfolio / Assets tab | Per-address, per-token, USD value, 24h change | Treasury dashboards, audit reports, internal accounting |
| Send / receive history | Asset detail → Transactions | Per-tx hash, timestamp, counterparty, fee, status | Cost-basis, AML monitoring, reconciliation |
| DEX swap orders | Exchange / Swap tab | Input + output legs, route (Uniswap/1inch/etc.), slippage | PnL, tax reporting, trading analytics |
| Fiat on-ramp receipts | Buy Crypto flow (MoonPay, Banxa, Transak, Simplex, Wert) | Fiat amount, FX rate, crypto received, provider id | KYC/AML evidence, finance reconciliation |
| NFT inventory | NFTs / Collectibles tab and in-app Hamster chests | Contract address, token id, metadata, floor price | Loyalty programs, collectible insurance, marketplaces |
| Staking and yield positions | Earn tab | Validator/protocol, principal, accrued rewards, lock end | Yield reporting, treasury risk, investor statements |
| WalletConnect sessions | Connections / dApps tab | dApp origin, chain id, last seen timestamp | Security review, threat modelling, audit trail |
| Price alerts and watchlist | Markets / Trending Movers (CMC, CoinGecko, TradingView feeds) | Symbol, trigger price, channel | Notification routing, CRM enrichment |
Typical integration scenarios
1. Crypto-native accounting platform
Context: a Web3 accounting SaaS needs to onboard customers who keep their working capital in Wallet Verse rather than on a centralized exchange.
Data & API: nightly pull of /balances, /transactions and /swaps per wallet address; deduplicated against on-chain re-orgs; cost-basis fields filled from on-ramp receipts.
OpenFinance mapping: the customer signs a one-time consent message; we treat the wallet address as the equivalent of a bank account number under PSD2-style "account information service" semantics, with read-only scope.
2. AML monitoring for a regulated VASP
Context: a licensed Virtual Asset Service Provider must screen counterparty wallets when its users move funds in or out of Wallet Verse.
Data & API: webhook on every confirmed transfer; payload includes counterparty address, AML risk score (Chainalysis-style tagging hook), and Travel Rule fields when the counterparty resolves to a known VASP.
OpenFinance mapping: implements the FATF Travel Rule originator/beneficiary requirement, mapped onto IVMS 101 message fields.
3. Tax reporting for retail users
Context: a tax-prep app supports users with both centralized exchange accounts and Wallet Verse holdings.
Data & API: annualized export of /swaps, /transactions and staking /rewards as CSV and FIFO/LIFO-ready JSON; per-jurisdiction cost-basis logic applied at our layer.
OpenFinance mapping: output aligns with IRS Form 1099-DA (US) and HMRC Self Assessment crypto-asset fields (UK).
4. Treasury & portfolio dashboard for a DAO
Context: a DAO manages a multisig that also operates Wallet Verse hot wallets for ops payments and grants.
Data & API: real-time /balances snapshots; /swaps for DEX rebalancing; /nft inventory for protocol-owned collectibles. Streamed into Grafana or Dune-style dashboards.
OpenFinance mapping: follows OpenBanking-style "balance + transactions" endpoints, extended with on-chain native fields (gas, route, block height).
5. Loyalty & NFT-gated commerce
Context: a merchant grants discounts to holders of the in-app Hamster NFTs (earned by completing quests in Wallet Verse).
Data & API: read-only /nft/holdings endpoint with contract whitelist; checkout integration verifies ownership at order time.
OpenFinance mapping: treats NFT ownership as an identity assertion, with consent recorded per checkout session.
Technical implementation
The snippets below show the three most-requested endpoints. Real builds include retry, idempotency, and chain re-org handling that we cannot fit in a snippet; the delivered code contains all of these.
Balance query (multi-chain)
POST /api/v1/walletverse/balances
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>
{
"wallet_id": "wv-9f3c-...-2a",
"addresses": [
{"chain": "ethereum", "address": "0x9b..."},
{"chain": "bitcoin", "address": "bc1q..."},
{"chain": "solana", "address": "FZ8...j7"},
{"chain": "tron", "address": "TJR..."}
],
"include": ["spam_filter", "usd_value", "24h_change"]
}
200 OK
{
"as_of": "2026-05-11T09:15:04Z",
"items": [
{"chain":"ethereum","token":"USDT","balance":"412.55","usd":412.59},
{"chain":"solana", "token":"SOL", "balance":"3.4801","usd":548.12},
{"chain":"bitcoin", "token":"BTC", "balance":"0.01902","usd":1284.73}
],
"total_usd": 2245.44
}
Swap and on-ramp history
GET /api/v1/walletverse/orders?
wallet_id=wv-9f3c-...-2a
&from=2025-05-01
&to=2026-05-01
&type=swap,onramp
200 OK
{
"orders": [
{
"id":"sw_8a12",
"type":"swap",
"venue":"1inch",
"in": {"token":"USDC","amount":"500.00","chain":"ethereum"},
"out": {"token":"WETH","amount":"0.1742","chain":"ethereum"},
"fee_usd": 1.84,
"tx_hash":"0xab..",
"ts":"2026-04-19T14:22:01Z"
},
{
"id":"or_3f91",
"type":"onramp",
"provider":"MoonPay",
"fiat": {"currency":"EUR","amount":"200.00"},
"crypto":{"token":"BTC","amount":"0.00295","chain":"bitcoin"},
"kyc_ref":"mp_kyc_91x",
"ts":"2026-03-02T08:11:44Z"
}
],
"next_cursor": "eyJv..."
}
Inbound-transfer webhook + AML hook
POST https://your-app.example/hooks/walletverse
X-Webhook-Signature: t=1715420000,v1=8d3e...
Content-Type: application/json
{
"event":"transfer.confirmed",
"wallet_id":"wv-9f3c-...-2a",
"chain":"ethereum",
"tx_hash":"0xc1...",
"direction":"in",
"token":"USDT",
"amount":"1500.00",
"counterparty":"0x77...",
"aml": {
"risk":"medium",
"tags":["mixer-adjacent"],
"provider":"chainalysis-style"
},
"travel_rule": {
"originator_vasp":"unknown",
"beneficiary_vasp":"self-custody"
}
}
Compliance & privacy
Regulatory frame
Because Wallet Verse is self-custodial, private keys never leave the user device and we never touch them. The data we expose is either user-consented (signed by the wallet) or publicly available on-chain. Where the buyer is itself a regulated VASP, we map outputs to the FATF Travel Rule recommendations for virtual assets, including IVMS 101 originator/beneficiary fields.
In the United States, regulated counterparties using the API can integrate it with their existing BSA/FinCEN MSB program and IRS Form 1099-DA reporting. In the EU and UK the same data feeds MiCA reporting obligations and HMRC self-assessment.
Privacy controls
- Per-call consent token signed by the owning wallet (EIP-4361 / "Sign-In With Ethereum" style)
- Configurable data retention windows (7 / 30 / 365 days) with hard delete
- Address-level pseudonymization in logs by default
- GDPR Article 17 ("right to erasure") workflow built into the admin console
- Optional zero-knowledge KYC plug-in for proving "verified user" without transmitting identity documents
Data flow / architecture
A typical Wallet Verse integration follows a simple four-stage pipeline:
- Client (Wallet Verse app or address list) — user grants a signed consent and provides the set of addresses they want exposed.
- Indexer / RPC adapter — chain-specific workers pull data from public RPC nodes and indexers (Etherscan, Solscan, Tronscan, XRPL clio, Bitcoin Core RPC) and normalize it into a single schema.
- Storage — append-only event store for transactions and swaps; daily snapshots for balances; cold storage for fiat-receipt PDFs when KYC evidence is needed.
- API / Webhooks — REST endpoints for pull, signed webhooks for push; outbound calls to your accounting, AML or analytics stack.
The pipeline is stateless at the API layer and horizontally scalable; the indexer layer is the only stateful part and is sharded by chain to keep one slow chain from blocking the others.
Market positioning & user profile
Wallet Verse positions itself as a beginner-friendly self-custodial wallet with deep multi-chain coverage and a built-in DEX aggregator. Its 2024–2025 integrations of Notcoin (NOT) and Hamster Kombat (HMSTR) — the two breakout Telegram-gaming tokens — pulled in a younger, mobile-first, mostly retail audience across Eastern Europe, the CIS region, Southeast Asia and Latin America. The 2025 addition of NFT Hamster quest chests and a six-provider fiat on-ramp expanded the funnel from "wallet for power users" to "first wallet for new buyers".
The B2B opportunity therefore sits in three places: (a) accounting and tax tools serving these retail users, (b) AML and Travel-Rule tooling for VASPs that interact with the wallet, and (c) loyalty and commerce platforms that want to recognize on-chain assets — including the in-app Hamster NFTs — at checkout. Both Android and iOS clients are in scope.
App screenshots
The screens below show the data surfaces we wrap into APIs — portfolio, asset detail, swap, NFT and earn views. Click any thumbnail to enlarge.
Similar apps & the integration landscape
Teams that integrate Wallet Verse usually want a coherent view across several other self-custodial wallets too. The apps below sit in the same multi-chain, mobile-first category and surface comparable data — listing them here is editorial context, not a ranking.
MetaMask
The default EVM gateway with about 30 million monthly active users. Holds balances, swap routes and dApp interaction history; users who also work with MetaMask often need a unified Ethereum/L2 transaction export across both wallets.
Trust Wallet
Non-custodial wallet with 220M+ downloads and 110+ native chains. Comparable balance and swap-history surfaces; integrations frequently consolidate Trust Wallet and Wallet Verse data into one accounting feed.
Phantom Wallet
Originally Solana-focused, expanded to Ethereum and Bitcoin in 2025. Holds SOL balances, SPL token swaps and NFT positions; relevant when teams need to merge Solana data with Wallet Verse's multi-chain feed.
Bitget Wallet
Non-custodial wallet covering 130+ blockchains and millions of tokens. Holds DEX swap data and on-ramp receipts; similar shape to Wallet Verse for cross-chain reconciliation pipelines.
Exodus
Desktop-first multi-chain wallet with strong portfolio reporting. Holds balances across BTC, ETH, SOL and more; users often want Exodus and Wallet Verse data normalized into the same schema for tax season.
THORWallet
DEX-first wallet specializing in native cross-chain swaps without bridges. Holds THORChain swap orders that complement Wallet Verse's aggregator data for users who route between BTC and EVM assets.
Zengo
Keyless self-custodial wallet using MPC instead of a seed phrase. Holds the same balance and transaction surfaces as Wallet Verse, but with a distinct recovery model — useful context for compliance reviews.
Coinbase Wallet
Self-custodial companion to the Coinbase exchange. Holds balances, swaps and NFT data; integration teams frequently combine Coinbase Wallet exports with Wallet Verse exports for users who split funds between the two.
Rabby Wallet
EVM-focused wallet with pre-transaction simulation. Holds approval and dApp-interaction records; pairs well with Wallet Verse data when AML teams need a full picture of EVM activity.
SafePal
Hybrid software + hardware wallet line. Holds the same multi-chain balance and transaction data; relevant because Wallet Verse has flagged SafePal hardware connect support as a coming feature.
About OpenFinance Lab
We are an independent studio focused on fintech and open-data API integration. Our engineers come from cryptocurrency exchanges, payment processors, mobile-app reverse engineering teams, and cloud infrastructure providers. We understand the data shapes of self-custodial wallets, the constraints of FATF/MiCA/BSA regulations, and the practical limits of public chain indexers — and we ship end-to-end financial APIs under those constraints.
- Self-custodial wallets, DEX aggregators, on-ramp providers and cross-border crypto rails
- Enterprise API gateways, signing services and security reviews
- Custom Python (FastAPI), Node.js, Go and Rust SDKs with full test harnesses
- Full pipeline: protocol analysis → build → validation → compliance brief
- Source code delivery from $300 — runnable code and full documentation; pay after delivery upon satisfaction
- Pay-per-call hosted API — pay only per call, no upfront cost; ideal for usage-based pricing
Contact
For quotes, scope reviews, or to submit your target app and integration requirements, open our contact page:
Typical reply time: one business day. We sign NDAs before any protocol-level discussion.
Engagement workflow
- Scope confirmation: which chains, which data surfaces (balances, swaps, NFTs, staking), which downstream system.
- Protocol analysis of the Wallet Verse client and indexer selection (2–5 business days).
- Build, internal validation against test wallets and reference fixtures (3–8 business days).
- Docs, OpenAPI spec, sample collection and test cases (1–2 business days).
- Typical first delivery in 5–15 business days; third-party indexer approvals may extend the window.
FAQ
What data does Wallet Verse hold that can be integrated?
How long does delivery take?
How do you handle compliance for a self-custodial DeFi wallet?
Can the API cover both Bitcoin and EVM chains?
📱 Original app overview (appendix)
Wallet Verse: DeFi, Buy Crypto (package id com.walletverse) is a free self-custodial DeFi crypto wallet for Android and iOS. It supports Bitcoin (BTC), Notcoin (NOT), Ethereum (ETH), USDT, Binance Coin (BNB), XRP, DOGE, Solana (SOL), TRON (TRX) and more than 600 other tokens and blockchains.
- Self-custodial security: private keys are encrypted on-device; only the user can access them.
- Send, receive, store, trade: standard wallet flows for all supported tokens.
- Buy crypto with fiat: aggregates six on-ramp providers — MoonPay, Simplex, Banxa, Transak, Wert — supporting USD, EUR, GBP, CAD, AUD, AED, ARS, KZT, INR and more.
- DEX & CEX aggregator: 100+ venues including Uniswap, PancakeSwap, Binance, Coinbase Pro and 1inch, with 10,000+ trading pairs.
- Multi-wallet: create as many accounts and addresses as needed with full multi-currency support.
- WalletConnect & dApps aggregator: connect to a wide range of decentralized applications.
- Crypto news: Cointelegraph, Coindesk, Decrypto, The Block and CryptoPanic feeds.
- NFT support: hold, view and manage non-fungible tokens, including the in-app Hamster NFTs earned by completing quests.
- Portfolio tracking and price alerts: with Trending Movers and market data from CoinMarketCap, CoinGecko and TradingView.
- Staking and yield farming: earn crypto on supported assets directly inside the app.
- Earn Stars and NFT Hamsters: complete simple quests to open chests with NFT Hamsters that reduce transaction fees.
- AML processes: integrated Anti-Money Laundering detection for fraud and illicit-activity prevention.
- Coming soon: sell crypto, bridges aggregator, Bitcoin Lightning, hardware wallet connect (Ledger, Trezor, SafePal), mass payment, limit orders, plus support for zkSync Era, BRC20, Metaverse, AI and GameFi categories.
- Token standards supported: ERC20, TRC20, BEP20 (BSC), BEP2 (BNB), C-Chain (Avalanche), MATIC (Polygon), SOL (Solana).