File tree Expand file tree Collapse file tree 6 files changed +4
-52
lines changed
apps/stores-internal/src/skip Expand file tree Collapse file tree 6 files changed +4
-52
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 = {
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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:" , "" ) ,
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change 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
33RUN mkdir app
44
You can’t perform that action at this time.
0 commit comments