dev
md 23 lines 743 Bytes
Rendered Raw
1 # cw_zano
2
3 Zano wallet module for Cake Wallet. Provides a Dart wrapper around the Zano wallet API with typed models and transaction helpers.
4
5 ## Features
6
7 - Wallet lifecycle and status queries via `ZanoWalletApi`.
8 - Typed models for balances, transfers, recent history, and wallet info.
9 - Build and submit transfers; pending transaction modeling.
10 - Address and asset utilities, formatter helpers.
11
12 ## Usage
13
14 See `lib/zano_wallet_api.dart` and `lib/zano_wallet.dart` for the high-level API. Typical flow:
15
16 ```dart
17 final api = ZanoWalletApi();
18 final info = await api.getWalletInfo();
19 final balance = await api.getBalance();
20 // create transfer params and broadcast
21 ```
22
23 Consult `lib/api/model/` for full set of supported request/response models.