essential-eth 0.4.6 → 0.4.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.
@@ -166,6 +166,7 @@ declare const _default: {
166
166
  "1139": string[];
167
167
  "1140": string[];
168
168
  "1197": string[];
169
+ "1201": string[];
169
170
  "1202": string[];
170
171
  "1213": string[];
171
172
  "1214": string[];
@@ -185,6 +186,7 @@ declare const _default: {
185
186
  "2025": string[];
186
187
  "2100": string[];
187
188
  "2101": string[];
189
+ "2213": string[];
188
190
  "2559": string[];
189
191
  "3331": string[];
190
192
  "3333": string[];
@@ -508,6 +508,9 @@ exports.default = {
508
508
  "1197": [
509
509
  "iora"
510
510
  ],
511
+ "1201": [
512
+ "avis"
513
+ ],
511
514
  "1202": [
512
515
  "wtt"
513
516
  ],
@@ -565,6 +568,9 @@ exports.default = {
565
568
  "2101": [
566
569
  "esp"
567
570
  ],
571
+ "2213": [
572
+ "evanesco"
573
+ ],
568
574
  "2559": [
569
575
  "ktoc"
570
576
  ],
@@ -16,7 +16,7 @@ export declare type JSONABIArgument = {
16
16
  type: ContractTypes;
17
17
  }[];
18
18
  stateMutability?: 'view' | 'nonpayable' | string;
19
- type: 'function' | 'event' | 'constructor' | 'error';
19
+ type: 'function' | 'event' | 'constructor' | 'error' | 'fallback';
20
20
  gas?: number;
21
21
  constant?: boolean;
22
22
  payable?: boolean;
@@ -166,6 +166,7 @@ declare const _default: {
166
166
  "1139": string[];
167
167
  "1140": string[];
168
168
  "1197": string[];
169
+ "1201": string[];
169
170
  "1202": string[];
170
171
  "1213": string[];
171
172
  "1214": string[];
@@ -185,6 +186,7 @@ declare const _default: {
185
186
  "2025": string[];
186
187
  "2100": string[];
187
188
  "2101": string[];
189
+ "2213": string[];
188
190
  "2559": string[];
189
191
  "3331": string[];
190
192
  "3333": string[];
@@ -504,6 +504,9 @@ export default {
504
504
  "1197": [
505
505
  "iora"
506
506
  ],
507
+ "1201": [
508
+ "avis"
509
+ ],
507
510
  "1202": [
508
511
  "wtt"
509
512
  ],
@@ -561,6 +564,9 @@ export default {
561
564
  "2101": [
562
565
  "esp"
563
566
  ],
567
+ "2213": [
568
+ "evanesco"
569
+ ],
564
570
  "2559": [
565
571
  "ktoc"
566
572
  ],
@@ -16,7 +16,7 @@ export declare type JSONABIArgument = {
16
16
  type: ContractTypes;
17
17
  }[];
18
18
  stateMutability?: 'view' | 'nonpayable' | string;
19
- type: 'function' | 'event' | 'constructor' | 'error';
19
+ type: 'function' | 'event' | 'constructor' | 'error' | 'fallback';
20
20
  gas?: number;
21
21
  constant?: boolean;
22
22
  payable?: boolean;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "essential-eth",
3
3
  "description": "Ultralight JS library for Ethereum utilities",
4
- "version": "0.4.6",
4
+ "version": "0.4.7",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,
7
7
  "main": "./lib/cjs/index.js",
@@ -31,6 +31,7 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "@ethersproject/keccak256": "^5.4.0",
34
+ "@types/big.js": "^6.1.3",
34
35
  "@types/body-parser": "^1.19.1",
35
36
  "@types/eslint": "^8.4.1",
36
37
  "@types/express": "^4.17.13",
@@ -39,11 +40,11 @@
39
40
  "@types/node": "^16.10.1",
40
41
  "@types/prettier": "^2.4.0",
41
42
  "@types/supertest": "^2.0.11",
42
- "@typescript-eslint/eslint-plugin": "^5.12.1",
43
- "@typescript-eslint/parser": "^5.12.1",
43
+ "@typescript-eslint/eslint-plugin": "^5.13.0",
44
+ "@typescript-eslint/parser": "^5.13.0",
44
45
  "body-parser": "^1.19.0",
45
46
  "dotenv": "^16.0.0",
46
- "eslint": "^8.9.0",
47
+ "eslint": "^8.10.0",
47
48
  "eslint-plugin-jest": "^26.1.1",
48
49
  "ethers": "^5.5.4",
49
50
  "express": "^4.17.1",
@@ -59,11 +60,10 @@
59
60
  "ts-jest": "^27.1.3",
60
61
  "ts-node": "^10.2.1",
61
62
  "typedoc": "^0.22.12",
62
- "typescript": "^4.5.5",
63
- "web3": "^1.7.0"
63
+ "typescript": "^4.6.2",
64
+ "web3": "^1.7.1"
64
65
  },
65
66
  "dependencies": {
66
- "@types/big.js": "^6.1.2",
67
67
  "big.js": "^6.1.1",
68
68
  "isomorphic-unfetch": "^3.1.0",
69
69
  "sha3": "^2.1.4"