Protocol analysis, transaction APIs, and post-quantum signature workflows for the Krown Blockchain hot wallet
Qastle is the native hot wallet for the Krown Blockchain, launched November 1, 2025 with QRNG-driven entropy and post-quantum cryptography (Kyber for encryption, Dilithium for signatures). It also handles Bitcoin, Ethereum, BNB Smart Chain, USDT, and Base, with WalletConnect support for dApps. We turn that on-chain and on-device data into well-defined APIs your accounting, treasury, or compliance system can call.
Token-based linking of a user's Qastle wallet address to your platform. Supports the wallet's import/recovery flow so a customer can re-encrypt an existing seed with quantum-secure keys, then expose a stable internal `account_id`.
Single endpoint for Krown, BTC, ETH (mainnet + Base), BNB, USDT. Returns block height, hash, counterparty, asset, value, fee, and signature scheme (ECDSA vs Dilithium). Designed for ledger reconciliation.
Hooks for the in-app swap flow (WETH, DAI, WBTC, USDT on Ethereum mainnet) so a finance team gets a real-time record of every swap, with execution price and gas cost annotated.
Server-side bridge to WalletConnect v2 sessions: approve dApp connections, route `eth_signTypedData` and `personal_sign` requests through a policy layer, and log every approval for audit.
Capture the QRNG2 entropy attestation produced at key generation, store it alongside the public key, and expose a `/attestation/{address}` endpoint so counterparties can verify the wallet's entropy provenance.
Push notifications for confirmed transfers, failed signing requests, low-balance thresholds, and PQC key rotation events. Delivered via signed HTTPS webhooks or Kafka topics.
| Data type | Source (screen / feature) | Granularity | Typical use |
|---|---|---|---|
| Wallet addresses & chains | Account / Wallet screen | Per address, per chain (KRN, BTC, ETH, BNB, USDT, Base) | KYT (know-your-transaction), CRM enrichment |
| Multi-chain balances | Portfolio / Home dashboard | Per-asset balance, fiat-equivalent, snapshot timestamp | Treasury dashboards, NAV reporting |
| Transaction history | Activity / Transactions tab | Per-tx hash, height, counterparty, value, fee, signature type | Bookkeeping, tax export, audit trail |
| Token swap records | Swap module (WETH/DAI/WBTC/USDT) | Pair, amount in/out, slippage, gas, route | P&L attribution, FX reporting |
| WalletConnect sessions | dApp connect screen | Session ID, peer dApp, scope, expiry | Risk monitoring, policy enforcement |
| Signature events | Sign & send confirmation | Method (ECDSA / Dilithium), payload hash, status | Compliance log, dispute resolution |
| Key entropy attestation | Onboarding / key generation | QRNG source, entropy bits, attestation blob | Counterparty assurance, insurance underwriting |
A merchant accepting KRN, BTC, and USDT through Qastle wants daily balance snapshots and per-transaction CSVs to import into Xero or NetSuite. Our pipeline calls the wallet's transaction endpoint per address, normalizes outputs into a common schema (`tx_hash`, `chain`, `asset`, `amount`, `fee`, `counterparty`), and posts ledger entries via the accounting platform's API.
Custodians must demonstrate that signing keys were generated with audited entropy. We extract Qastle's QRNG2 attestation and Dilithium signature metadata for every outbound transaction, store both in WORM storage, and expose a `/audit/proof/{tx_hash}` endpoint for examiners.
An enterprise allows staff wallets to interact only with approved dApps. Our middleware intercepts WalletConnect requests, checks the peer dApp against an allow-list, applies spend-limit rules, and either auto-approves or pushes a Slack approval to a compliance officer.
End users need a single year-end report covering Krown, Bitcoin, Ethereum (incl. Base), and BNB. We aggregate Qastle's per-chain history, attach FX rates from CoinGecko at transaction time, and emit IRS Form 8949 and HMRC self-assessment formats.
Before a high-value transfer, the back office screens the destination address against Chainalysis or TRM Labs. Our integration relays the prepared transaction from Qastle, fetches a risk score, and only releases the signing request if the score falls below the configured threshold.
POST /api/v1/qastle/transactions
Content-Type: application/json
Authorization: Bearer <ACCESS_TOKEN>
{
"account_id": "acc_8f1c...",
"chains": ["KRN", "BTC", "ETH", "BNB"],
"from_date": "2026-03-01",
"to_date": "2026-03-31",
"include_signature_meta": true,
"page": 1,
"page_size": 100
}
200 OK
{
"items": [
{
"tx_hash": "0xa3...",
"chain": "ETH",
"asset": "USDT",
"amount": "250.00",
"fee": "0.0011",
"counterparty": "0xbe...",
"block": 21504123,
"signature": { "scheme": "ECDSA-secp256k1" },
"ts": "2026-03-14T09:21:12Z"
}
],
"next_cursor": "eyJwYWdlIjoyfQ=="
}
POST /api/v1/qastle/pqc/verify
Authorization: Bearer <ACCESS_TOKEN>
{
"address": "krn1qastle...",
"payload": "0xdeadbeef...",
"signature": "0x9f12...",
"scheme": "DILITHIUM3"
}
200 OK
{ "valid": true, "verified_at": "2026-04-28T11:02:44Z",
"attestation_id": "qrng2_2026Q1_8821" }
POST {your-callback}
X-Qastle-Signature: t=1714...,v1=...
{
"event": "wc.session.proposed",
"session_id": "wc:8f5d...",
"peer": { "name": "Uniswap", "url": "https://app.uniswap.org" },
"chains": ["eip155:1", "eip155:8453"],
"methods": ["personal_sign", "eth_signTypedData_v4"],
"expiry_ts": 1714010099
}
Crypto-asset integrations cross several regulatory regimes. Our delivery package documents how the wallet data flow maps to the EU's MiCA regulation (which became fully applicable in December 2024), the FATF Travel Rule for transfers above the local threshold, and GDPR for any user data persisted server-side. For US deployments we cover FinCEN MSB record-keeping; for UK, the FCA cryptoasset financial-promotions regime.
We work strictly under user authorization or documented APIs. Personal data fields are minimized to the wallet address, the events the customer chooses to expose, and an internal `account_id`. Consent records and revocation timestamps are stored in an append-only log so that data-subject access requests can be answered within statutory deadlines.
Because Qastle uses post-quantum cryptography (Kyber-768 / Dilithium-3 in line with NIST FIPS 203/204), our audit trail format records both the classical and PQC signature material, giving you a smooth migration path as supervisors begin to require quantum-safe evidence.
The integration sits between the Qastle client and your back office. A typical path:
Ingestion runs as idempotent workers keyed on `(chain, tx_hash)` so re-orgs and retries never produce duplicate ledger lines. Streaming consumers receive only the events scoped to their access token; storage is partitioned by tenant and encrypted at rest.
Qastle Wallet is positioned as the on-ramp to the Krown quantum blockchain ecosystem (Layer-1 mainnet launched January 3, 2026) and as a multi-chain wallet for crypto-native consumers worried about "harvest now, decrypt later" attacks. Subscription pricing ($9.95/month or $99/year) signals a prosumer and small-business audience rather than a pure free-tier retail wallet. Distribution covers iOS, Android, Chrome extension, and desktop — meaning integrations have to handle a heterogeneous device fleet. Press coverage in Disruption Banking (2025–2026) and the Bitcoin Conference partnership through 2032 indicate a brand pitched at conference-going crypto professionals, custodians, and Web3 builders rather than casual speculators.
Click any thumbnail to view the full-size screenshot. These illustrate the surfaces from which our integrations source data — portfolio view, transaction history, send/receive flow, and dApp connect.
Teams running an OpenData/OpenFinance program rarely deal with a single wallet. We regularly build cross-wallet pipelines so that ledger, treasury, and compliance systems get a unified view across the broader crypto ecosystem. Below are wallets and dashboards we frequently integrate alongside Qastle.
Search phrases such as "Qastle Wallet API integration", "Krown Blockchain transaction export", "post-quantum wallet OpenFinance", "MetaMask alternative API", and "multi-chain wallet statement export" all map to the same underlying need: getting structured wallet data into a back office in a compliant way.
We are an independent technical studio focused on App interface integration and authorized API integration. Our team brings hands-on experience from fintech, payments, blockchain analytics, and protocol engineering. We have shipped integrations for banking apps, payment wallets, brokerages, and Web3 wallets across Asia, Europe, and the Americas.
To request a quote, share your target app and requirements, or discuss a proof-of-concept around Qastle Wallet and the Krown Blockchain, please use our contact page.
What do you need from us to start?
Can you handle the post-quantum signature verification?
How do you handle compliance for crypto data?
What if Qastle releases a breaking update?
Qastle Wallet (package id com.krown.network.qastlewallet) is the native hot wallet for the Krown Blockchain — a Layer-1 platform whose mainnet launched on January 3, 2026 with native quantum-resistant security. Qastle itself launched November 1, 2025 and is described by its developers as the world's first quantum-secured hot wallet built for mainstream users.