-
Notifications
You must be signed in to change notification settings - Fork 166
Tooling
Petr Makhnev edited this page Apr 21, 2025
·
11 revisions
- https://github.com/Trinketer22/turbo-wallet: Library for sharded contracts creation
-
https://github.com/ton-org/sandbox
- Limitations: Does not emulate blocks.
-
https://github.com/neodix42/MyLocalTon
- Limitations: More complete emulator compared to Sandbox, but consumes lots of computational resources.
- TODO: Usage of TonDevWallet and Sandbox
You can run it without installing it globally:
npx -p github:tact-lang/tact unboc path/to/file.boc
See https://github.com/disintar/tonpy/blob/main/src/tonpy/tests/test_disasm.py#L535.
pip install tonpy
alias docker-run='docker run --rm -i -v $(pwd):/src -w /src'
alias tvm-action='docker-run ghcr.io/ever-guild/tvm-action'
alias fift='tvm-action fift'
echo '"Disasm.fif" include "App.boc" file>B B>boc <s disasm cr' | fift | grep -v 'ok' > App.fif
Can be used from TypeScript, no CLI at the time of writing.
Can be used from TypeScript, no CLI at the time of writing.
https://github.com/hacker-volodya/tvm-spec-example
https://github.com/neodix42/ton4j/tree/main/disassembler
The ton4j
is the project TON Core reference regarding unified tests for all TON SDKs out there
Kotlin.