dev
dart 11 lines 371 Bytes
Raw
1 import 'dart:typed_data';
2
3 final zecBase = Uint8List(32);
4
5 /// Whether NU6.3 (Ironwood) is active at the chain tip. Updated on balance refresh.
6 bool ironwoodActive = false;
7
8 /// Pool bitmask for Ironwood (pool index 3). Orchard and Ironwood share the same address.
9 const ironwoodPoolMask = 8;
10
11 int? get shieldedRecipientPools => ironwoodActive ? ironwoodPoolMask : null;