@ton/blueprint 0.18.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,12 @@ 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
+
8
14
  ## [0.18.0] - 2024-03-13
9
15
 
10
16
  ### Changed
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/blueprint",
3
- "version": "0.18.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",
@@ -36,8 +36,8 @@
36
36
  "dependencies": {
37
37
  "@orbs-network/ton-access": "^2.3.3",
38
38
  "@tact-lang/compiler": "^1.2.0",
39
- "@ton-community/func-js": "^0.6.3",
40
- "@tonconnect/sdk": "^2.1.3",
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",