Skip to content
This repository was archived by the owner on Nov 5, 2024. It is now read-only.

v0.3.0-alpha.11

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 18 Jul 21:40
· 67 commits to master since this release
ffb3b72

Minor Changes

  • #142 9aecfdd Thanks @jribbink! - BREAKING Bumped @onflow/fcl to 1.1.1-alpha.1

    Developers should note that [U]Int* and Word* types are now decoded into strings by @onflow/fcl and no longer implicitly decoded into numbers. This means that these types will need to be explicitly converted to JavaScript Number types if required.

    This potentially affects the return values or event data for the following flow-js-testing features.

    • sendTransaction (any [U]Int* and Word* event data will be decoded into a string instead of number)
    • executeScript (any [U]Int* and Word* return values will be decoded into a string instead of number)
    • deployContract/deployContractByName (any [U]Int* and Word* event data will be decoded into a string instead of number)
    • updateContract (any [U]Int* and Word* event data will be decoded into a string instead of number)
    • getBlockOffset (return value will be string instead of number, and must be explicitly converted if JavaScript Number is required)

    See more here

Patch Changes

  • #144 d1eb29b Thanks @jribbink! - Convert examples to run in Jest environment instead of ESM loader