@riaskov/iohtee-abi-wrapper 2.0.5 → 2.0.7

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 +7 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,10 +7,16 @@
7
7
  IohTee ABI Wrapper is a TypeScript wrapper for EVM-compatible ABI of Solidity smartcontract.
8
8
  It takes raw json artifact file and render ready-to-use TS-wrapper. Use viem v2 internally.
9
9
 
10
+ ## Install
11
+
12
+ ```bash
13
+ $ npm install @riaskov/iohtee-abi-wrapper --global --no-save
14
+ ```
15
+
10
16
  ## Run
11
17
 
12
18
  ```bash
13
- $ iohtee-abi-wrapper -o ./output ./abi
19
+ $ iohtee-abi-wrapper -o ./output ./abi/*
14
20
  ```
15
21
 
16
22
  ## TODO
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riaskov/iohtee-abi-wrapper",
3
- "version": "2.0.5",
3
+ "version": "2.0.7",
4
4
  "description": "Generate TypeScript wrapper class for Solidity smart contract ABI",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Machinomy Team <hello@machinomy.com>",