├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Readme.md ├── contracts ├── 1.fc ├── 2.fc ├── 3.fc ├── 4.fc ├── 5.fc └── imports │ └── stdlib.fc ├── jest.config.ts ├── package.json ├── scripts ├── deployTask1.ts ├── deployTask2.ts ├── deployTask3.ts ├── deployTask4.ts └── deployTask5.ts ├── tests ├── Task1.spec.ts ├── Task2.spec.ts ├── Task3.spec.ts ├── Task4.spec.ts └── Task5.spec.ts ├── tsconfig.json └── wrappers ├── Task1.compile.ts ├── Task1.ts ├── Task2.compile.ts ├── Task2.ts ├── Task3.compile.ts ├── Task3.ts ├── Task4.compile.ts ├── Task4.ts ├── Task5.compile.ts └── Task5.ts /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | build 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/.prettierrc -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/Readme.md -------------------------------------------------------------------------------- /contracts/1.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/contracts/1.fc -------------------------------------------------------------------------------- /contracts/2.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/contracts/2.fc -------------------------------------------------------------------------------- /contracts/3.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/contracts/3.fc -------------------------------------------------------------------------------- /contracts/4.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/contracts/4.fc -------------------------------------------------------------------------------- /contracts/5.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/contracts/5.fc -------------------------------------------------------------------------------- /contracts/imports/stdlib.fc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/contracts/imports/stdlib.fc -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/package.json -------------------------------------------------------------------------------- /scripts/deployTask1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/scripts/deployTask1.ts -------------------------------------------------------------------------------- /scripts/deployTask2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/scripts/deployTask2.ts -------------------------------------------------------------------------------- /scripts/deployTask3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/scripts/deployTask3.ts -------------------------------------------------------------------------------- /scripts/deployTask4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/scripts/deployTask4.ts -------------------------------------------------------------------------------- /scripts/deployTask5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/scripts/deployTask5.ts -------------------------------------------------------------------------------- /tests/Task1.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/tests/Task1.spec.ts -------------------------------------------------------------------------------- /tests/Task2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/tests/Task2.spec.ts -------------------------------------------------------------------------------- /tests/Task3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/tests/Task3.spec.ts -------------------------------------------------------------------------------- /tests/Task4.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/tests/Task4.spec.ts -------------------------------------------------------------------------------- /tests/Task5.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/tests/Task5.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wrappers/Task1.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task1.compile.ts -------------------------------------------------------------------------------- /wrappers/Task1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task1.ts -------------------------------------------------------------------------------- /wrappers/Task2.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task2.compile.ts -------------------------------------------------------------------------------- /wrappers/Task2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task2.ts -------------------------------------------------------------------------------- /wrappers/Task3.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task3.compile.ts -------------------------------------------------------------------------------- /wrappers/Task3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task3.ts -------------------------------------------------------------------------------- /wrappers/Task4.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task4.compile.ts -------------------------------------------------------------------------------- /wrappers/Task4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task4.ts -------------------------------------------------------------------------------- /wrappers/Task5.compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task5.compile.ts -------------------------------------------------------------------------------- /wrappers/Task5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ton-community/tsc4/HEAD/wrappers/Task5.ts --------------------------------------------------------------------------------