Skip to content

Various Fixes

Compare
Choose a tag to compare
@lnbc1QWFyb24 lnbc1QWFyb24 released this 09 Jul 04:00
· 2121 commits to develop since this release
940aaa1

A small release that includes a few minor fixes and improvements.

Binance Smart Chain has been added as a network now that it is supported by the Blocknative server infrastructure. Passing in the networkId: 56 is all that is necessary. For all other unrecognized networks that get displayed with the network name unknown, you can use the networkName parameter when initializing Onboard:

const onboard = Onboard({
  // ... other init options
  networkId: 137,
  networkName: 'Matic'
})

When Onboard is re-initialized in the same session, the WebSocket connection is now closed and the wallet interface is now reset(if one was selected on the previous instance) to ensure there are no extra socket connections or wallet instances hanging around.

A bug with KeepKey missing the preferred property which prevented it from being included as one of the top 4 wallets has been also fixed.

Changelog:

  • 1.29.0-0.1.0: [enhancement] - Cleanup Upon Re-Initialization (#604)
  • 1.29.0-0.2.0: [fix] Keepkey issues (#607)
  • 1.29.0-0.3.0: [refactor] Move cta buttons (#609)
  • 1.29.0-0.3.1: [fix] Adds bsc network (#611)