@ton/sandbox 0.27.0 → 0.27.1

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.27.1] - 2025-02-25
9
+
10
+ ### Fixed
11
+
12
+ - Fixed a bug pertaining to blockchain snapshot loading
13
+
8
14
  ## [0.27.0] - 2025-02-20
9
15
 
10
16
  ### Added
@@ -70,6 +70,7 @@ class Blockchain {
70
70
  */
71
71
  async loadFrom(snapshot) {
72
72
  this.storage.clearKnownContracts();
73
+ this.contractFetches.clear();
73
74
  for (const contract of snapshot.contracts) {
74
75
  const storageContract = await this.getContract(contract.address);
75
76
  storageContract.loadFrom(contract);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/sandbox",
3
- "version": "0.27.0",
3
+ "version": "0.27.1",
4
4
  "description": "TON transaction emulator",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",