Taquito v19.2.0
⚠️ Breaking Changes ⚠️
Beacon Migration
As of Beacon version 4.2.0, Beacon have migrated from using dAppClient.getActiveAccount()
to using an event subscription method BeaconEvent.ACTIVE_ACCOUNT_SET
for handling active account changes.
const wallet = new BeaconWallet(options);
await wallet.client.subscribeToEvent(BeaconEvent.ACTIVE_ACCOUNT_SET, (data) => {
// your logic to update your state
console.log(data.address);
console.log(data.network.type);
});
await wallet.requestPermissions();
For a more detailed migration guide, please refer to this document
Summary
New Features
@taquito/timelock
- A new package for Timelocks have been introduced #2843. Users will now be able to create Chests, unlock Chests, and utilize Chests. For more information, please refer to this document@taquito/beacon-wallet
- thebeacon-wallet
package is now bundled in a.zip
file for PR#2860
Documentation
- UX improvements to search funtionality on the Taquito website #2858
- Simplify tutorial for building dApps PR#2852
- Updated several documentation blobs on the Taquito website PR#2860
- Fixed several live code examples in the Taquito website PR#2877
- Changed Taquito documentation website domain from
tezostaquito.io
totaquito.io
PR#2876