Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 233 Bytes

events.md

File metadata and controls

17 lines (11 loc) · 233 Bytes

Events

networkChanged

Emitted when the network changes.

Parameters

  • networkName: 'ckb' | 'ckb_testnet' | string;

Example

ckb.on('networkChanged', (networkName) => {
  console.log(networkName);
});