We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b4402 commit ba60810Copy full SHA for ba60810
src/config/web2/web2-json-sources.ts
@@ -1,4 +1,20 @@
1
-import { Web2JsonSource } from '../interfaces/web2-json';
+import { AuthType, HTTP_METHOD, Web2JsonSource } from '../interfaces/web2-json';
2
3
/** Allowed Web2Json source definitions for mainnet deployments. */
4
-export const WEB2_JSON_SOURCES: Web2JsonSource[] = [];
+export const WEB2_JSON_SOURCES: Web2JsonSource[] = [
5
+ {
6
+ sourceId: 'Ignite',
7
+ endpoints: [
8
9
+ host: 'api-proxy.ignitemarket.xyz',
10
+ paths: '*',
11
+ methods: [HTTP_METHOD.GET],
12
+ auth: {
13
+ type: AuthType.APIKEY,
14
+ env: 'IGNITE_API_KEY',
15
+ header: 'x-api-key',
16
+ },
17
18
+ ],
19
20
+];
0 commit comments