Extension
Cosmos Chains
Event

Event

Account change event

onAccountChanged

Code using @cosmostation/extension-client

provider.onAccountChanged(() => console.log("changed"));

Vanilla Code

window.cosmostation.cosmos.on("accountChanged", () => console.log("changed"));

offAccountChanged

Code using @cosmostation/extension-client

const event = provider.onAccountChanged(() => console.log("changed"));
provider.offAccountChanged(event);

Vanilla Code

const event = window.cosmostation.cosmos.on("accountChanged", () =>
  console.log("changed")
);
window.cosmostation.cosmos.off(event);