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
·
67 commits
to master
since this release
Minor Changes
-
#142
9aecfdd
Thanks @jribbink! - BREAKING Bumped @onflow/fcl to 1.1.1-alpha.1Developers should note that
[U]Int*
andWord*
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*
andWord*
event data will be decoded into a string instead of number)executeScript
(any[U]Int*
andWord*
return values will be decoded into a string instead of number)deployContract
/deployContractByName
(any[U]Int*
andWord*
event data will be decoded into a string instead of number)updateContract
(any[U]Int*
andWord*
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)