Skip to content

Commit c825af2

Browse files
committed
Merge branch 'develop'
2 parents 834406e + 8d0331e commit c825af2

File tree

6 files changed

+4
-52
lines changed

6 files changed

+4
-52
lines changed

apps/stores-internal/src/skip/assets-from-source.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,6 @@ export class ObservableQueryAssetsFromSourceInner extends ObservableQuery<Assets
137137
{
138138
headers: {
139139
"content-type": "application/json",
140-
...(() => {
141-
const res: { authorization?: string } = {};
142-
if (process.env["SKIP_API_KEY"]) {
143-
res.authorization = process.env["SKIP_API_KEY"];
144-
}
145-
146-
return res;
147-
})(),
148140
},
149141
signal: abortController.signal,
150142
}

apps/stores-internal/src/skip/assets.ts

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -335,16 +335,6 @@ export class ObservableQueryAssetsInner extends ObservableQuery<AssetsResponse>
335335
): Promise<{ headers: any; data: AssetsResponse }> {
336336
const _result = await simpleFetch(this.baseURL, this.url, {
337337
signal: abortController.signal,
338-
headers: {
339-
...(() => {
340-
const res: { authorization?: string } = {};
341-
if (process.env["SKIP_API_KEY"]) {
342-
res.authorization = process.env["SKIP_API_KEY"];
343-
}
344-
345-
return res;
346-
})(),
347-
},
348338
});
349339
const result = {
350340
headers: _result.headers,
@@ -714,14 +704,7 @@ export class ObservableQueryAssetsBatchInner extends ObservableQuery<AssetsRespo
714704
const _result = await simpleFetch(this.baseURL, this.url, {
715705
signal: abortController.signal,
716706
headers: {
717-
...(() => {
718-
const res: { authorization?: string } = {};
719-
if (process.env["SKIP_API_KEY"]) {
720-
res.authorization = process.env["SKIP_API_KEY"];
721-
}
722-
723-
return res;
724-
})(),
707+
"content-type": "application/json",
725708
},
726709
});
727710
const result = {

apps/stores-internal/src/skip/chains.ts

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,10 @@ export class ObservableQueryChains extends ObservableQuery<ChainsResponse> {
3737
abortController: AbortController
3838
): Promise<{ headers: any; data: ChainsResponse }> {
3939
const _result = await simpleFetch(this.baseURL, this.url, {
40-
signal: abortController.signal,
4140
headers: {
42-
...(() => {
43-
const res: { authorization?: string } = {};
44-
if (process.env["SKIP_API_KEY"]) {
45-
res.authorization = process.env["SKIP_API_KEY"];
46-
}
47-
48-
return res;
49-
})(),
41+
"content-type": "application/json",
5042
},
43+
signal: abortController.signal,
5144
});
5245
const result = {
5346
headers: _result.headers,

apps/stores-internal/src/skip/msgs-direct.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -309,14 +309,6 @@ export class ObservableQueryMsgsDirectInner extends ObservableQuery<MsgsDirectRe
309309
method: "POST",
310310
headers: {
311311
"content-type": "application/json",
312-
...(() => {
313-
const res: { authorization?: string } = {};
314-
if (process.env["SKIP_API_KEY"]) {
315-
res.authorization = process.env["SKIP_API_KEY"];
316-
}
317-
318-
return res;
319-
})(),
320312
},
321313
body: JSON.stringify({
322314
source_asset_denom: this.amountInDenom.replace("erc20:", ""),

apps/stores-internal/src/skip/route.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -418,14 +418,6 @@ export class ObservableQueryRouteInner extends ObservableQuery<
418418
method: "POST",
419419
headers: {
420420
"content-type": "application/json",
421-
...(() => {
422-
const res: { authorization?: string } = {};
423-
if (process.env["SKIP_API_KEY"]) {
424-
res.authorization = process.env["SKIP_API_KEY"];
425-
}
426-
427-
return res;
428-
})(),
429421
},
430422
body: JSON.stringify({
431423
amount_in: this.sourceAmount,

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/r3a1l1p0/chainapsis/ubuntu:24.04-keplr-firefox-build
1+
FROM public.ecr.aws/r3a1l1p0/chainapsis/ubuntu:24.04-keplr-firefox-build-multi
22

33
RUN mkdir app
44

0 commit comments

Comments
 (0)