@ton/ton 13.5.1 → 13.7.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/dist/client/TonClient.d.ts +1 -19
- package/dist/client/TonClient4.js +1 -1
- package/dist/client/api/HttpApi.js +3 -1
- package/dist/config/ConfigParser.d.ts +622 -0
- package/dist/config/ConfigParser.js +711 -0
- package/dist/config/ConfigParser.spec.d.ts +8 -0
- package/dist/config/ConfigParser.spec.js +97 -0
- package/dist/elector/ElectorContract.d.ts +51 -0
- package/dist/elector/ElectorContract.js +192 -0
- package/dist/elector/ElectorContract.spec.d.ts +8 -0
- package/dist/elector/ElectorContract.spec.js +104 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +35 -1
- package/dist/multisig/MultisigWallet.d.ts +1 -0
- package/dist/multisig/MultisigWallet.js +14 -0
- package/dist/multisig/MultisigWallet.spec.js +18 -0
- package/package.json +4 -4
- package/CHANGELOG.md +0 -133
package/CHANGELOG.md
DELETED
|
@@ -1,133 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
All notable changes to this project will be documented in this file.
|
|
3
|
-
|
|
4
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
-
|
|
7
|
-
## [13.5.1] - 2023-07-14
|
|
8
|
-
## Changed
|
|
9
|
-
- Migrated to `@ton/crypto` package instead of `ton-crypto`
|
|
10
|
-
- Migrated to `@ton/core` instead of `ton-core`
|
|
11
|
-
- Migrated to `@ton/emulator` instead of `ton-emulator`
|
|
12
|
-
- Renamed package to `@ton/ton`
|
|
13
|
-
|
|
14
|
-
## [13.5.0] - 2023-05-10
|
|
15
|
-
## Fixed
|
|
16
|
-
- Replaced `io-ts` with `zod` to reduce web bundle size
|
|
17
|
-
- Removed unimplemented method `getOneTransaction` from `TonClient4`
|
|
18
|
-
|
|
19
|
-
## [13.4.1] - 2023-03-02
|
|
20
|
-
|
|
21
|
-
## Added
|
|
22
|
-
- call get method aliases for TonClient (#7)
|
|
23
|
-
- add isContractDeployed to TonClient4 (#6)
|
|
24
|
-
|
|
25
|
-
## Fixed
|
|
26
|
-
- Updated `ton-core` to depend from 0.48.0
|
|
27
|
-
- Fixed typos in `SendMode`
|
|
28
|
-
|
|
29
|
-
## [13.4.0] - 2023-03-01
|
|
30
|
-
|
|
31
|
-
## Added
|
|
32
|
-
- `MultisigWallet`, `MultisigOrder` and `MultisigOrderBuilder`
|
|
33
|
-
|
|
34
|
-
## [13.3.0] - 2023-01-05
|
|
35
|
-
|
|
36
|
-
## Added
|
|
37
|
-
- `getTransaction` to `TonClient4` to get a single transaction by id
|
|
38
|
-
|
|
39
|
-
## [13.2.0] - 2022-12-31
|
|
40
|
-
|
|
41
|
-
## Changed
|
|
42
|
-
- Updaded `ton-core` and renambed `AccountState` to `ContractState`
|
|
43
|
-
- Replaced internal usafe of a `openContract` with `ton-core` one
|
|
44
|
-
|
|
45
|
-
## [13.1.0] - 2022-12-31
|
|
46
|
-
|
|
47
|
-
## Changed
|
|
48
|
-
- Upgraded `ton-core` and removed legacy usage of `Message` type
|
|
49
|
-
|
|
50
|
-
## [13.0.0] - 2022-12-29
|
|
51
|
-
|
|
52
|
-
## Changed
|
|
53
|
-
- Large refactoring, removing a lot of obsolete features and replacing low level classes like `Cell` with `ton-core` implementation
|
|
54
|
-
- New way to work with contracts
|
|
55
|
-
- Explicit work with wallet contracts
|
|
56
|
-
- Unify stack operations in `TonClient` and `TonClient4`
|
|
57
|
-
- Merged `TupleSlice` and `TupleSlice4` into `TupleReader` from `ton-core`
|
|
58
|
-
|
|
59
|
-
## Removed
|
|
60
|
-
- Removed magical `Wallet` operations
|
|
61
|
-
|
|
62
|
-
## [12.3.3] - 2022-12-22
|
|
63
|
-
# Changed
|
|
64
|
-
- Improved BOC serialization
|
|
65
|
-
|
|
66
|
-
## [12.3.2]
|
|
67
|
-
- Fix unicode symbols in `readString` function
|
|
68
|
-
|
|
69
|
-
## [10.4.0]
|
|
70
|
-
- `TonClient4` - client for new API
|
|
71
|
-
|
|
72
|
-
## [10.0.0]-[10.3.0]
|
|
73
|
-
- Exotic Cells parsing
|
|
74
|
-
- `readBitString`
|
|
75
|
-
- VM Stack parsing
|
|
76
|
-
|
|
77
|
-
## [9.2.0]
|
|
78
|
-
- Builder and dict builder
|
|
79
|
-
|
|
80
|
-
## [9.1.0]
|
|
81
|
-
- Support for API token
|
|
82
|
-
|
|
83
|
-
## [9.0.0]
|
|
84
|
-
- Synchronous Cell's `hash` and a lot of related functions like `contractAddress`.
|
|
85
|
-
|
|
86
|
-
## [6.10.0]
|
|
87
|
-
- Better compatibility with webpack
|
|
88
|
-
|
|
89
|
-
## [6.8.0]
|
|
90
|
-
- Allow large comments
|
|
91
|
-
|
|
92
|
-
## [6.7.0]
|
|
93
|
-
- Exported all parsing methods and `contractAddress`
|
|
94
|
-
|
|
95
|
-
## [6.6.0]
|
|
96
|
-
- ADNL address
|
|
97
|
-
|
|
98
|
-
## [6.5.2]
|
|
99
|
-
- Improve Internal/External messages typings
|
|
100
|
-
|
|
101
|
-
## [6.5.0-6.5.1]
|
|
102
|
-
- Ability to include first transaction in getTransactions method
|
|
103
|
-
|
|
104
|
-
## [6.4.0]
|
|
105
|
-
- Better webpack support
|
|
106
|
-
|
|
107
|
-
## [6.3.0]
|
|
108
|
-
|
|
109
|
-
- Added dictionary serialization
|
|
110
|
-
- Added `equals` to Cell
|
|
111
|
-
|
|
112
|
-
## [6.1.0-6.2.1]
|
|
113
|
-
|
|
114
|
-
- Added parsing of int (as addition to uint) in `BitStreamReader` and `Slice`
|
|
115
|
-
|
|
116
|
-
## [6.0.0]
|
|
117
|
-
|
|
118
|
-
- [BREAKING] Change `RawMessage` to `CellMessage` and use `RawMessage` in parseTransaction
|
|
119
|
-
- Improve parseTransaction typings. Added:
|
|
120
|
-
- RawAccountStatus
|
|
121
|
-
- RawCurrencyCollection
|
|
122
|
-
- RawCommonMessageInfo
|
|
123
|
-
- RawStateInit
|
|
124
|
-
- RawMessage
|
|
125
|
-
- RawHashUpdate
|
|
126
|
-
- RawAccountStatusChange
|
|
127
|
-
- RawStorageUsedShort
|
|
128
|
-
- RawStoragePhase
|
|
129
|
-
- RawComputePhase
|
|
130
|
-
- RawActionPhase
|
|
131
|
-
- RawBouncePhase
|
|
132
|
-
- RawTransactionDescription
|
|
133
|
-
- RawTransaction
|