@merkl/api 0.17.3 → 0.17.4
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 +180 -50
- package/dist/src/index.d.ts +36 -10
- package/dist/src/modules/v4/chain/chain.controller.d.ts +36 -10
- package/dist/src/modules/v4/chain/chain.controller.js +6 -8
- package/dist/src/modules/v4/router.d.ts +36 -10
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -2036,8 +2036,17 @@ export declare const v4: Elysia<"/v4", false, {
|
|
2036
2036
|
query: unknown;
|
2037
2037
|
headers: unknown;
|
2038
2038
|
response: {
|
2039
|
-
|
2040
|
-
|
2039
|
+
200: {
|
2040
|
+
name: string;
|
2041
|
+
id: number;
|
2042
|
+
icon: string;
|
2043
|
+
explorers: {
|
2044
|
+
type: import("../../../database/api/.generated").$Enums.ExplorerType;
|
2045
|
+
url: string;
|
2046
|
+
id: string;
|
2047
|
+
chainId: number;
|
2048
|
+
}[];
|
2049
|
+
} | null;
|
2041
2050
|
};
|
2042
2051
|
};
|
2043
2052
|
};
|
@@ -2053,8 +2062,17 @@ export declare const v4: Elysia<"/v4", false, {
|
|
2053
2062
|
};
|
2054
2063
|
headers: unknown;
|
2055
2064
|
response: {
|
2056
|
-
|
2057
|
-
|
2065
|
+
200: {
|
2066
|
+
name: string;
|
2067
|
+
id: number;
|
2068
|
+
icon: string;
|
2069
|
+
explorers: {
|
2070
|
+
type: import("../../../database/api/.generated").$Enums.ExplorerType;
|
2071
|
+
url: string;
|
2072
|
+
id: string;
|
2073
|
+
chainId: number;
|
2074
|
+
}[];
|
2075
|
+
}[];
|
2058
2076
|
};
|
2059
2077
|
};
|
2060
2078
|
};
|
@@ -2070,8 +2088,7 @@ export declare const v4: Elysia<"/v4", false, {
|
|
2070
2088
|
};
|
2071
2089
|
headers: unknown;
|
2072
2090
|
response: {
|
2073
|
-
|
2074
|
-
200: any;
|
2091
|
+
200: number;
|
2075
2092
|
};
|
2076
2093
|
};
|
2077
2094
|
};
|
@@ -2093,8 +2110,11 @@ export declare const v4: Elysia<"/v4", false, {
|
|
2093
2110
|
authorization: string;
|
2094
2111
|
};
|
2095
2112
|
response: {
|
2096
|
-
|
2097
|
-
|
2113
|
+
200: {
|
2114
|
+
name: string;
|
2115
|
+
id: number;
|
2116
|
+
icon: string;
|
2117
|
+
};
|
2098
2118
|
};
|
2099
2119
|
};
|
2100
2120
|
};
|
@@ -2116,8 +2136,14 @@ export declare const v4: Elysia<"/v4", false, {
|
|
2116
2136
|
authorization: string;
|
2117
2137
|
};
|
2118
2138
|
response: {
|
2119
|
-
|
2120
|
-
|
2139
|
+
200: {
|
2140
|
+
Explorer: {
|
2141
|
+
type: import("../../../database/api/.generated").$Enums.ExplorerType;
|
2142
|
+
url: string;
|
2143
|
+
id: string;
|
2144
|
+
chainId: number;
|
2145
|
+
}[];
|
2146
|
+
};
|
2121
2147
|
};
|
2122
2148
|
};
|
2123
2149
|
};
|