Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@ton/blueprint
Advanced tools
A development environment for TON blockchain for writing, testing, and deploying smart contracts.
Run the following in terminal to create a new project and follow the on-screen instructions:
npm create ton@latest
npm create ton@latest
ton://
deeplinknode -v
npm create ton@latest
or npx create-ton@latest
npm install
or yarn install
contracts/
- Source code in FunC for all smart contracts and their importswrappers/
- TypeScript interface classes for all contracts (implementing Contract
from @ton/core)
tests/
- TypeScript test suite for all contracts (relying on Sandbox for in-process tests)scripts/
- Deployment scripts to mainnet/testnet and other scripts interacting with live contractsbuild/
- Compilation artifacts created here after running a build commandwrappers/<CONTRACT>.compile.ts
- examplenpx blueprint build
or yarn blueprint build
npx/yarn blueprint build <CONTRACT>
OR build all contracts yarn blueprint build --all
yarn blueprint build counter
build/<CONTRACT>.compiled.json
npx blueprint test
or yarn blueprint test
npm test
or yarn test
Learn more about writing tests from the Sandbox's documentation - here.
scripts/deploy<CONTRACT>.ts
- examplenpx blueprint run
or yarn blueprint run
npx/yarn blueprint run <CONTRACT> --<NETWORK> --<DEPLOY_METHOD>
yarn blueprint run deployCounter --mainnet --tonconnect
Run in terminal: npx blueprint help
or yarn blueprint help
npx blueprint create
or yarn blueprint create
npx/yarn blueprint create <CONTRACT> --type <TYPE>
(type can be func-empty
, func-counter
, tact-empty
, tact-counter
)
yarn blueprint create MyNewContract --type func-empty
contracts/<CONTRACT>.fc
contracts/imports/*.fc
wrappers/<CONTRACT>.ts
to encode messages and decode getterstests/<CONTRACT>.spec.ts
wrappers/<CONTRACT>.ts
to interact with the contractLearn more about writing tests from the Sandbox's documentation - here.
wrappers/<CONTRACT>.compile.ts
scripts/deploy<CONTRACT>.ts
wrappers/<CONTRACT>.ts
to initialize the contractBlueprint has a plugin system to allow the community to develop their own additions for the ecosystem without the need to change blueprint's code.
In order to use plugins, create a blueprint.config.ts
file in the root of your project with something like this:
import { Config } from '@ton/blueprint';
import { ScaffoldPlugin } from 'blueprint-scaffold';
export const config: Config = {
plugins: [new ScaffoldPlugin()],
};
(This example shows how to add the scaffold plugin)
It is important that the config is exported, is named config
, and is not default
exported.
Here are some of the plugins developed by the community:
Special thanks to @qdevstudio for their logo for blueprint.
MIT
TON - EQAQR1d1Q4NaE5EefwUMdrr1QvXg-8mDB0XI2-fwDBD0nYxC
[0.15.0] - 2023-12-15
--custom-version
, --custom-key
, --custom-type
to run
and verify
commands to allow better control over custom API behavior--custom
now always adds jsonRPC
to API URL for v2 APIsFAQs
Framework for development of TON smart contracts
The npm package @ton/blueprint receives a total of 4,143 weekly downloads. As such, @ton/blueprint popularity was classified as popular.
We found that @ton/blueprint demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.