Skip to content

FIO Typescript SDK v1.9.0

Compare
Choose a tag to compare
@misterleet misterleet released this 06 Nov 20:17
· 3 commits to release/1.9.x since this release
4c9f54f

Overview

This change implements FIO Core v3.5 and FIO Contracts v2.9. If your application sends FIO Requests or FIO Data, you must upgrade to this version.

There is a breaking change in this version:
pushTransaction method received multiple parameters in strict count.

Before version 1.9:

pushTransaction(
    account,
    action,
    data,
    encryptOptions,
  )

In version 1.9:

pushTransaction({
    account,
    action,
    data,
    authPermission,
    encryptOptions = {},
    signingAccount,
  }

Additional release information: https://dev.fio.net/changelog/new-fio-chain-version-193529

Details

What's Changed

Full Changelog: v1.8.0...v1.9.0