Digital Capital Market
Institutional-grade infrastructure on Polygon. 11 audited smart contracts. USDC settlement. Real-time matching engine. Built from first principles for African capital markets.
Issuer registers SPV, completes KYC, uploads prospectus and financials. Compliance team reviews and approves.
Independent ICAZ auditor reviews financial data and certifies the oracle price using a documented valuation model.
AssetToken smart contract deployed on Polygon. Token supply minted. Oracle price set. Trading enabled.
KYC-verified investors place buy/sell orders. Orders match and settle in USDC. Distributions sent directly to wallets.
11 purpose-built contracts on Polygon PoS. Solidity 0.8.22. OpenZeppelin v5. UUPS upgradeable. 42 unit tests passing.
AssetToken
ERC-20 TokenUUPS upgradeable ERC-20 with transfer restrictions, KYC gating, and compliance hooks. One contract per listed asset.
AssetFactory
FactoryDeploys new AssetToken contracts. Maintains registry of all listed tokens. Admin-controlled with governance override.
ExchangeSettlement
Core ExchangeOrder book matching engine. Supports market and limit orders. Atomic settlement — both sides or neither.
ComplianceManager
Access ControlCentral KYC registry. Checks compliance before every transfer. Integrates with all token contracts.
PriceOracle
OracleAuditor-controlled price feed. TWAP calculation. Variance monitoring. Emits events on every price update.
DividendDistributor
FinancePull-based distribution. Snapshot of eligible holders. Funds held in escrow — investors claim at will.
GovernanceModule
GovernanceToken-weighted voting on issuer proposals. Supports For/Against/Abstain. Time-locked results.
MarketController
RiskCircuit breakers. Market state management (Pre-Launch → Full Trading). Daily volume limits. Emergency halt.
DebtManager
BondsBond coupon scheduling and payment tracking. Maturity management. Integrated with DividendDistributor.
P2PTransferModule
TransferPeer-to-peer token transfers with compliance checks. Whitelisted transfer pairs.
MockUSDC
TestnetERC-20 USDC mock for testnet operations. Faucet-enabled for sandbox testing.
Smart Contract Audit
Full audit of all 11 contracts by Certik or Hacken before mainnet deployment. USD 60,000 investment in security.
Wallet-Based Authentication
No passwords. MetaMask signature-based login. JWT tokens. No centrally stored credentials to breach.
Polygon Security Model
Polygon PoS consensus with 100+ validators. Immutable transaction history. No single point of failure.
Annual Penetration Testing
Annual external penetration test of web application, API, and infrastructure by certified security firm.
Access Control
Role-based access. Every admin action is logged on-chain. No single operator can move funds unilaterally.
Programmatic access to TokenEquityX market data for DeFi protocols and institutional partners.
/api/tickerAll listed assets — prices, volumes, yieldsPublic/api/assets/allFull asset catalogue with market dataPublic/api/trading/candles/:symbolOHLCV candlestick dataAuth/api/trading/orderbook/:symbolCurrent order book depthAuth/api/trading/orderPlace a buy or sell orderAuthws://localhost:3001Real-time price and trade eventsAuth// Get live ticker
const res = await fetch(
'https://api.tokenequityx.com/api/ticker'
);
const assets = await res.json();
// [{ symbol:'ZWIB', price:'1.0240', yield:8.5 }, ...]
// WebSocket real-time feed
const ws = new WebSocket(
'wss://api.tokenequityx.com'
);
ws.onmessage = ({ data }) => {
const { type, symbol, price } = JSON.parse(data);
if (type === 'PRICE_UPDATE') {
console.log(symbol, price);
}
};Deploy a fully branded digital capital markets platform for your bank, exchange, or financial institution. Powered by TokenEquityX infrastructure — your brand, your clients, your revenue.
Custom domain, logo, colour scheme, and email communications. Completely white-labelled — no TokenEquityX branding.
Connect to your existing core banking, CRM, and KYC systems via our integration API.
We guide you through the regulatory application process in your jurisdiction.