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.
Files changed (53) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/README.md +2 -2
  3. package/android/src/main/assets/edge-currency-accountbased/1023.chunk.js +6 -0
  4. package/android/src/main/assets/edge-currency-accountbased/7202.chunk.js +15 -15
  5. package/android/src/main/assets/edge-currency-accountbased/algorand.chunk.js +1 -1
  6. package/android/src/main/assets/edge-currency-accountbased/axelar.chunk.js +2 -0
  7. package/android/src/main/assets/edge-currency-accountbased/edge-currency-accountbased.js +2 -2
  8. package/android/src/main/assets/edge-currency-accountbased/ethereum.chunk.js +9 -9
  9. package/android/src/main/assets/edge-currency-accountbased/solana.chunk.js +3 -3
  10. package/lib/algorand/AlgorandEngine.js +2 -1
  11. package/lib/common/tokenHelpers.js +6 -6
  12. package/lib/common/types.js +2 -0
  13. package/lib/cosmos/CosmosEngine.js +267 -11
  14. package/lib/cosmos/CosmosTools.js +1 -1
  15. package/lib/cosmos/cosmosInfos.js +5 -1
  16. package/lib/cosmos/cosmosRegistry.js +6 -1
  17. package/lib/cosmos/cosmosTypes.js +58 -0
  18. package/lib/cosmos/cosmosUtils.js +31 -10
  19. package/lib/cosmos/info/axelarInfo.js +72 -0
  20. package/lib/cosmos/info/coreumInfo.js +123 -1
  21. package/lib/cosmos/info/cosmoshubInfo.js +72 -0
  22. package/lib/ethereum/EthereumEngine.js +64 -31
  23. package/lib/ethereum/ethereumInfos.js +5 -1
  24. package/lib/ethereum/ethereumTypes.js +0 -1
  25. package/lib/ethereum/fees/ethMiningFees.js +57 -3
  26. package/lib/ethereum/fees/feeProviders.js +3 -3
  27. package/lib/ethereum/info/arbitrumInfo.js +143 -0
  28. package/lib/ethereum/info/avalancheInfo.js +0 -2
  29. package/lib/ethereum/info/baseInfo.js +131 -0
  30. package/lib/ethereum/info/binancesmartchainInfo.js +72 -2
  31. package/lib/ethereum/info/celoInfo.js +0 -2
  32. package/lib/ethereum/info/ethDevInfo.js +1 -9
  33. package/lib/ethereum/info/ethereumInfo.js +1 -9
  34. package/lib/ethereum/info/ethereumclassicInfo.js +0 -2
  35. package/lib/ethereum/info/ethereumpowInfo.js +0 -2
  36. package/lib/ethereum/info/fantomInfo.js +0 -2
  37. package/lib/ethereum/info/filecoinFevmCalibrationInfo.js +0 -2
  38. package/lib/ethereum/info/filecoinFevmInfo.js +0 -2
  39. package/lib/ethereum/info/goerliInfo.js +1 -9
  40. package/lib/ethereum/info/kovanInfo.js +1 -9
  41. package/lib/ethereum/info/optimismInfo.js +1 -3
  42. package/lib/ethereum/info/polygonInfo.js +0 -2
  43. package/lib/ethereum/info/pulsechainInfo.js +0 -2
  44. package/lib/ethereum/info/rinkebyInfo.js +1 -9
  45. package/lib/ethereum/info/ropstenInfo.js +1 -9
  46. package/lib/ethereum/info/rskInfo.js +0 -2
  47. package/lib/ethereum/info/zksyncInfo.js +0 -2
  48. package/lib/ethereum/networkAdapters/EvmScanAdapter.js +1 -1
  49. package/lib/ripple/rippleInfo.js +14 -0
  50. package/lib/solana/SolanaEngine.js +46 -2
  51. package/package.json +2 -1
  52. package/android/src/main/assets/edge-currency-accountbased/4912.chunk.js +0 -6
  53. 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 the a Webpack server,
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 the a Webpack server, and then use `debugUri` instead of `pluginUri`.
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