tapimo 0.15.0 → 0.15.1
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/App.d.ts +26 -26
- package/dist/admin/App.d.ts +3 -0
- package/dist/admin/App.d.ts.map +1 -1
- package/dist/admin/apps/api-keys.d.ts +41 -41
- package/dist/admin/apps/routes.d.ts +64 -64
- package/dist/admin/apps/verified-tokens.d.ts +161 -155
- package/dist/admin/apps/verified-tokens.d.ts.map +1 -1
- package/dist/admin/apps/verified-tokens.js +24 -4
- package/dist/admin/apps/verified-tokens.js.map +1 -1
- package/dist/admin/ui.generated.d.ts +1 -1
- package/dist/admin/ui.generated.d.ts.map +1 -1
- package/dist/admin/ui.generated.js +201 -209
- package/dist/admin/ui.generated.js.map +1 -1
- package/dist/apps/data/routes/activities.d.ts +357 -357
- package/dist/apps/data/routes/blocks.d.ts +125 -125
- package/dist/apps/data/routes/fee-amm.d.ts +108 -108
- package/dist/apps/data/routes/fee-amm.d.ts.map +1 -1
- package/dist/apps/data/routes/fee-amm.js +10 -2
- package/dist/apps/data/routes/fee-amm.js.map +1 -1
- package/dist/apps/data/routes/indexer.d.ts +43 -43
- package/dist/apps/data/routes/receipts.d.ts +235 -235
- package/dist/apps/data/routes/rpc.js +45 -11
- package/dist/apps/data/routes/rpc.js.map +1 -1
- package/dist/apps/data/routes/transfers.d.ts +81 -81
- package/dist/apps/data/routes/valuation.d.ts +32 -32
- package/dist/apps/data/routes/verified-tokens.d.ts +86 -86
- package/dist/apps/data/routes/webhooks.d.ts +1 -1
- package/dist/apps/data/routes/webhooks.d.ts.map +1 -1
- package/dist/apps/data/routes/webhooks.js +17 -10
- package/dist/apps/data/routes/webhooks.js.map +1 -1
- package/dist/apps/data/routes/zones.d.ts +31 -31
- package/dist/apps/management/App.d.ts +26 -26
- package/dist/apps/management/routes/api-keys.d.ts +246 -246
- package/dist/apps/management/routes/invitations.d.ts +138 -138
- package/dist/apps/management/routes/invite-links.d.ts +168 -168
- package/dist/apps/management/routes/orgs.d.ts +98 -98
- package/dist/apps/management/routes/projects.d.ts +125 -125
- package/dist/apps/management/routes/verified-token-requests.d.ts +95 -95
- package/dist/apps/management/routes/verified-token-requests.d.ts.map +1 -1
- package/dist/apps/management/routes/verified-token-requests.js +7 -9
- package/dist/apps/management/routes/verified-token-requests.js.map +1 -1
- package/dist/apps/management/routes/webhooks.d.ts +423 -423
- package/dist/apps/mcp.d.ts.map +1 -1
- package/dist/apps/mcp.js +16 -3
- package/dist/apps/mcp.js.map +1 -1
- package/dist/apps/mpp/App.d.ts +44 -44
- package/dist/apps/routes/routes/chains.d.ts +25 -25
- package/dist/apps/routes/routes/quotes.d.ts +87 -87
- package/dist/apps/routes/routes/transfers.d.ts +438 -438
- package/dist/db/Db.d.ts.map +1 -1
- package/dist/db/Db.js +5 -0
- package/dist/db/Db.js.map +1 -1
- package/dist/db/tables/verifiedTokenRequests.d.ts +21 -4
- package/dist/db/tables/verifiedTokenRequests.d.ts.map +1 -1
- package/dist/db/tables/verifiedTokenRequests.js +65 -44
- package/dist/db/tables/verifiedTokenRequests.js.map +1 -1
- package/dist/internal/Auth.d.ts +16 -0
- package/dist/internal/Auth.d.ts.map +1 -1
- package/dist/internal/Auth.js +31 -8
- package/dist/internal/Auth.js.map +1 -1
- package/dist/internal/routes/providers/relay.d.ts +1 -1
- package/dist/internal/routes/providers/relay.js +1 -1
- package/dist/internal/routes/providers/relay.js.map +1 -1
- package/package.json +1 -1
- package/src/admin/apps/verified-tokens.test.ts +32 -0
- package/src/admin/apps/verified-tokens.ts +30 -4
- package/src/admin/ui/src/lib/verified-tokens.ts +24 -9
- package/src/admin/ui/src/routes/__root.tsx +1 -1
- package/src/admin/ui/src/routes/organizations.tsx +34 -4
- package/src/admin/ui/src/routes/verified-tokens.tsx +64 -20
- package/src/admin/ui.generated.ts +202 -263
- package/src/apps/data/App.test.ts +26 -0
- package/src/apps/data/routes/fee-amm.test.ts +19 -0
- package/src/apps/data/routes/fee-amm.ts +10 -2
- package/src/apps/data/routes/rpc.test.ts +32 -0
- package/src/apps/data/routes/rpc.ts +47 -10
- package/src/apps/data/routes/webhooks.scan.test.ts +29 -0
- package/src/apps/data/routes/webhooks.test.ts +6 -0
- package/src/apps/data/routes/webhooks.ts +25 -12
- package/src/apps/management/routes/verified-token-requests.test.ts +16 -2
- package/src/apps/management/routes/verified-token-requests.ts +7 -10
- package/src/apps/mcp.test.ts +108 -25
- package/src/apps/mcp.ts +15 -3
- package/src/db/Db.ts +9 -0
- package/src/db/tables/routesDeposits.test.ts +72 -0
- package/src/db/tables/verifiedTokenRequests.test.ts +39 -20
- package/src/db/tables/verifiedTokenRequests.ts +80 -44
- package/src/internal/Auth.test.ts +92 -0
- package/src/internal/Auth.ts +51 -9
- package/src/internal/routes/providers/relay.test.ts +59 -0
- package/src/internal/routes/providers/relay.ts +1 -1
|
@@ -90,20 +90,22 @@ export declare namespace schema {
|
|
|
90
90
|
export declare function indexer(): import("hono/hono-base").HonoBase<App.Environment, {
|
|
91
91
|
"/v1/indexer/query": {
|
|
92
92
|
$get: {
|
|
93
|
-
output:
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
output: {
|
|
94
|
+
ok: boolean;
|
|
95
|
+
columns: string[];
|
|
96
|
+
rows: import("hono/utils/types").JSONValue[][];
|
|
97
|
+
row_count: number;
|
|
98
|
+
engine?: "clickhouse" | "postgres" | "tiered" | undefined;
|
|
99
|
+
query_time_ms?: number | undefined;
|
|
100
|
+
};
|
|
101
|
+
outputFormat: "json";
|
|
102
|
+
status: 200;
|
|
96
103
|
input: {};
|
|
97
104
|
} | {
|
|
98
105
|
output: "event: result\ndata: {\"ok\":true,\"columns\":[],\"rows\":[],\"row_count\":0}\n\n";
|
|
99
106
|
outputFormat: "text";
|
|
100
107
|
status: 200;
|
|
101
108
|
input: {};
|
|
102
|
-
} | {
|
|
103
|
-
output: never;
|
|
104
|
-
outputFormat: never;
|
|
105
|
-
status: never;
|
|
106
|
-
input: {};
|
|
107
109
|
} | {
|
|
108
110
|
output: {
|
|
109
111
|
error: {
|
|
@@ -119,102 +121,95 @@ export declare function indexer(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
119
121
|
} | {
|
|
120
122
|
output: {
|
|
121
123
|
error: {
|
|
122
|
-
code: "
|
|
124
|
+
code: "chain_id_unsupported";
|
|
123
125
|
details?: readonly Response.error.Detail[] | undefined;
|
|
124
126
|
message: string;
|
|
125
127
|
};
|
|
126
128
|
requestId: string;
|
|
127
129
|
};
|
|
128
130
|
outputFormat: "json";
|
|
129
|
-
status:
|
|
131
|
+
status: 400;
|
|
130
132
|
input: {};
|
|
131
133
|
} | {
|
|
132
134
|
output: {
|
|
133
135
|
error: {
|
|
134
|
-
code: "
|
|
136
|
+
code: "chain_id_invalid";
|
|
135
137
|
details?: readonly Response.error.Detail[] | undefined;
|
|
136
138
|
message: string;
|
|
137
139
|
};
|
|
138
140
|
requestId: string;
|
|
139
141
|
};
|
|
140
142
|
outputFormat: "json";
|
|
141
|
-
status:
|
|
143
|
+
status: 400;
|
|
142
144
|
input: {};
|
|
143
145
|
} | {
|
|
144
146
|
output: {
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
148
|
-
message: string;
|
|
149
|
-
};
|
|
150
|
-
requestId: string;
|
|
147
|
+
ok: false;
|
|
148
|
+
error: string;
|
|
151
149
|
};
|
|
152
150
|
outputFormat: "json";
|
|
153
|
-
status:
|
|
151
|
+
status: 400;
|
|
154
152
|
input: {};
|
|
155
153
|
} | {
|
|
156
154
|
output: {
|
|
157
155
|
error: {
|
|
158
|
-
code: "
|
|
156
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
159
157
|
details?: readonly Response.error.Detail[] | undefined;
|
|
160
158
|
message: string;
|
|
161
159
|
};
|
|
162
160
|
requestId: string;
|
|
163
161
|
};
|
|
164
162
|
outputFormat: "json";
|
|
165
|
-
status:
|
|
163
|
+
status: 401;
|
|
164
|
+
input: {};
|
|
165
|
+
} | {
|
|
166
|
+
output: null;
|
|
167
|
+
outputFormat: "body";
|
|
168
|
+
status: 402;
|
|
166
169
|
input: {};
|
|
167
170
|
} | {
|
|
168
171
|
output: {
|
|
169
172
|
error: {
|
|
170
|
-
code: "
|
|
173
|
+
code: "api_key_forbidden" | "api_key_ip_forbidden";
|
|
171
174
|
details?: readonly Response.error.Detail[] | undefined;
|
|
172
175
|
message: string;
|
|
173
176
|
};
|
|
174
177
|
requestId: string;
|
|
175
178
|
};
|
|
176
179
|
outputFormat: "json";
|
|
177
|
-
status:
|
|
180
|
+
status: 403;
|
|
178
181
|
input: {};
|
|
179
182
|
} | {
|
|
180
183
|
output: {
|
|
181
|
-
ok:
|
|
182
|
-
|
|
183
|
-
rows: import("hono/utils/types").JSONValue[][];
|
|
184
|
-
row_count: number;
|
|
185
|
-
engine?: "clickhouse" | "postgres" | "tiered" | undefined;
|
|
186
|
-
query_time_ms?: number | undefined;
|
|
184
|
+
ok: false;
|
|
185
|
+
error: string;
|
|
187
186
|
};
|
|
188
187
|
outputFormat: "json";
|
|
189
|
-
status:
|
|
188
|
+
status: 422;
|
|
190
189
|
input: {};
|
|
191
190
|
} | {
|
|
192
191
|
output: {
|
|
193
192
|
error: {
|
|
194
|
-
code: "
|
|
193
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
195
194
|
details?: readonly Response.error.Detail[] | undefined;
|
|
196
195
|
message: string;
|
|
197
196
|
};
|
|
198
197
|
requestId: string;
|
|
199
198
|
};
|
|
200
199
|
outputFormat: "json";
|
|
201
|
-
status:
|
|
202
|
-
input: {};
|
|
203
|
-
} | {
|
|
204
|
-
output: {
|
|
205
|
-
ok: false;
|
|
206
|
-
error: string;
|
|
207
|
-
};
|
|
208
|
-
outputFormat: "json";
|
|
209
|
-
status: 400;
|
|
200
|
+
status: 429;
|
|
210
201
|
input: {};
|
|
211
202
|
} | {
|
|
212
203
|
output: {
|
|
213
|
-
|
|
214
|
-
|
|
204
|
+
error: {
|
|
205
|
+
code: "upstream_error";
|
|
206
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
207
|
+
message: string;
|
|
208
|
+
};
|
|
209
|
+
requestId: string;
|
|
215
210
|
};
|
|
216
211
|
outputFormat: "json";
|
|
217
|
-
status:
|
|
212
|
+
status: 502;
|
|
218
213
|
input: {};
|
|
219
214
|
} | {
|
|
220
215
|
output: {
|
|
@@ -236,6 +231,11 @@ export declare function indexer(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
236
231
|
outputFormat: "json";
|
|
237
232
|
status: 504;
|
|
238
233
|
input: {};
|
|
234
|
+
} | {
|
|
235
|
+
output: never;
|
|
236
|
+
outputFormat: never;
|
|
237
|
+
status: never;
|
|
238
|
+
input: {};
|
|
239
239
|
};
|
|
240
240
|
};
|
|
241
241
|
}, "/", "/v1/indexer/query">;
|