Closed mak1986 closed 8 months ago
This PR addresses issue #176 by introducing support for two new events, signedOut and networkChanged, in the wallet extension.
signedOut
networkChanged
Example Usage:
// Listen for the 'signedOut' event pandaWallet.on('signedOut', () => { console.log('Handling signedOut event'); }); // Listen for the 'networkChanged' event pandaWallet.on('networkChanged', ({ network }) => { console.log('Handling networkChanged event. New network:', network); });
This pull request is related to https://github.com/Panda-Wallet/panda-wallet-provider/pull/6.
This PR addresses issue #176 by introducing support for two new events,
signedOut
andnetworkChanged
, in the wallet extension.Example Usage: