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 95299fe commit 63ec3d1Copy full SHA for 63ec3d1
kleros-sdk/src/dataMappings/utils/actionTypes.ts
@@ -5,14 +5,14 @@ export type JsonMapping = {
5
populate: string[];
6
};
7
8
-export type SubgraphMapping = {
+export interface SubgraphMapping {
9
type: string;
10
endpoint: string;
11
query: string;
12
- variables?: string[];
+ variables: { [key: string]: unknown };
13
seek: string[];
14
15
-};
+}
16
17
export type AbiCallMapping = {
18
0 commit comments