Releases: algorandfoundation/TEALScript
Releases · algorandfoundation/TEALScript
0.20.0
Adds Compiler.compileAll()
0.19.0
- Changes
Compiler
constructor to take object of options, which is where algod info is now set
- Moved all env usage to the binary rather than
compiler.ts
- Added webpack smoketest
0.18.1
Fix type definitions for .set()
0.18.0
- Arrays are now passed by reference like native JS
.put()
on storage classes is now .set()
to better align with JS maps and pyteal
.length()
on BoxKey
and BoxMap
is now .size()
0.17.1
Add bzero type definition
0.17.0
box len, extract, replace, and create methods
0.16.0
Adds support for .length
on string
, bytes
and dynamic arrays.
Adds ability to change algod compile endpoint via env variables: ALGOD_SERVER
, ALGOD_PORT
, and ALGOD_TOKEN
0.15.0
Breaking changes to StaticArrays and storage classes. Also adds ufixedNxM support
uint16
-> uint<16>
uint16<3>
-> StaticArray<uint<16>, 3>
BoxReference
-> BoxKey
GlobalReference
-> GlobalStateKey
LocalReference
-> LocalStateKey
GlobalMap
-> GlobalStateMap
LocalMap
-> LocalStateMap