File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -127,9 +127,12 @@ function keystone({
127
127
return accounts
128
128
}
129
129
130
- const request : EIP1193Provider [ 'request' ] = async ( {
130
+ const request = async ( {
131
131
method,
132
132
params
133
+ } : {
134
+ method : string
135
+ params : any
133
136
} ) => {
134
137
const response = await fetch ( currentChain . rpcUrl , {
135
138
method : 'POST' ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ../../tsconfig.json" ,
3
3
"include" : [" src/**/*" ],
4
-
5
4
"compilerOptions" : {
6
5
"outDir" : " dist" ,
7
6
"rootDir" : " src" ,
8
7
"declarationDir" : " dist" ,
9
8
"paths" : {
10
9
"*" : [" ./src/*" , " ./node_modules/*" ]
11
10
},
12
- "typeRoots" : [" node_modules/@types" ]
11
+ "typeRoots" : [" node_modules/@types" ],
12
+ "strict" : false
13
13
}
14
14
}
You can’t perform that action at this time.
0 commit comments