@ethernauta/chain 0.0.23 → 0.0.25

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 +12 -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)
@@ -27,8 +35,9 @@ console.log(reference)// 11155111
27
35
 
28
36
  ## Files to pay attention
29
37
 
38
+ - [indexer.ts](https://github.com/niconiahi/ethernauta/blob/main/packages/chain/src/indexer.ts)
39
+
30
40
  ### chain
31
41
 
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)
42
+ - [chain/shared.ts](https://github.com/niconiahi/ethernauta/blob/main/packages/chain/src/chain/shared.ts)
43
+ - [chain/eip155/eip155-1.tsx](https://github.com/niconiahi/ethernauta/blob/main/packages/chain/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.25",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },