@ton/appkit 0.0.4-alpha.2 → 0.0.4
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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +17 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
|
-
> @ton/appkit@0.0.4
|
|
2
|
+
> @ton/appkit@0.0.4 build /home/runner/work/kit/kit/packages/appkit
|
|
3
3
|
> pnpm build:clean && pnpm build:cjs && pnpm build:esm
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @ton/appkit@0.0.4
|
|
6
|
+
> @ton/appkit@0.0.4 build:clean /home/runner/work/kit/kit/packages/appkit
|
|
7
7
|
> git clean -xdf dist
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
> @ton/appkit@0.0.4
|
|
10
|
+
> @ton/appkit@0.0.4 build:cjs /home/runner/work/kit/kit/packages/appkit
|
|
11
11
|
> tsc -p tsconfig.cjs.json
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
> @ton/appkit@0.0.4
|
|
14
|
+
> @ton/appkit@0.0.4 build:esm /home/runner/work/kit/kit/packages/appkit
|
|
15
15
|
> tsc -p tsconfig.json
|
|
16
16
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @ton/appkit
|
|
2
2
|
|
|
3
|
+
## 0.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- babd2af: Implemented and improved multiple methods in `ApiClientTonApi`: `jettonsByOwnerAddress`, `nftItemsByAddress`, `nftItemsByOwner`, `runGetMethod`, `getAccountTransactions`, `getTransactionsByHash`, `getTrace`, `getPendingTrace`, `getEvents`, and `getMasterchainInfo`.
|
|
8
|
+
- 29d0d22: Updated `SwapQuote` and `SwapQuoteParams` types: changed `amount`, `fromAmount`, `toAmount`, and `minReceived` from `TokenAmount` to `string`. This change was made because these fields now contain values already formatted into a human-readable format, whereas `TokenAmount` is intended for nano amounts.
|
|
9
|
+
- 72930db: - Add `getMasterchainInfo` to `ApiClient`, currently implemented in `ApiClientToncenter` and `ApiClientTonApi`.
|
|
10
|
+
- Add `getBlockNumber` action to `@ton/appkit`.
|
|
11
|
+
- Add `useBlockNumber` hook to `@ton/appkit-react`.
|
|
12
|
+
- Updated dependencies [babd2af]
|
|
13
|
+
- Updated dependencies [29d0d22]
|
|
14
|
+
- Updated dependencies [79e00db]
|
|
15
|
+
- Updated dependencies [7491d5e]
|
|
16
|
+
- Updated dependencies [fa55b70]
|
|
17
|
+
- Updated dependencies [72930db]
|
|
18
|
+
- @ton/walletkit@0.0.11
|
|
19
|
+
|
|
3
20
|
## 0.0.4-alpha.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ton/appkit",
|
|
3
|
-
"version": "0.0.4
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@ton/walletkit": "0.0.11
|
|
69
|
+
"@ton/walletkit": "0.0.11"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"@tanstack/query-core": ">=5.0.0",
|