API reference
Integrators use the Eoonia Wallet SDK (eoonia_wallet_sdk). Full API docs live in projects/Eoonia_Wallet/docs/api/ — this page is an index.
Core services
| Service | Purpose |
|---|---|
| Wallet | Create, import, export, multi-account |
| Staking | Stake, unstake, rewards |
| Permissions | dApp permissions (EIP-2255-style) |
| Analytics | Usage and portfolio metrics |
Quick init
dart
import 'package:eoonia_wallet_sdk/eoonia_wallet_sdk.dart';
final sdk = EooniaWalletSDK();
await sdk.initialize(SDKConfig.production());
final result = await sdk.wallet.createWallet(name: 'My Wallet');Detailed docs (repository)
Blockchain APIs
The app talks to chains via Web3Dart (EVM) and Polkadart (Substrate). Public EmpoorioChain testnet: Networks.
We do not document private API keys or internal backend URLs here.