edge-currency-accountbased 3.0.3 → 3.1.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/CHANGELOG.md +16 -0
- package/README.md +2 -2
- package/android/src/main/assets/edge-currency-accountbased/1023.chunk.js +6 -0
- package/android/src/main/assets/edge-currency-accountbased/7202.chunk.js +15 -15
- package/android/src/main/assets/edge-currency-accountbased/algorand.chunk.js +1 -1
- package/android/src/main/assets/edge-currency-accountbased/axelar.chunk.js +2 -0
- 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/solana.chunk.js +3 -3
- package/lib/algorand/AlgorandEngine.js +2 -1
- package/lib/common/tokenHelpers.js +6 -6
- package/lib/common/types.js +2 -0
- package/lib/cosmos/CosmosEngine.js +267 -11
- package/lib/cosmos/CosmosTools.js +1 -1
- package/lib/cosmos/cosmosInfos.js +5 -1
- package/lib/cosmos/cosmosRegistry.js +6 -1
- package/lib/cosmos/cosmosTypes.js +58 -0
- package/lib/cosmos/cosmosUtils.js +31 -10
- package/lib/cosmos/info/axelarInfo.js +72 -0
- package/lib/cosmos/info/coreumInfo.js +123 -1
- package/lib/cosmos/info/cosmoshubInfo.js +72 -0
- package/lib/ethereum/EthereumEngine.js +64 -31
- package/lib/ethereum/ethereumInfos.js +5 -1
- package/lib/ethereum/ethereumTypes.js +0 -1
- package/lib/ethereum/fees/ethMiningFees.js +57 -3
- package/lib/ethereum/fees/feeProviders.js +3 -3
- package/lib/ethereum/info/arbitrumInfo.js +143 -0
- package/lib/ethereum/info/avalancheInfo.js +0 -2
- package/lib/ethereum/info/baseInfo.js +131 -0
- package/lib/ethereum/info/binancesmartchainInfo.js +72 -2
- package/lib/ethereum/info/celoInfo.js +0 -2
- package/lib/ethereum/info/ethDevInfo.js +1 -9
- package/lib/ethereum/info/ethereumInfo.js +1 -9
- package/lib/ethereum/info/ethereumclassicInfo.js +0 -2
- package/lib/ethereum/info/ethereumpowInfo.js +0 -2
- package/lib/ethereum/info/fantomInfo.js +0 -2
- package/lib/ethereum/info/filecoinFevmCalibrationInfo.js +0 -2
- package/lib/ethereum/info/filecoinFevmInfo.js +0 -2
- package/lib/ethereum/info/goerliInfo.js +1 -9
- package/lib/ethereum/info/kovanInfo.js +1 -9
- package/lib/ethereum/info/optimismInfo.js +1 -3
- package/lib/ethereum/info/polygonInfo.js +0 -2
- package/lib/ethereum/info/pulsechainInfo.js +0 -2
- package/lib/ethereum/info/rinkebyInfo.js +1 -9
- package/lib/ethereum/info/ropstenInfo.js +1 -9
- package/lib/ethereum/info/rskInfo.js +0 -2
- package/lib/ethereum/info/zksyncInfo.js +0 -2
- package/lib/ethereum/networkAdapters/EvmScanAdapter.js +1 -1
- package/lib/ripple/rippleInfo.js +14 -0
- package/lib/solana/SolanaEngine.js +46 -2
- package/package.json +2 -1
- package/android/src/main/assets/edge-currency-accountbased/4912.chunk.js +0 -6
- package/android/src/main/assets/edge-currency-accountbased/coreum.chunk.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 3.1.0 (2024-02-12)
|
|
6
|
+
|
|
7
|
+
- added: Arbitrum One network support
|
|
8
|
+
- added: Base network support
|
|
9
|
+
- added: (Coreum) Add tokens
|
|
10
|
+
- added: Bitstamp EUR Ripple token
|
|
11
|
+
- added: BSC Tokens BSC-USD,DOGE,BTCB,ETH,TUSD,DOT,WBNB,LINK, and MATIC
|
|
12
|
+
- removed: Unused `EthereumNetworkInfo` params
|
|
13
|
+
|
|
14
|
+
## 3.0.4 (2024-01-30)
|
|
15
|
+
|
|
16
|
+
- added: Cosmos Hub (ATOM) support
|
|
17
|
+
- added: Axelar (AXL) support
|
|
18
|
+
- changed: (Solana) Incorporate rent threshold into insufficient funds checks
|
|
19
|
+
- fixed: (Fantom) Include decimal values in fee rates from EVM scan to fix 'transaction underpriced' errors
|
|
20
|
+
|
|
5
21
|
## 3.0.3 (2024-01-29)
|
|
6
22
|
|
|
7
23
|
- added: (Solana) Versioned transaction parsing
|
package/README.md
CHANGED
|
@@ -44,7 +44,7 @@ The bundle located in `dist/edge-currency-accountbased.js` will automatically re
|
|
|
44
44
|
<script src='https://example.com/app/dist/edge-currency-accountbased.js'>
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
-
If you want to debug this project, run `yarn start` to start
|
|
47
|
+
If you want to debug this project, run `yarn start` to start a Webpack server,
|
|
48
48
|
and then adjust your script URL to http://localhost:8082/edge-currency-accountbased.js.
|
|
49
49
|
|
|
50
50
|
### React Native
|
|
@@ -63,7 +63,7 @@ import { pluginUri, makePluginIo } from 'edge-currency-accountbased'
|
|
|
63
63
|
/>
|
|
64
64
|
```
|
|
65
65
|
|
|
66
|
-
To debug this project, run `yarn start` to start
|
|
66
|
+
To debug this project, run `yarn start` to start a Webpack server, and then use `debugUri` instead of `pluginUri`.
|
|
67
67
|
|
|
68
68
|
## Contributing
|
|
69
69
|
|