@ton/blueprint 0.17.0 → 0.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.19.0] - 2024-03-27
9
+
10
+ ### Changed
11
+
12
+ - Updated dependencies: func-js to 0.7.0, tonconnect sdk to 2.2.0
13
+
14
+ ## [0.18.0] - 2024-03-13
15
+
16
+ ### Changed
17
+
18
+ - Changed `@tact-lang/compiler` dependency to be `^1.2.0` instead of `^1.1.5`
19
+ - Updated the Tact counter template to use the new `+=` operator from Tact v1.2.0
20
+
8
21
  ## [0.17.0] - 2024-03-01
9
22
 
10
23
  This release contains a breaking change.
@@ -237,4 +250,4 @@ This release contains a breaking change.
237
250
 
238
251
  ### Fixed
239
252
 
240
- - File selection (compilation files in `build` and scripts in `run`) now accepts CLI argument hints in any case
253
+ - File selection (compilation files in `build` and scripts in `run`) now accepts CLI argument hints in any case
@@ -125,7 +125,7 @@ const verify = async (args, ui, context) => {
125
125
  }
126
126
  const result = await (0, compile_1.doCompile)(sel.name);
127
127
  const resHash = result.code.hash();
128
- ui.write(`Compiled code hash hex:${resHash.toString('hex')}`);
128
+ ui.write(`Compiled code hash hex: ${resHash.toString('hex')}`);
129
129
  ui.write('We can look up the address with such code hash in the blockchain automatically');
130
130
  const passManually = await ui.prompt('Do you want to specify the address manually?');
131
131
  let addr;
@@ -16,7 +16,7 @@ contract {{name}} with Deployable {
16
16
  }
17
17
 
18
18
  receive(msg: Add) {
19
- self.counter = (self.counter + msg.amount);
19
+ self.counter += msg.amount;
20
20
  }
21
21
 
22
22
  get fun counter(): Int {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/blueprint",
3
- "version": "0.17.0",
3
+ "version": "0.19.0",
4
4
  "description": "Framework for development of TON smart contracts",
5
5
  "main": "dist/index.js",
6
6
  "bin": "./dist/cli/cli.js",
@@ -35,9 +35,9 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@orbs-network/ton-access": "^2.3.3",
38
- "@tact-lang/compiler": "^1.1.5",
39
- "@ton-community/func-js": "^0.6.3",
40
- "@tonconnect/sdk": "^2.1.3",
38
+ "@tact-lang/compiler": "^1.2.0",
39
+ "@ton-community/func-js": "^0.7.0",
40
+ "@tonconnect/sdk": "^2.2.0",
41
41
  "arg": "^5.0.2",
42
42
  "chalk": "^4.1.0",
43
43
  "dotenv": "^16.1.4",