autrace 0.0.22 → 0.0.23

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 (2) hide show
  1. package/README.md +10 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -110,8 +110,17 @@ Below is a visual summary of the changes in AU trees generated by the debugger.
110
110
  Visualize any zkapp transaction from the chain like so
111
111
 
112
112
  ```bash
113
- BLOCKBERRY_API_KEY=your_api_key npx aucli --tx 5JttgfFUzZXfYYksdbZHms7eDvqwvzvf65GuirsAcNaZpFC5BC5z
113
+ BLOCKBERRY_API_KEY=your_api_key npx autrace --tx 5JttgfFUzZXfYYksdbZHms7eDvqwvzvf65GuirsAcNaZpFC5BC5z
114
114
  ```
115
+
116
+ Or
117
+
118
+ ```bash
119
+ npm i -g autrace
120
+
121
+ BLOCKBERRY_API_KEY=your_api_key aucli --tx 5JttgfFUzZXfYYksdbZHms7eDvqwvzvf65GuirsAcNaZpFC5BC5z
122
+ ```
123
+
115
124
  This will generate a `transaction_visualization.png` with the visualisation like so:
116
125
 
117
126
  ![TXNCisualizer](transaction_visualization.png)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autrace",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "description": "Account Update analyser for MINA",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/src/index.d.ts",