Skip to content

Version 1.18.0

Compare
Choose a tag to compare
@chasefleming chasefleming released this 14 May 16:18
· 135 commits to main since this release
2f09f4a

What's Changed

Breaking Changes

There is a minor breaking change to flowkit.Init. The Init function no longer creates an emulator account for you. You should now create an account (it is recommended to use NewEmulatorAccount) and then add it to the state's accounts with state.Accounts().AddOrUpdate(...).

Usage Example

emulatorServiceAccount, _ := accounts.NewEmulatorAccount(readerWriter, crypto.ECDSA_P256, crypto.SHA3_256, "")
state.Accounts().AddOrUpdate(emulatorServiceAccount)

Full Changelog: v1.17.3...v1.18.0