edge-currency-accountbased 4.44.0 → 4.45.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 +10 -0
- package/README.md +4 -1
- package/android/src/main/assets/edge-currency-accountbased/6845.chunk.js +6 -6
- package/android/src/main/assets/edge-currency-accountbased/edge-currency-accountbased.js +7 -7
- package/android/src/main/assets/edge-currency-accountbased/ethereum.chunk.js +7 -7
- package/android/src/main/assets/edge-currency-accountbased/tron.chunk.js +1 -1
- package/android/src/main/assets/edge-currency-accountbased/zano.chunk.js +6 -0
- package/lib/common/utils.js +33 -0
- package/lib/declare-modules.d.js +1 -0
- package/lib/ethereum/EthereumEngine.js +46 -0
- package/lib/ethereum/EthereumNetwork.js +64 -122
- package/lib/ethereum/ethereumTypes.js +0 -59
- package/lib/ethereum/networkAdapters/EvmScanAdapter.js +205 -67
- package/lib/ethereum/networkAdapters/types.js +34 -2
- package/lib/index.js +2 -0
- package/lib/ripple/rippleInfo.js +2 -2
- package/lib/tron/TronEngine.js +101 -59
- package/lib/zano/ZanoEngine.js +478 -0
- package/lib/zano/ZanoTools.js +248 -0
- package/lib/zano/zanoInfo.js +98 -0
- package/lib/zano/zanoIo.js +6 -0
- package/lib/zano/zanoTypes.js +83 -0
- package/package.json +8 -4
- package/rn-zano.d.ts +3 -0
- package/rn-zano.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 4.45.1 (2025-04-29)
|
|
6
|
+
|
|
7
|
+
- fixed: (TRX) Energy estimations based on contract storage state
|
|
8
|
+
|
|
9
|
+
## 4.45.0 (2025-04-28)
|
|
10
|
+
|
|
11
|
+
- added: Add Zano
|
|
12
|
+
- changed: Implement use of edge-change-server for network syncing.
|
|
13
|
+
- changed: Use XRPL as the network name.
|
|
14
|
+
|
|
5
15
|
## 4.44.0 (2025-04-02)
|
|
6
16
|
|
|
7
17
|
- added: (ZKSync) Add token detection contract
|
package/README.md
CHANGED
|
@@ -67,11 +67,12 @@ To debug this project, run `yarn start` to start a Webpack server, and then use
|
|
|
67
67
|
|
|
68
68
|
Notice the `/rn` suffix on the `import` statement. If you leave this off (which is deprecated), react-native-piratechain and react-native-zcash will both be mandatory, and the instructions below won't apply.
|
|
69
69
|
|
|
70
|
-
#### Zcash / Piratechain
|
|
70
|
+
#### Zcash / Piratechain / Zano
|
|
71
71
|
|
|
72
72
|
These chains only work on React Native. To use them, first install the following packages using the instructions in their repos:
|
|
73
73
|
|
|
74
74
|
- [react-native-piratechain](https://www.npmjs.com/package/react-native-piratechain)
|
|
75
|
+
- [react-native-zano](https://www.npmjs.com/package/react-native-zano)
|
|
75
76
|
- [react-native-zcash](https://www.npmjs.com/package/react-native-zcash)
|
|
76
77
|
|
|
77
78
|
Then, add the correct IO objects to the core:
|
|
@@ -79,12 +80,14 @@ Then, add the correct IO objects to the core:
|
|
|
79
80
|
```jsx
|
|
80
81
|
import { pluginUri, makePluginIo } from 'edge-currency-accountbased/rn'
|
|
81
82
|
import { makePiratechainIo } from 'edge-currency-accountbased/rn-piratechain'
|
|
83
|
+
import { makeZanoIo } from 'edge-currency-accountbased/rn-zano'
|
|
82
84
|
import { makeZcashIo } from 'edge-currency-accountbased/rn-zcash'
|
|
83
85
|
|
|
84
86
|
<MakeEdgeContext
|
|
85
87
|
nativeIo={{
|
|
86
88
|
'edge-currency-accountbased': makePluginIo()
|
|
87
89
|
piratechain: makePiratechainIo(),
|
|
90
|
+
zano: makeZanoIo(),
|
|
88
91
|
zcash: makeZcashIo(),
|
|
89
92
|
}}
|
|
90
93
|
pluginUris={[pluginUri]}
|