@rocketh/signer 0.10.8 → 0.10.10

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.
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@rocketh/signer",
3
- "version": "0.10.8",
3
+ "version": "0.10.10",
4
4
  "description": "add signer to rocketh",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
8
  "type": "module",
9
+ "main": "dist/esm/index.js",
9
10
  "module": "dist/esm/index.js",
10
11
  "types": "dist/esm/index.d.ts",
11
12
  ".": {
@@ -14,16 +15,19 @@
14
15
  "default": "./dist/esm/index.js"
15
16
  }
16
17
  },
18
+ "files": [
19
+ "dist"
20
+ ],
17
21
  "devDependencies": {
18
22
  "as-soon": "^0.0.11",
19
23
  "eip-1193": "^0.5.0",
20
24
  "eip-1193-signer": "^0.0.3",
21
25
  "rimraf": "^5.0.7",
22
26
  "typescript": "^5.5.2",
23
- "rocketh": "0.10.16"
27
+ "rocketh": "0.10.17"
24
28
  },
25
29
  "peerDependencies": {
26
- "rocketh": "0.10.16"
30
+ "rocketh": "0.10.17"
27
31
  },
28
32
  "scripts": {
29
33
  "build": "tsc --project tsconfig.json",
package/.prettierignore DELETED
@@ -1,3 +0,0 @@
1
- dist/
2
- node_modules/
3
- package.json
package/.prettierrc DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "useTabs": true,
3
- "singleQuote": true,
4
-
5
- "printWidth": 120,
6
- "bracketSpacing": false
7
- }
package/CHANGELOG.md DELETED
@@ -1,60 +0,0 @@
1
- # @rocketh/signer
2
-
3
- ## 0.10.8
4
-
5
- ### Patch Changes
6
-
7
- - use tsx
8
- - Updated dependencies
9
- - rocketh@0.10.16
10
-
11
- ## 0.10.7
12
-
13
- ### Patch Changes
14
-
15
- - Updated dependencies
16
- - rocketh@0.10.15
17
-
18
- ## 0.10.6
19
-
20
- ### Patch Changes
21
-
22
- - latest dependencies
23
- - Updated dependencies
24
- - rocketh@0.10.14
25
-
26
- ## 0.10.5
27
-
28
- ### Patch Changes
29
-
30
- - Updated dependencies
31
- - rocketh@0.10.13
32
-
33
- ## 0.10.4
34
-
35
- ### Patch Changes
36
-
37
- - Updated dependencies
38
- - rocketh@0.10.12
39
-
40
- ## 0.10.3
41
-
42
- ### Patch Changes
43
-
44
- - Updated dependencies
45
- - rocketh@0.10.11
46
-
47
- ## 0.10.2
48
-
49
- ### Patch Changes
50
-
51
- - Updated dependencies
52
- - rocketh@0.10.10
53
-
54
- ## 0.10.1
55
-
56
- ### Patch Changes
57
-
58
- - use pkgroll and @rocketh namespace
59
- - Updated dependencies
60
- - rocketh@0.10.9
package/src/index.ts DELETED
@@ -1,7 +0,0 @@
1
- import {handleSignerProtocol} from 'rocketh';
2
- import {EIP1193LocalSigner} from 'eip-1193-signer';
3
-
4
- handleSignerProtocol('privateKey', async (str: string) => {
5
- const [proto, privateKey] = str.split(':');
6
- return {type: 'signerOnly', signer: new EIP1193LocalSigner(privateKey as `0x${string}`)};
7
- });
package/tsconfig.json DELETED
@@ -1,18 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "strict": true,
4
- "strictNullChecks": true,
5
- "target": "ESNext",
6
- "module": "NodeNext",
7
- "lib": ["ESNext", "dom"],
8
- "moduleResolution": "NodeNext",
9
- "resolveJsonModule": true,
10
- "skipLibCheck": true,
11
- "sourceMap": true,
12
- "declaration": true,
13
- "declarationMap": true,
14
- "rootDir": "./src",
15
- "outDir": "./dist/esm"
16
- },
17
- "include": ["src/**/*.ts"]
18
- }