wallet_standard_browser 0.6.0

The wasm / browser compatible rust based implementation of the wallet standard.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Event that will be dispatched by the app on the `window` when the app is
/// ready to register {@link Wallet | Wallets}.
///
/// Wallets must listen for this event, and {@link
/// WindowAppReadyEventAPI.register register} themselves when the event is
/// dispatched.
pub const APP_READY_EVENT: &str = "wallet-standard:app-ready";

/// Event that will be dispatched on the `window` by each {@link Wallet |
/// Wallet} when the Wallet is ready to be registered by the app.
///
/// The app must listen for this event, and register Wallets when the event is
/// dispatched.
pub const REGISTER_WALLET_EVENT: &str = "wallet-standard:register-wallet";