We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 299f9bc commit b28cfc0Copy full SHA for b28cfc0
packages/keystone/src/index.ts
@@ -127,9 +127,12 @@ function keystone({
127
return accounts
128
}
129
130
- const request: EIP1193Provider['request'] = async ({
+ const request = async ({
131
method,
132
params
133
+ }: {
134
+ method: string
135
+ params: any
136
}) => {
137
const response = await fetch(currentChain.rpcUrl, {
138
method: 'POST',
packages/keystone/tsconfig.json
@@ -1,14 +1,14 @@
1
{
2
"extends": "../../tsconfig.json",
3
"include": ["src/**/*"],
4
-
5
"compilerOptions": {
6
"outDir": "dist",
7
"rootDir": "src",
8
"declarationDir": "dist",
9
"paths": {
10
"*": ["./src/*", "./node_modules/*"]
11
},
12
- "typeRoots": ["node_modules/@types"]
+ "typeRoots": ["node_modules/@types"],
+ "strict": false
13
14
0 commit comments