edge-currency-accountbased 2.1.0 → 2.2.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 +18 -0
- package/android/src/main/assets/edge-currency-accountbased/223.chunk.js +2 -2
- package/android/src/main/assets/edge-currency-accountbased/edge-currency-accountbased.js +2 -2
- package/android/src/main/assets/edge-currency-accountbased/ethereum.chunk.js +9 -9
- package/android/src/main/assets/edge-currency-accountbased/filecoin.chunk.js +1 -1
- package/android/src/main/assets/edge-currency-accountbased/polkadot.chunk.js +2 -2
- package/lib/ethereum/EthereumEngine.js +2 -1
- package/lib/ethereum/EthereumNetwork.js +15 -22
- package/lib/ethereum/ethereumTypes.js +31 -0
- package/lib/ethereum/info/binancesmartchainInfo.js +8 -0
- package/lib/ethereum/info/ethereumInfo.js +27 -2
- package/lib/ethereum/info/fantomInfo.js +1 -1
- package/lib/ethereum/info/goerliInfo.js +2 -2
- package/lib/ethereum/info/kovanInfo.js +2 -2
- package/lib/ethereum/info/polygonInfo.js +1 -1
- package/lib/ethereum/info/rinkebyInfo.js +2 -2
- package/lib/ethereum/info/ropstenInfo.js +2 -2
- package/lib/filecoin/FilecoinEngine.js +1 -1
- package/lib/filecoin/Filscan.js +2 -1
- package/lib/filecoin/filecoinInfo.js +2 -3
- package/lib/polkadot/PolkadotEngine.js +116 -55
- package/lib/polkadot/info/liberlandInfo.js +3 -2
- package/lib/polkadot/info/liberlandTestnetInfo.js +3 -2
- package/lib/polkadot/info/polkadotInfo.js +1 -0
- package/lib/polkadot/polkadotTypes.js +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# edge-currency-accountbased
|
|
2
2
|
|
|
3
|
+
## 2.2.1 (2023-09-04)
|
|
4
|
+
|
|
5
|
+
changed: Use separate code path for calculating token max spendable (Polkadot)
|
|
6
|
+
changed: Allow user to spend entire token balance (Polkadot)
|
|
7
|
+
changed: Add early exit to transaction query (Polkadot)
|
|
8
|
+
fixed: Use Filscan as the block explorer for Filecoin
|
|
9
|
+
fixed: Used correct balance in when sending tokens (Polkadot)
|
|
10
|
+
fixed: Update Liberland length fee cost
|
|
11
|
+
|
|
12
|
+
## 2.2.0 (2023-09-04)
|
|
13
|
+
|
|
14
|
+
- added: Add new ETH tokens ARB, BUSD, and PAXG
|
|
15
|
+
- added: Add new BSC token BUSD
|
|
16
|
+
- added: Add new RPC server, Pocket Network
|
|
17
|
+
- changed: Parameterize apikey replacement in node urls and remove url-specific apikey logic in engines
|
|
18
|
+
- fixed: Skip Liberland transaction history query if subscan url isn't present
|
|
19
|
+
- fixed: Correctly report transaction history query status for new empty Filecoin wallets
|
|
20
|
+
|
|
3
21
|
## 2.1.0 (2023-08-29)
|
|
4
22
|
|
|
5
23
|
- added: Add a Liberland plugin.
|