Skip to content

Commit

Permalink
chore: verify help
Browse files Browse the repository at this point in the history
chore: bump version
chore: changelog
  • Loading branch information
krigga committed Nov 23, 2023
1 parent 1fd8605 commit 7c84239
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.14.0] - 2023-11-23

### Added

- Added `verify` command to quickly verify contracts on [verifier.ton.org](https://verifier.ton.org)

## [0.13.0] - 2023-11-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ton/blueprint",
"version": "0.13.0",
"version": "0.14.0",
"description": "Framework for development of TON smart contracts",
"main": "dist/index.js",
"bin": "./dist/cli/cli.js",
Expand Down
9 changes: 8 additions & 1 deletion src/cli/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ List of available commands:
- run
- build
- help
- test`,
- test
- verify`,
create: `Usage: blueprint create [contract name] [flags]
Creates a new contract together with supporting files according to a template.
Expand Down Expand Up @@ -47,6 +48,12 @@ Flags:
test: `Usage: blueprint test
Just runs \`npm test\`, which by default runs \`jest\`.`,
verify: `Usage: blueprint verify [contract name] [flags]
Builds a contract (similar to build command) and verifies it on https://verifier.ton.org. The contract must be already deployed on the network. If the contract's name is not specified on the command line, it will be asked interactively.
Flags:
--mainnet, --testnet - specifies the network on which to verify the contract. If not specified on the command line, it will be asked interactively.`
};

export let additionalHelpMessages: Record<string, string> = {};
Expand Down

0 comments on commit 7c84239

Please sign in to comment.