Skip to content

2.6.1

Latest
Compare
Choose a tag to compare
@evgenykuzyakov evgenykuzyakov released this 22 Apr 16:51
6047c6a

2.6.1

  • Add option to bypass the commit modal and skip transaction confirmation modal for all widgets (features.commitModalBypass.bypassAll and features.bypassTransactionConfirmation). This is intended to use by the gateways that expects external wallet to confirm all transactions.
initNear({
  features: {
    commitModalBypass: {
      bypassAll: true,
    },
    bypassTransactionConfirmation: true,
  },
});
  • Support Big and BN during a deep copy.
  • Fix typo.
  • FIX: Addresses a scoping error on the optional config.errorCallback function triggerd during Compliation errors and 'VM is dead' errors.
  • FIX: Prevent adding data-component key to <Fragment> elements.