Skip to content

Commit

Permalink
0.16.0 (#54)
Browse files Browse the repository at this point in the history
* Doc Updates (#53)

* tuples.md

* numbers and math

* fix typo

* update storage docs, add abi docs

* fix typo

* minor updates to docs

* add lifecycle page

* remove src_map from tests

* read env for algod compile endpoint

* arrayLength

* string length

* rm out.json

* update README

* 0.16.0
  • Loading branch information
joe-p committed Jun 29, 2023
1 parent 4718d07 commit a601293
Show file tree
Hide file tree
Showing 98 changed files with 758 additions and 13,964 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ coverage/
yarn-error.log
docs/
*.tgz
!jest.config.js
!jest.config.js
tests/contracts/artifacts/*.src_map.json
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ TEALScript is still very much a work in progress. The current version is `0.x.x`
### Missing Features

* ABI boolean encoding/decoding
* ABI ufixed encoding/decoding
* More testing
* More documentation

Expand Down
4 changes: 2 additions & 2 deletions examples/arc12/arc12.algo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Vault extends Contract {

receiver = new GlobalStateKey<Address>({ key: 'receiver' });

funderMap = new BoxMap<Asset, Address>({ defaultSize: 32 });
funderMap = new BoxMap<Asset, Address>();

private closeAcct(vaultCreator: Account): void {
assert(vaultCreator === this.creator.get());
Expand Down Expand Up @@ -129,7 +129,7 @@ class Vault extends Contract {

// eslint-disable-next-line no-unused-vars
class Master extends Contract {
vaultMap = new BoxMap<Address, Application>({ defaultSize: 8 });
vaultMap = new BoxMap<Address, Application>();

@handle.createApplication
create(): void {
Expand Down
Loading

0 comments on commit a601293

Please sign in to comment.