essential-eth 0.9.2-beta.2 โ†’ 0.9.2-beta.3

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.
@@ -1 +1 @@
1
- export declare const version = "0.9.2-beta.2";
1
+ export declare const version = "0.9.2-beta.3";
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
4
  // Generated by genversion.
5
- exports.version = '0.9.2-beta.2';
5
+ exports.version = '0.9.2-beta.3';
@@ -19,7 +19,6 @@ export { splitSignature } from './utils/split-signature';
19
19
  export { toChecksumAddress } from './utils/to-checksum-address';
20
20
  export { toUtf8Bytes } from './utils/to-utf8-bytes';
21
21
  export { weiToEther } from './utils/wei-to-ether';
22
- export * from './utils/bytes';
23
- export * from './utils/hash-message';
24
- export * from './utils/keccak256';
25
- export * from './utils/solidity-keccak256';
22
+ export { Bytes, BytesLike, BytesLikeWithNumber, DataOptions, Hexable, SignatureLike, Signature, isBytesLike, isBytes, arrayify, concat, stripZeros, zeroPad, isHexString, hexlify, hexDataLength, hexDataSlice, hexConcat, hexValue, hexStripZeros, hexZeroPad, } from './utils/bytes';
23
+ export { keccak256 } from './utils/keccak256';
24
+ export { pack, solidityKeccak256 } from './utils/solidity-keccak256';
package/dist/esm/index.js CHANGED
@@ -14,7 +14,6 @@ export { splitSignature } from './utils/split-signature';
14
14
  export { toChecksumAddress } from './utils/to-checksum-address';
15
15
  export { toUtf8Bytes } from './utils/to-utf8-bytes';
16
16
  export { weiToEther } from './utils/wei-to-ether';
17
- export * from './utils/bytes';
18
- export * from './utils/hash-message';
19
- export * from './utils/keccak256';
20
- export * from './utils/solidity-keccak256';
17
+ export { isBytesLike, isBytes, arrayify, concat, stripZeros, zeroPad, isHexString, hexlify, hexDataLength, hexDataSlice, hexConcat, hexValue, hexStripZeros, hexZeroPad, } from './utils/bytes';
18
+ export { keccak256 } from './utils/keccak256';
19
+ export { pack, solidityKeccak256 } from './utils/solidity-keccak256';
@@ -1 +1 @@
1
- export declare const version = "0.9.2-beta.2";
1
+ export declare const version = "0.9.2-beta.3";
@@ -1 +1 @@
1
- export const version = '0.9.2-beta.2';
1
+ export const version = '0.9.2-beta.3';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "essential-eth",
3
3
  "description": "Ultralight JS for Ethereum",
4
- "version": "0.9.2-beta.2",
4
+ "version": "0.9.2-beta.3",
5
5
  "license": "MIT",
6
6
  "sideEffects": false,
7
7
  "type": "module",
@@ -23,7 +23,7 @@
23
23
  "scripts": {
24
24
  "test": "npm-run-all --parallel jest compile lint",
25
25
  "test:all-node-versions": "npx trevor",
26
- "lint": "eslint --cache --fix .",
26
+ "lint": "eslint --cache --fix . --config .eslintrc.cjs",
27
27
  "compile": "npm-run-all --parallel build:esm build:cjs build:umd",
28
28
  "build": "rm -rf dist && npm run compile",
29
29
  "build:esm": "tsc -p tsconfig.json",
@@ -81,7 +81,7 @@
81
81
  "*": [
82
82
  "prettier --ignore-unknown --write"
83
83
  ],
84
- "*.{ts,tsx,js,jsx}": "eslint --cache --fix"
84
+ "*.{ts,tsx,js,jsx}": "eslint --fix --config .eslintrc.cjs"
85
85
  },
86
86
  "prettier": {
87
87
  "trailingComma": "all",
package/readme.md CHANGED
@@ -40,7 +40,7 @@
40
40
  - ๐Ÿงช Strongly tested
41
41
  - ๐ŸŒฒ Tree-shaking and no side-effects
42
42
  - ๐Ÿ™Œ All common JS versions (CommonJS, ESM, & UMD)
43
- - โœ… Node 18, 16, 14, & 12
43
+ - โœ… Node 20, 18, 16, 14, & 12
44
44
  - โœ… Web
45
45
 
46
46
  <br/>