For the complete documentation index, see llms.txt. This page is also available as Markdown.

Accounts Changed

// Some code
window.bw.on('accountsChanged', (newAccounts: string[]) => {
    console.log(newAccounts);
})

window.bw.put.on('accountsChanged', (newAccounts: string[]) => {
    console.log(newAccounts);
})

Last updated