Skip to content

Commit

Permalink
chore: changelog & fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dvlkv committed Oct 24, 2023
1 parent 950b38a commit e25a05f
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ 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).

## [13.7.0] - 2023-09-18
## [Unreleased]

## Added
- `sendOrderWithoutSecretKey` method to `MultisigWallet`
- `TonClient4.getAccountTransactionsParsed` method (thanks @vzhovnitsky)
- `MultisigWallet` contract (thanks @Gusarich)
- `WalletV5` contract (thanks @siandreev)
- blockchain fees estimation via `computeStorageFees`/`computeExternalMessageFees`/`computeGasPrices`/`computeMessageForwardFees` (thanks @vzhovnitsky)

## Fixed
- Uri encode get method name for `TonClient4`
- Uri encode get method name for `TonClient4` (thanks @krigga)
- Improved `parseStackItem` due to toncenter.com bug


## [13.6.1] - 2023-08-24
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"karma-webpack": "^5.0.0",
"prando": "^6.0.1",
"release-it": "^15.5.1",
"ton-core": "^0.52.0",
"ton-core": "^0.53.0",
"ton-crypto": "3.2.0",
"ton-emulator": "^2.1.1",
"ts-jest": "^27.0.5",
Expand All @@ -47,7 +47,7 @@
"zod": "^3.21.4"
},
"peerDependencies": {
"ton-core": ">=0.51.0",
"ton-core": ">=0.53.0",
"ton-crypto": ">=3.2.0"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/multisig/MultisigWallet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
ContractProvider,
MessageRelaxed,
} from 'ton-core';
import { getSecureRandomBytes, keyPairFromSeed } from 'ton-crypto';
import { getSecureRandomBytes, keyPairFromSeed, sign } from 'ton-crypto';
import { testAddress, ContractSystem, Treasure } from 'ton-emulator';
import { MultisigWallet } from './MultisigWallet';
import { MultisigOrderBuilder } from './MultisigOrderBuilder';
Expand Down
2 changes: 1 addition & 1 deletion src/wallets/WalletContractV5.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const getExtensionsArray = async (wallet: OpenedContract<WalletContractV5>) => {
return await wallet.getExtensionsArray();
} catch (e) {
// Handle toncenter bug. Toncenter incorrectly returns 'list' in the stack in case of empty extensions dict
if (e && typeof e === 'object' && 'message' in e && e.message === 'Unsupported stack item type: list') {
if (e instanceof Error && e.message === 'Unsupported stack item type: list') {
return [];
}
throw e;
Expand Down
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8146,14 +8146,14 @@ __metadata:
languageName: node
linkType: hard

"ton-core@npm:^0.52.0":
version: 0.52.0
resolution: "ton-core@npm:0.52.0"
"ton-core@npm:^0.53.0":
version: 0.53.0
resolution: "ton-core@npm:0.53.0"
dependencies:
symbol.inspect: 1.0.1
peerDependencies:
ton-crypto: ">=3.2.0"
checksum: dcb50ff6e2f7cb4c42a561319573ab07f7ff296229a7dec1210bcae6980e2a141a368136d9dacc45b93e6a5f24c4f820838a1aa724a69676458461373a3a587a
checksum: a0f6bc3034fda8521e1c628c1bedd5869166be29e4a1267268dd99e885ba25d5d7b67c88970b23bbb332d936ff1fe0d82f776ddb24649f938c047173b81a8629
languageName: node
linkType: hard

Expand Down Expand Up @@ -8213,7 +8213,7 @@ __metadata:
release-it: ^15.5.1
symbol.inspect: 1.0.1
teslabot: ^1.3.0
ton-core: ^0.52.0
ton-core: ^0.53.0
ton-crypto: 3.2.0
ton-emulator: ^2.1.1
ts-jest: ^27.0.5
Expand All @@ -8224,7 +8224,7 @@ __metadata:
webpack: ^5.51.2
zod: ^3.21.4
peerDependencies:
ton-core: ">=0.51.0"
ton-core: ">=0.53.0"
ton-crypto: ">=3.2.0"
languageName: unknown
linkType: soft
Expand Down

0 comments on commit e25a05f

Please sign in to comment.