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 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]}