edge-currency-accountbased 4.35.0 → 4.35.3
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 +15 -0
- package/android/src/main/assets/edge-currency-accountbased/6845.chunk.js +5 -5
- package/android/src/main/assets/edge-currency-accountbased/edge-currency-accountbased.js +7 -7
- package/android/src/main/assets/edge-currency-accountbased/solana.chunk.js +3 -3
- package/android/src/main/assets/edge-currency-accountbased/sui.chunk.js +1 -1
- package/android/src/main/assets/edge-currency-accountbased/ton.chunk.js +2 -2
- package/lib/common/utils.js +19 -0
- package/lib/solana/SolanaEngine.js +222 -159
- package/lib/solana/SolanaTools.js +2 -0
- package/lib/solana/solanaInfo.js +3 -2
- package/lib/solana/solanaTypes.js +22 -10
- package/lib/sui/SuiEngine.js +1 -1
- package/lib/ton/TonEngine.js +13 -7
- package/lib/ton/TonTools.js +17 -6
- package/lib/ton/tonTypes.js +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.35.3 (2025-01-28)
|
|
6
|
+
|
|
7
|
+
- changed: (Solana) Implement transaction broadcast retry logic
|
|
8
|
+
- changed: (Ton) Only use ton center for transaction query
|
|
9
|
+
- fixed: (Ton) Fix `isSend` when processing transactions
|
|
10
|
+
|
|
11
|
+
## 4.35.1 (2025-01-22)
|
|
12
|
+
|
|
13
|
+
- changed: (Solana) Replace fee, rent, and recentblockhash loops with cached queries where they are needed
|
|
14
|
+
- changed: (Solana) Only query transaction blocktime if it isn't already present
|
|
15
|
+
- fixed: (Solana) Fix checking token send amount against rent threshold
|
|
16
|
+
- fixed: (Solana) Fix recent txid stored for efficient tx query
|
|
17
|
+
- fixed: (Sui) Fix Map handling in `processTransaction`
|
|
18
|
+
- removed: (Solana) Remove blockheight loop
|
|
19
|
+
|
|
5
20
|
## 4.35.0 (2025-01-15)
|
|
6
21
|
|
|
7
22
|
- changed: Implement new Seen Tx Checkpoint API for all currencies.
|