@ethernauta/chain 0.0.23 → 0.0.24

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 +11 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -7,6 +7,14 @@ This module aims to be an un-opinionated representation of the defined:
7
7
  - [Ethereum chains](https://github.com/ethereum-lists/chains/tree/master/_data/chains)
8
8
  - [chain schema](https://github.com/ethereum-lists/chains/blob/master/tools/schema/chainSchema.json)
9
9
 
10
+ ## Modules
11
+
12
+ - [chain](https://github.com/niconiahi/ethernauta/blob/main/packages/chain/README.md)
13
+ - [eth](https://github.com/niconiahi/ethernauta/blob/main/packages/eth/README.md)
14
+ - [transaction](https://github.com/niconiahi/ethernauta/blob/main/packages/transaction/README.md)
15
+ - [transport](https://github.com/niconiahi/ethernauta/blob/main/packages/transport/README.md)
16
+ - [wallet](https://github.com/niconiahi/ethernauta/blob/main/packages/wallet/README.md)
17
+
10
18
  ## Table of contents
11
19
 
12
20
  1. [chain](#chain)
@@ -29,6 +37,6 @@ console.log(reference)// 11155111
29
37
 
30
38
  ### chain
31
39
 
32
- - [indexer.tsx](src/chain/indexer/indexer.ts)
33
- - [shared.tsx](src/chain/shared/shared.ts)
34
- - [eip155-1](src/chain/eip155/eip155-1/eip155-1.ts)
40
+ - [indexer.tsx](src/indexer.ts)
41
+ - [shared.tsx](src/chain/shared.ts)
42
+ - [eip155-1](src/chain/eip155/eip155-1.ts)
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@ethernauta/chain",
4
4
  "type": "module",
5
- "version": "0.0.23",
5
+ "version": "0.0.24",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },