๐Ÿ‡บ๐Ÿ‡ฒ
Broearn Wallet Documentation
  • ๐ŸงฌOVERVIEW
    • ๐Ÿ’กWhat is Broearn Wallet?
    • ๐Ÿ›ก๏ธSecurity
    • ๐Ÿ“‹Available Networks
      • Parallel Universe Chain
      • Bitcoin
      • Ethereum
      • BNB Chain
      • Tron
      • Solana
      • OKX Chain
      • Optimism
      • Fantom
      • Ethereum Classic
      • Polygon
      • Avalanche
  • ๐Ÿ›ธPUT
    • Extension & in Broearn app
      • Events
        • Disconnect
        • Accounts Changed
    • Detecting the Provider
  • Establishing a Connection
  • PROVIDER METHODS
    • Connect
    • Disconnect
    • SignMessage
    • SignTransaction
    • SignAllTransactions
    • SignAndSendTransaction
  • ๐Ÿ”นETHEREUM & EVM
    • Getting Started with Ethereum and EVM
    • Detecting the Provider
    • Establishing a Connection
    • Sending a Transaction
    • Signing a Message
    • Provider API Reference
      • Properties
        • eth_chainId
        • eth_networkVersion
        • eth_selectedAddress
        • _events
        • _eventsCount
      • Events
        • Connect
        • Accounts Changed
        • Disconnect
        • Chain Changed
      • Methods
        • isConnected
        • request
  • Demo Applications
  • ๐Ÿ“œERRORS
  • ADVANCED
    • Auth
      • Web Javascript demo
      • Web Java
      • Web Golang
      • Web PHP
  • COMMUNITY AND SUPPORT
    • ๐ŸฆTwitter
    • โœˆ๏ธTelegram
    • ๐ŸŽฎDiscord
Powered by GitBook
On this page
  1. ETHEREUM & EVM
  2. Provider API Reference
  3. Properties

_events

Previouseth_selectedAddressNext_eventsCount

Last updated 1 year ago

window.bw.eth._events

An object containing all of the events that the provider has emitted or logged.

const events = window.bw.eth._events;
console.log(events);
// Eventsย {chainChanged: Array(2), accountsChanged: EE}

This is not a recommended way to keep track of different events. The provider implements a Node.js EventEmitter API to emit different events happening within the wallet and/or dapp. See for more details.

๐Ÿ”น
Events