[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-75729":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":9,"totalLinesOfCode":9,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":9,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":9,"rankLanguage":9,"license":9,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":22,"hasPages":22,"topics":24,"createdAt":9,"pushedAt":9,"updatedAt":30,"readmeContent":31,"aiSummary":32,"trendingCount":16,"starSnapshotCount":16,"syncStatus":33,"lastSyncTime":34,"discoverSource":35},75729,"acton","ton-blockchain\u002Facton","ton-blockchain","Toolchain for TON smart contract development and beyond",null,"https:\u002F\u002Fgithub.com\u002Fton-blockchain\u002Facton","Rust",364,48,9,19,0,1,10,163,3,5.07,false,"main",[25,26,27,7,28,29],"rust","tolk","ton","tooling","mtonga","2026-06-12 02:03:35","# Acton\n\n\u003Cimg align=\"right\" src=\"docs\u002Fpublic\u002Flogo.png\" height=\"150px\" alt=\"Acton logo\" \u002F>\n\nActon is an all-in-one TON smart contract development toolkit written in Rust.\nIt combines project scaffolding, build, testing, scripting, wallet and network\noperations, verification, linting, formatting, debugging, and low-level VM\ntooling in one CLI.\n\nBuilt for **humans**. Perfect for **AI**.\n\n### [Read the docs →](https:\u002F\u002Fton-blockchain.github.io\u002Facton\u002Fdocs\u002Fwelcome)\n\n\u003Cbr clear=\"right\" \u002F>\n\n## Why Acton\n\n- Single CLI for the full contract lifecycle: create, build, test, debug,\n  deploy, verify.\n- Native speed (Rust-based toolchain and test runtime).\n- Tolk-first workflow with built-in wrappers, testing utilities, and scripts.\n- Ready for dApp development with project templates and automatically generated TypeScript wrappers.\n- Fast test runner with fork mode, gas snapshots, coverage, mutation, fuzz testing, and the browser Test UI.\n- Browser test UI for failed tests, traces, logs, and coverage inspection.\n\n## Install\n\nThe recommended way to get Acton today is to run the latest public installer:\n\n```bash\ncurl -LsSf https:\u002F\u002Fgithub.com\u002Fton-blockchain\u002Facton\u002Freleases\u002Flatest\u002Fdownload\u002Facton-installer.sh | sh\n```\n\nIf you prefer a manual download, use the latest public release:\n\n| Platform | Architecture | Download                                                                                                                                          |\n|----------|--------------|---------------------------------------------------------------------------------------------------------------------------------------------------|\n| macOS    | ARM64        | [acton-aarch64-apple-darwin.tar.gz](https:\u002F\u002Fgithub.com\u002Fton-blockchain\u002Facton\u002Freleases\u002Flatest\u002Fdownload\u002Facton-aarch64-apple-darwin.tar.gz)           |\n| macOS    | x86_64       | [acton-x86_64-apple-darwin.tar.gz](https:\u002F\u002Fgithub.com\u002Fton-blockchain\u002Facton\u002Freleases\u002Flatest\u002Fdownload\u002Facton-x86_64-apple-darwin.tar.gz)             |\n| Linux    | x86_64       | [acton-x86_64-unknown-linux-gnu.tar.gz](https:\u002F\u002Fgithub.com\u002Fton-blockchain\u002Facton\u002Freleases\u002Flatest\u002Fdownload\u002Facton-x86_64-unknown-linux-gnu.tar.gz)   |\n| Linux    | ARM64        | [acton-aarch64-unknown-linux-gnu.tar.gz](https:\u002F\u002Fgithub.com\u002Fton-blockchain\u002Facton\u002Freleases\u002Flatest\u002Fdownload\u002Facton-aarch64-unknown-linux-gnu.tar.gz) |\n\nAfter extracting the archive, make sure `acton` is on your `PATH` and verify\nthe installation:\n\n```bash\nacton --version\n```\n\nIf you prefer a containerized workflow, use the published Docker image:\n\n```bash\ndocker run --rm ghcr.io\u002Fton-blockchain\u002Facton:\u003Cversion> --version\n```\n\nTo run Acton against the current project from Docker:\n\n```bash\ndocker run --rm \\\n  -v \"$PWD\":\u002Fworkspace \\\n  -w \u002Fworkspace \\\n  ghcr.io\u002Fton-blockchain\u002Facton:\u003Cversion> \\\n  build\n```\n\nFor more installation details, see the\n[installation guide](https:\u002F\u002Fton-blockchain.github.io\u002Facton\u002Fdocs\u002Finstallation).\n\n## Support policy\n\nActon is stable on the latest numbered GitHub release. The first-class platform\nmatrix is macOS (ARM64, x86_64) plus Linux GNU (x86_64, ARM64). For Linux, the\ndocumented baseline is Ubuntu 20.04 or newer. Native Windows is not supported\ntoday. If you use Windows, run Acton inside WSL with Ubuntu 20.04 or newer and\nfollow the Linux installation path there. `trunk` builds installed via\n`acton up --trunk`, WSL installs, and other source-built targets are beta \u002F\nbest-effort surfaces for now. The full policy is documented at\n[Support policy](https:\u002F\u002Fton-blockchain.github.io\u002Facton\u002Fdocs\u002Finstallation#support-policy).\n\n## From zero to testnet\n\n```bash\n# Create a new project from the built-in counter template\nacton new first_counter --template counter\ncd first_counter\n\n# Build and test locally\nacton build\nacton test\n\n# Create and fund a locally stored testnet wallet\nacton wallet new --name deployer --local --airdrop --version v5r1\n\n# Deploy to TON testnet\nacton script scripts\u002Fdeploy.tolk --net testnet\n```\n\nFor a step-by-step walkthrough, see the\n[quickstart guide](https:\u002F\u002Fton-blockchain.github.io\u002Facton\u002Fdocs\u002Fquickstart).\n\nAlready have a repository instead of starting from a template? The existing\nproject path is:\n\n```bash\ncd your-repo\nacton init\nacton build\nacton test\n```\n\nFor more details, see the [Project management guide](https:\u002F\u002Fton-blockchain.github.io\u002Facton\u002Fdocs\u002Fprojects).\n\n## Building from source\n\nSource builds are intended for contributors and local development. See\n[Building from source](CONTRIBUTING.md#building-from-source) in CONTRIBUTING.md.\n\n## Contributing\n\nContributor setup, test workflows, UI build steps, and docs workflows are in\n[CONTRIBUTING.md](CONTRIBUTING.md).\n\n## License\n\nActon is licensed under either of\n\n- Apache License, Version 2.0, ([LICENSE-APACHE](.\u002FLICENSE-APACHE) or https:\u002F\u002Fwww.apache.org\u002Flicenses\u002FLICENSE-2.0)\n- MIT license ([LICENSE-MIT](.\u002FLICENSE-MIT) or https:\u002F\u002Fopensource.org\u002Flicenses\u002FMIT)\n\nat your option.\n\nUnless you explicitly state otherwise, any contribution intentionally submitted for\ninclusion in Acton by you, as defined in the Apache-2.0 license, shall be dually licensed\nas above, without any additional terms or conditions.\n","Acton是一个专为TON区块链智能合约开发设计的一体化工具链，使用Rust语言编写。它集成了项目脚手架、构建、测试、脚本编写、钱包与网络操作、验证、代码检查、格式化、调试以及低级虚拟机工具等功能于单一CLI中，支持从创建到部署的全生命周期管理。该工具链基于Rust实现，提供原生速度体验，并内置了Tolk工作流、测试工具和脚本，非常适合dApp开发。此外，它还拥有快速测试运行器，支持多种测试模式如fork模式、气体快照、覆盖率分析等，并提供了浏览器端测试界面方便查看失败测试详情及日志。适用于需要高效、全面支持TON智能合约开发的场景。",2,"2026-06-11 03:53:10","trending"]