Skip to content

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

ServicePurpose
WalletCreate, import, export, multi-account
StakingStake, unstake, rewards
PermissionsdApp permissions (EIP-2255-style)
AnalyticsUsage 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.