@merkl/api 1.9.10 → 1.9.11
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/dist/src/eden/index.d.ts +72 -68
- package/dist/src/index.d.ts +60 -56
- package/dist/src/modules/v4/claims/claims.controller.d.ts +61 -57
- package/dist/src/modules/v4/claims/claims.controller.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +60 -56
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
|
@@ -1205,6 +1205,78 @@ declare const eden: {
|
|
|
1205
1205
|
}>>;
|
|
1206
1206
|
};
|
|
1207
1207
|
};
|
|
1208
|
+
beta: {
|
|
1209
|
+
claims: {
|
|
1210
|
+
get: (options: {
|
|
1211
|
+
fetch?: RequestInit | undefined;
|
|
1212
|
+
headers?: Record<string, unknown> | undefined;
|
|
1213
|
+
query: {
|
|
1214
|
+
chainId?: number | undefined;
|
|
1215
|
+
recipient?: string | undefined;
|
|
1216
|
+
campaignId?: string | undefined;
|
|
1217
|
+
token?: string | undefined;
|
|
1218
|
+
root?: string | undefined;
|
|
1219
|
+
};
|
|
1220
|
+
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
1221
|
+
200: {
|
|
1222
|
+
id: string;
|
|
1223
|
+
chainId: number;
|
|
1224
|
+
recipient: string;
|
|
1225
|
+
blockNumber: number;
|
|
1226
|
+
timestamp: number;
|
|
1227
|
+
token: string;
|
|
1228
|
+
campaignId: string;
|
|
1229
|
+
reason: string;
|
|
1230
|
+
root: string;
|
|
1231
|
+
amount: string;
|
|
1232
|
+
metadata: any;
|
|
1233
|
+
isLatest: boolean;
|
|
1234
|
+
}[];
|
|
1235
|
+
422: {
|
|
1236
|
+
type: "validation";
|
|
1237
|
+
on: string;
|
|
1238
|
+
summary?: string | undefined;
|
|
1239
|
+
message?: string | undefined;
|
|
1240
|
+
found?: unknown;
|
|
1241
|
+
property?: string | undefined;
|
|
1242
|
+
expected?: string | undefined;
|
|
1243
|
+
};
|
|
1244
|
+
}>>;
|
|
1245
|
+
status: {
|
|
1246
|
+
get: (options: {
|
|
1247
|
+
fetch?: RequestInit | undefined;
|
|
1248
|
+
headers?: Record<string, unknown> | undefined;
|
|
1249
|
+
query: {
|
|
1250
|
+
chainIds?: number[] | undefined;
|
|
1251
|
+
};
|
|
1252
|
+
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
1253
|
+
200: {
|
|
1254
|
+
[x: number]: {
|
|
1255
|
+
chainId: number;
|
|
1256
|
+
sources: {
|
|
1257
|
+
sourceId: string;
|
|
1258
|
+
chainId: number;
|
|
1259
|
+
currentBlock: number;
|
|
1260
|
+
lastFetchedBlock: number;
|
|
1261
|
+
blockDifference: number;
|
|
1262
|
+
claimCount: number;
|
|
1263
|
+
timeBehind: number | null;
|
|
1264
|
+
}[];
|
|
1265
|
+
};
|
|
1266
|
+
};
|
|
1267
|
+
422: {
|
|
1268
|
+
type: "validation";
|
|
1269
|
+
on: string;
|
|
1270
|
+
summary?: string | undefined;
|
|
1271
|
+
message?: string | undefined;
|
|
1272
|
+
found?: unknown;
|
|
1273
|
+
property?: string | undefined;
|
|
1274
|
+
expected?: string | undefined;
|
|
1275
|
+
};
|
|
1276
|
+
}>>;
|
|
1277
|
+
};
|
|
1278
|
+
};
|
|
1279
|
+
};
|
|
1208
1280
|
blacklists: {
|
|
1209
1281
|
get: (options: {
|
|
1210
1282
|
fetch?: RequestInit | undefined;
|
|
@@ -8006,41 +8078,6 @@ declare const eden: {
|
|
|
8006
8078
|
};
|
|
8007
8079
|
}>>;
|
|
8008
8080
|
}) & {
|
|
8009
|
-
get: (options: {
|
|
8010
|
-
fetch?: RequestInit | undefined;
|
|
8011
|
-
headers?: Record<string, unknown> | undefined;
|
|
8012
|
-
query: {
|
|
8013
|
-
chainId?: number | undefined;
|
|
8014
|
-
recipient?: string | undefined;
|
|
8015
|
-
campaignId?: string | undefined;
|
|
8016
|
-
token?: string | undefined;
|
|
8017
|
-
root?: string | undefined;
|
|
8018
|
-
};
|
|
8019
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
8020
|
-
200: {
|
|
8021
|
-
id: string;
|
|
8022
|
-
chainId: number;
|
|
8023
|
-
recipient: string;
|
|
8024
|
-
blockNumber: number;
|
|
8025
|
-
timestamp: number;
|
|
8026
|
-
token: string;
|
|
8027
|
-
campaignId: string;
|
|
8028
|
-
reason: string;
|
|
8029
|
-
root: string;
|
|
8030
|
-
amount: string;
|
|
8031
|
-
metadata: any;
|
|
8032
|
-
isLatest: boolean;
|
|
8033
|
-
}[];
|
|
8034
|
-
422: {
|
|
8035
|
-
type: "validation";
|
|
8036
|
-
on: string;
|
|
8037
|
-
summary?: string | undefined;
|
|
8038
|
-
message?: string | undefined;
|
|
8039
|
-
found?: unknown;
|
|
8040
|
-
property?: string | undefined;
|
|
8041
|
-
expected?: string | undefined;
|
|
8042
|
-
};
|
|
8043
|
-
}>>;
|
|
8044
8081
|
count: {
|
|
8045
8082
|
get: (options: {
|
|
8046
8083
|
fetch?: RequestInit | undefined;
|
|
@@ -8070,39 +8107,6 @@ declare const eden: {
|
|
|
8070
8107
|
}>>;
|
|
8071
8108
|
};
|
|
8072
8109
|
};
|
|
8073
|
-
status: {
|
|
8074
|
-
get: (options: {
|
|
8075
|
-
fetch?: RequestInit | undefined;
|
|
8076
|
-
headers?: Record<string, unknown> | undefined;
|
|
8077
|
-
query: {
|
|
8078
|
-
chainIds?: number[] | undefined;
|
|
8079
|
-
};
|
|
8080
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
|
8081
|
-
200: {
|
|
8082
|
-
[x: number]: {
|
|
8083
|
-
chainId: number;
|
|
8084
|
-
sources: {
|
|
8085
|
-
sourceId: string;
|
|
8086
|
-
chainId: number;
|
|
8087
|
-
currentBlock: number;
|
|
8088
|
-
lastFetchedBlock: number;
|
|
8089
|
-
blockDifference: number;
|
|
8090
|
-
claimCount: number;
|
|
8091
|
-
timeBehind: number | null;
|
|
8092
|
-
}[];
|
|
8093
|
-
};
|
|
8094
|
-
};
|
|
8095
|
-
422: {
|
|
8096
|
-
type: "validation";
|
|
8097
|
-
on: string;
|
|
8098
|
-
summary?: string | undefined;
|
|
8099
|
-
message?: string | undefined;
|
|
8100
|
-
found?: unknown;
|
|
8101
|
-
property?: string | undefined;
|
|
8102
|
-
expected?: string | undefined;
|
|
8103
|
-
};
|
|
8104
|
-
}>>;
|
|
8105
|
-
};
|
|
8106
8110
|
};
|
|
8107
8111
|
clamm: {
|
|
8108
8112
|
pools: ((params: {
|
package/dist/src/index.d.ts
CHANGED
|
@@ -7756,70 +7756,34 @@ declare const app: Elysia<"", {
|
|
|
7756
7756
|
};
|
|
7757
7757
|
};
|
|
7758
7758
|
} & {
|
|
7759
|
-
|
|
7760
|
-
|
|
7761
|
-
body: unknown;
|
|
7762
|
-
params: {};
|
|
7763
|
-
query: {
|
|
7764
|
-
chainId?: number | undefined;
|
|
7765
|
-
recipient?: string | undefined;
|
|
7766
|
-
campaignId?: string | undefined;
|
|
7767
|
-
token?: string | undefined;
|
|
7768
|
-
root?: string | undefined;
|
|
7769
|
-
};
|
|
7770
|
-
headers: unknown;
|
|
7771
|
-
response: {
|
|
7772
|
-
200: {
|
|
7773
|
-
id: string;
|
|
7774
|
-
chainId: number;
|
|
7775
|
-
recipient: string;
|
|
7776
|
-
blockNumber: number;
|
|
7777
|
-
timestamp: number;
|
|
7778
|
-
token: string;
|
|
7779
|
-
campaignId: string;
|
|
7780
|
-
reason: string;
|
|
7781
|
-
root: string;
|
|
7782
|
-
amount: string;
|
|
7783
|
-
metadata: any;
|
|
7784
|
-
isLatest: boolean;
|
|
7785
|
-
}[];
|
|
7786
|
-
422: {
|
|
7787
|
-
type: "validation";
|
|
7788
|
-
on: string;
|
|
7789
|
-
summary?: string | undefined;
|
|
7790
|
-
message?: string | undefined;
|
|
7791
|
-
found?: unknown;
|
|
7792
|
-
property?: string | undefined;
|
|
7793
|
-
expected?: string | undefined;
|
|
7794
|
-
};
|
|
7795
|
-
};
|
|
7796
|
-
};
|
|
7797
|
-
};
|
|
7798
|
-
} & {
|
|
7799
|
-
claims: {
|
|
7800
|
-
status: {
|
|
7759
|
+
beta: {
|
|
7760
|
+
claims: {
|
|
7801
7761
|
get: {
|
|
7802
7762
|
body: unknown;
|
|
7803
7763
|
params: {};
|
|
7804
7764
|
query: {
|
|
7805
|
-
|
|
7765
|
+
chainId?: number | undefined;
|
|
7766
|
+
recipient?: string | undefined;
|
|
7767
|
+
campaignId?: string | undefined;
|
|
7768
|
+
token?: string | undefined;
|
|
7769
|
+
root?: string | undefined;
|
|
7806
7770
|
};
|
|
7807
7771
|
headers: unknown;
|
|
7808
7772
|
response: {
|
|
7809
7773
|
200: {
|
|
7810
|
-
|
|
7811
|
-
|
|
7812
|
-
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
|
|
7816
|
-
|
|
7817
|
-
|
|
7818
|
-
|
|
7819
|
-
|
|
7820
|
-
|
|
7821
|
-
|
|
7822
|
-
};
|
|
7774
|
+
id: string;
|
|
7775
|
+
chainId: number;
|
|
7776
|
+
recipient: string;
|
|
7777
|
+
blockNumber: number;
|
|
7778
|
+
timestamp: number;
|
|
7779
|
+
token: string;
|
|
7780
|
+
campaignId: string;
|
|
7781
|
+
reason: string;
|
|
7782
|
+
root: string;
|
|
7783
|
+
amount: string;
|
|
7784
|
+
metadata: any;
|
|
7785
|
+
isLatest: boolean;
|
|
7786
|
+
}[];
|
|
7823
7787
|
422: {
|
|
7824
7788
|
type: "validation";
|
|
7825
7789
|
on: string;
|
|
@@ -7833,6 +7797,46 @@ declare const app: Elysia<"", {
|
|
|
7833
7797
|
};
|
|
7834
7798
|
};
|
|
7835
7799
|
};
|
|
7800
|
+
} & {
|
|
7801
|
+
beta: {
|
|
7802
|
+
claims: {
|
|
7803
|
+
status: {
|
|
7804
|
+
get: {
|
|
7805
|
+
body: unknown;
|
|
7806
|
+
params: {};
|
|
7807
|
+
query: {
|
|
7808
|
+
chainIds?: number[] | undefined;
|
|
7809
|
+
};
|
|
7810
|
+
headers: unknown;
|
|
7811
|
+
response: {
|
|
7812
|
+
200: {
|
|
7813
|
+
[x: number]: {
|
|
7814
|
+
chainId: number;
|
|
7815
|
+
sources: {
|
|
7816
|
+
sourceId: string;
|
|
7817
|
+
chainId: number;
|
|
7818
|
+
currentBlock: number;
|
|
7819
|
+
lastFetchedBlock: number;
|
|
7820
|
+
blockDifference: number;
|
|
7821
|
+
claimCount: number;
|
|
7822
|
+
timeBehind: number | null;
|
|
7823
|
+
}[];
|
|
7824
|
+
};
|
|
7825
|
+
};
|
|
7826
|
+
422: {
|
|
7827
|
+
type: "validation";
|
|
7828
|
+
on: string;
|
|
7829
|
+
summary?: string | undefined;
|
|
7830
|
+
message?: string | undefined;
|
|
7831
|
+
found?: unknown;
|
|
7832
|
+
property?: string | undefined;
|
|
7833
|
+
expected?: string | undefined;
|
|
7834
|
+
};
|
|
7835
|
+
};
|
|
7836
|
+
};
|
|
7837
|
+
};
|
|
7838
|
+
};
|
|
7839
|
+
};
|
|
7836
7840
|
} & {
|
|
7837
7841
|
claims: {
|
|
7838
7842
|
":address": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Elysia from "elysia";
|
|
2
|
-
export declare const ClaimsController: Elysia<"/claims", {
|
|
2
|
+
export declare const ClaimsController: Elysia<"/beta/claims", {
|
|
3
3
|
decorator: {};
|
|
4
4
|
store: {};
|
|
5
5
|
derive: {};
|
|
@@ -15,70 +15,34 @@ export declare const ClaimsController: Elysia<"/claims", {
|
|
|
15
15
|
parser: {};
|
|
16
16
|
response: {};
|
|
17
17
|
}, {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
body: unknown;
|
|
21
|
-
params: {};
|
|
22
|
-
query: {
|
|
23
|
-
chainId?: number | undefined;
|
|
24
|
-
recipient?: string | undefined;
|
|
25
|
-
campaignId?: string | undefined;
|
|
26
|
-
token?: string | undefined;
|
|
27
|
-
root?: string | undefined;
|
|
28
|
-
};
|
|
29
|
-
headers: unknown;
|
|
30
|
-
response: {
|
|
31
|
-
200: {
|
|
32
|
-
id: string;
|
|
33
|
-
chainId: number;
|
|
34
|
-
recipient: string;
|
|
35
|
-
blockNumber: number;
|
|
36
|
-
timestamp: number;
|
|
37
|
-
token: string;
|
|
38
|
-
campaignId: string;
|
|
39
|
-
reason: string;
|
|
40
|
-
root: string;
|
|
41
|
-
amount: string;
|
|
42
|
-
metadata: any;
|
|
43
|
-
isLatest: boolean;
|
|
44
|
-
}[];
|
|
45
|
-
422: {
|
|
46
|
-
type: "validation";
|
|
47
|
-
on: string;
|
|
48
|
-
summary?: string | undefined;
|
|
49
|
-
message?: string | undefined;
|
|
50
|
-
found?: unknown;
|
|
51
|
-
property?: string | undefined;
|
|
52
|
-
expected?: string | undefined;
|
|
53
|
-
};
|
|
54
|
-
};
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
} & {
|
|
58
|
-
claims: {
|
|
59
|
-
status: {
|
|
18
|
+
beta: {
|
|
19
|
+
claims: {
|
|
60
20
|
get: {
|
|
61
21
|
body: unknown;
|
|
62
22
|
params: {};
|
|
63
23
|
query: {
|
|
64
|
-
|
|
24
|
+
chainId?: number | undefined;
|
|
25
|
+
recipient?: string | undefined;
|
|
26
|
+
campaignId?: string | undefined;
|
|
27
|
+
token?: string | undefined;
|
|
28
|
+
root?: string | undefined;
|
|
65
29
|
};
|
|
66
30
|
headers: unknown;
|
|
67
31
|
response: {
|
|
68
32
|
200: {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
};
|
|
33
|
+
id: string;
|
|
34
|
+
chainId: number;
|
|
35
|
+
recipient: string;
|
|
36
|
+
blockNumber: number;
|
|
37
|
+
timestamp: number;
|
|
38
|
+
token: string;
|
|
39
|
+
campaignId: string;
|
|
40
|
+
reason: string;
|
|
41
|
+
root: string;
|
|
42
|
+
amount: string;
|
|
43
|
+
metadata: any;
|
|
44
|
+
isLatest: boolean;
|
|
45
|
+
}[];
|
|
82
46
|
422: {
|
|
83
47
|
type: "validation";
|
|
84
48
|
on: string;
|
|
@@ -92,6 +56,46 @@ export declare const ClaimsController: Elysia<"/claims", {
|
|
|
92
56
|
};
|
|
93
57
|
};
|
|
94
58
|
};
|
|
59
|
+
} & {
|
|
60
|
+
beta: {
|
|
61
|
+
claims: {
|
|
62
|
+
status: {
|
|
63
|
+
get: {
|
|
64
|
+
body: unknown;
|
|
65
|
+
params: {};
|
|
66
|
+
query: {
|
|
67
|
+
chainIds?: number[] | undefined;
|
|
68
|
+
};
|
|
69
|
+
headers: unknown;
|
|
70
|
+
response: {
|
|
71
|
+
200: {
|
|
72
|
+
[x: number]: {
|
|
73
|
+
chainId: number;
|
|
74
|
+
sources: {
|
|
75
|
+
sourceId: string;
|
|
76
|
+
chainId: number;
|
|
77
|
+
currentBlock: number;
|
|
78
|
+
lastFetchedBlock: number;
|
|
79
|
+
blockDifference: number;
|
|
80
|
+
claimCount: number;
|
|
81
|
+
timeBehind: number | null;
|
|
82
|
+
}[];
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
422: {
|
|
86
|
+
type: "validation";
|
|
87
|
+
on: string;
|
|
88
|
+
summary?: string | undefined;
|
|
89
|
+
message?: string | undefined;
|
|
90
|
+
found?: unknown;
|
|
91
|
+
property?: string | undefined;
|
|
92
|
+
expected?: string | undefined;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
};
|
|
95
99
|
}, {
|
|
96
100
|
derive: {};
|
|
97
101
|
resolve: {};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"claims.controller.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/claims/claims.controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpD,OAAO,MAAM,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC;AACxF,OAAO,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AACnH,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,MAAM,CAAC,EAAE,MAAM,EAAE,
|
|
1
|
+
{"version":3,"file":"claims.controller.js","sourceRoot":"","sources":["../../../../../../../apps/api/src/modules/v4/claims/claims.controller.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iBAAiB,CAAC;AACpD,OAAO,MAAM,MAAM,QAAQ,CAAC;AAC5B,OAAO,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC;AACxF,OAAO,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,gBAAgB,CAAC;AACnH,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AACvD,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,CAAC,MAAM,gBAAgB,GAAG,IAAI,MAAM,CAAC,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;KACjG,GAAG,CAAC,EAAE,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,gBAAgB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE;IACpE,KAAK,EAAE,YAAY;IACnB,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC;QAC3B,IAAI,KAAK,CAAC,SAAS,IAAI,iBAAiB,CAAC,CAAC,CAAC,CAAC,aAAa,CAAC,KAAK,CAAC,SAAS,CAAC,EAAE,CAAC;YAC3E,KAAK,CAAC,SAAS,GAAG,qBAAqB,CAAC,KAAK,CAAC,SAAS,CAAE,CAAC;QAC5D,CAAC;QACD,IAAI,KAAK,CAAC,OAAO,KAAK,SAAS;YAAE,yBAAyB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IAAA,CAC3E;IACD,QAAQ,EAAE,oBAAoB;IAC9B,MAAM,EAAE;QACN,WAAW,EACT,+HAA+H;KAClI;CACF,CAAC;IAEF,iEAAuC;KAEtC,KAAK,CAAC;IACL,MAAM,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE;CACvB,CAAC;KAED,GAAG,CAAC,SAAS,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,MAAM,aAAa,CAAC,eAAe,CAAC,KAAK,CAAC,QAAQ,CAAC,EAAE;IACxF,KAAK,EAAE,oBAAoB;IAC3B,YAAY,EAAE,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC;QAC3B,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC;YACnB,KAAK,MAAM,OAAO,IAAI,KAAK,CAAC,QAAQ,EAAE,CAAC;gBACrC,yBAAyB,CAAC,OAAO,CAAC,CAAC;YACrC,CAAC;QACH,CAAC;IAAA,CACF;IACD,QAAQ,EAAE,uBAAuB;IACjC,MAAM,EAAE;QACN,WAAW,EACT,4HAA4H;KAC/H;CACF,CAAC,CAAC"}
|
|
@@ -7720,70 +7720,34 @@ export declare const v4: Elysia<"/v4", {
|
|
|
7720
7720
|
};
|
|
7721
7721
|
};
|
|
7722
7722
|
} & {
|
|
7723
|
-
|
|
7724
|
-
|
|
7725
|
-
body: unknown;
|
|
7726
|
-
params: {};
|
|
7727
|
-
query: {
|
|
7728
|
-
chainId?: number | undefined;
|
|
7729
|
-
recipient?: string | undefined;
|
|
7730
|
-
campaignId?: string | undefined;
|
|
7731
|
-
token?: string | undefined;
|
|
7732
|
-
root?: string | undefined;
|
|
7733
|
-
};
|
|
7734
|
-
headers: unknown;
|
|
7735
|
-
response: {
|
|
7736
|
-
200: {
|
|
7737
|
-
id: string;
|
|
7738
|
-
chainId: number;
|
|
7739
|
-
recipient: string;
|
|
7740
|
-
blockNumber: number;
|
|
7741
|
-
timestamp: number;
|
|
7742
|
-
token: string;
|
|
7743
|
-
campaignId: string;
|
|
7744
|
-
reason: string;
|
|
7745
|
-
root: string;
|
|
7746
|
-
amount: string;
|
|
7747
|
-
metadata: any;
|
|
7748
|
-
isLatest: boolean;
|
|
7749
|
-
}[];
|
|
7750
|
-
422: {
|
|
7751
|
-
type: "validation";
|
|
7752
|
-
on: string;
|
|
7753
|
-
summary?: string | undefined;
|
|
7754
|
-
message?: string | undefined;
|
|
7755
|
-
found?: unknown;
|
|
7756
|
-
property?: string | undefined;
|
|
7757
|
-
expected?: string | undefined;
|
|
7758
|
-
};
|
|
7759
|
-
};
|
|
7760
|
-
};
|
|
7761
|
-
};
|
|
7762
|
-
} & {
|
|
7763
|
-
claims: {
|
|
7764
|
-
status: {
|
|
7723
|
+
beta: {
|
|
7724
|
+
claims: {
|
|
7765
7725
|
get: {
|
|
7766
7726
|
body: unknown;
|
|
7767
7727
|
params: {};
|
|
7768
7728
|
query: {
|
|
7769
|
-
|
|
7729
|
+
chainId?: number | undefined;
|
|
7730
|
+
recipient?: string | undefined;
|
|
7731
|
+
campaignId?: string | undefined;
|
|
7732
|
+
token?: string | undefined;
|
|
7733
|
+
root?: string | undefined;
|
|
7770
7734
|
};
|
|
7771
7735
|
headers: unknown;
|
|
7772
7736
|
response: {
|
|
7773
7737
|
200: {
|
|
7774
|
-
|
|
7775
|
-
|
|
7776
|
-
|
|
7777
|
-
|
|
7778
|
-
|
|
7779
|
-
|
|
7780
|
-
|
|
7781
|
-
|
|
7782
|
-
|
|
7783
|
-
|
|
7784
|
-
|
|
7785
|
-
|
|
7786
|
-
};
|
|
7738
|
+
id: string;
|
|
7739
|
+
chainId: number;
|
|
7740
|
+
recipient: string;
|
|
7741
|
+
blockNumber: number;
|
|
7742
|
+
timestamp: number;
|
|
7743
|
+
token: string;
|
|
7744
|
+
campaignId: string;
|
|
7745
|
+
reason: string;
|
|
7746
|
+
root: string;
|
|
7747
|
+
amount: string;
|
|
7748
|
+
metadata: any;
|
|
7749
|
+
isLatest: boolean;
|
|
7750
|
+
}[];
|
|
7787
7751
|
422: {
|
|
7788
7752
|
type: "validation";
|
|
7789
7753
|
on: string;
|
|
@@ -7797,6 +7761,46 @@ export declare const v4: Elysia<"/v4", {
|
|
|
7797
7761
|
};
|
|
7798
7762
|
};
|
|
7799
7763
|
};
|
|
7764
|
+
} & {
|
|
7765
|
+
beta: {
|
|
7766
|
+
claims: {
|
|
7767
|
+
status: {
|
|
7768
|
+
get: {
|
|
7769
|
+
body: unknown;
|
|
7770
|
+
params: {};
|
|
7771
|
+
query: {
|
|
7772
|
+
chainIds?: number[] | undefined;
|
|
7773
|
+
};
|
|
7774
|
+
headers: unknown;
|
|
7775
|
+
response: {
|
|
7776
|
+
200: {
|
|
7777
|
+
[x: number]: {
|
|
7778
|
+
chainId: number;
|
|
7779
|
+
sources: {
|
|
7780
|
+
sourceId: string;
|
|
7781
|
+
chainId: number;
|
|
7782
|
+
currentBlock: number;
|
|
7783
|
+
lastFetchedBlock: number;
|
|
7784
|
+
blockDifference: number;
|
|
7785
|
+
claimCount: number;
|
|
7786
|
+
timeBehind: number | null;
|
|
7787
|
+
}[];
|
|
7788
|
+
};
|
|
7789
|
+
};
|
|
7790
|
+
422: {
|
|
7791
|
+
type: "validation";
|
|
7792
|
+
on: string;
|
|
7793
|
+
summary?: string | undefined;
|
|
7794
|
+
message?: string | undefined;
|
|
7795
|
+
found?: unknown;
|
|
7796
|
+
property?: string | undefined;
|
|
7797
|
+
expected?: string | undefined;
|
|
7798
|
+
};
|
|
7799
|
+
};
|
|
7800
|
+
};
|
|
7801
|
+
};
|
|
7802
|
+
};
|
|
7803
|
+
};
|
|
7800
7804
|
} & {
|
|
7801
7805
|
claims: {
|
|
7802
7806
|
":address": {
|