macro_rules! test_wallet { ($id:expr) => { ... }; }
Macro for creating test wallet addresses.
This provides a convenient way to create test addresses inline. While not truly compile-time (Address construction is runtime), it’s ergonomic and type-safe.
let wallet = test_wallet!(42);