@ton/sandbox 0.32.1 → 0.32.2

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,16 @@ 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.32.2] - 2025-06-10
9
+
10
+ ### Changed
11
+
12
+ - Added missing `@ton/core` peer dependency
13
+
14
+ ### Fixed
15
+
16
+ - Fixed missing `storageExtra` field when creating accounts
17
+
8
18
  ## [0.32.1] - 2025-06-05
9
19
 
10
20
  ### Fixed
@@ -106,10 +106,10 @@ class RemoteBlockchainStorage {
106
106
  used: {
107
107
  cells: 0n,
108
108
  bits: 0n,
109
- publicCells: 0n,
110
109
  },
111
110
  lastPaid: 0,
112
111
  duePayment: null,
112
+ storageExtra: null,
113
113
  },
114
114
  storage: {
115
115
  lastTransLt: lt === 0n ? 0n : (lt + 1n),
@@ -38,10 +38,10 @@ function createShardAccount(args) {
38
38
  used: {
39
39
  cells: 0n,
40
40
  bits: 0n,
41
- publicCells: 0n
42
41
  },
43
42
  lastPaid: 0,
44
- duePayment: null
43
+ duePayment: null,
44
+ storageExtra: null,
45
45
  }
46
46
  },
47
47
  lastTransactionLt: 0n,
@@ -58,8 +58,9 @@ function createEmptyAccount(address) {
58
58
  state: { type: 'uninit' }
59
59
  },
60
60
  storageStats: {
61
- used: { cells: 0n, bits: 0n, publicCells: 0n },
61
+ used: { cells: 0n, bits: 0n },
62
62
  lastPaid: 0,
63
+ storageExtra: null,
63
64
  }
64
65
  };
65
66
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/sandbox",
3
- "version": "0.32.1",
3
+ "version": "0.32.2",
4
4
  "description": "TON transaction emulator",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",
@@ -15,7 +15,7 @@
15
15
  "url": "git+https://github.com/ton-org/sandbox"
16
16
  },
17
17
  "devDependencies": {
18
- "@ton/core": "^0.60.1",
18
+ "@ton/core": "^0.61.0",
19
19
  "@ton/crypto": "3.3.0",
20
20
  "@ton/test-utils": "^0.7.0",
21
21
  "@ton/tolk-js": "^0.13.0",
@@ -30,6 +30,7 @@
30
30
  "typescript": "^4.9.5"
31
31
  },
32
32
  "peerDependencies": {
33
+ "@ton/core": ">=0.61.0",
33
34
  "@ton/crypto": ">=3.3.0",
34
35
  "@ton/test-utils": ">=0.7.0",
35
36
  "jest": "^29.5.0"