@merkl/api 1.9.10 → 1.9.12
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/campaign/campaign.query-transformer.d.ts +86 -86
- 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/opportunity/opportunity.query-transformer.d.ts +55 -55
- package/dist/src/modules/v4/programPayload/programPayload.repository.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": {
|