Skip to content

Commit

Permalink
Change some remote endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunnini committed Dec 22, 2023
1 parent 3946d81 commit 9eb8fc9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export const ClaimAll: FunctionComponent<{ isNotReady?: boolean }> = observer(
average?: number;
high?: number;
}>(
"https://base-fee-step.s3.us-west-2.amazonaws.com/osmosis-base-fee-beta.json"
"https://gjsttg7mkgtqhjpt3mv5aeuszi0zblbb.lambda-url.us-west-2.on.aws/osmosis/osmosis-base-fee-beta.json"
);

await queryBaseFee.waitFreshResponse();
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/src/stores/ui-config/new-chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export class NewChainSuggestionConfig {
const res = await simpleFetch<{
info: Remote[];
}>(
"https://keplr-new-chain-added-tooltip.s3.us-west-2.amazonaws.com/info.json"
"https://gjsttg7mkgtqhjpt3mv5aeuszi0zblbb.lambda-url.us-west-2.on.aws/new-chain/info.json"
);

const validated = await Schema.validateAsync(res.data);
Expand Down
2 changes: 1 addition & 1 deletion packages/hooks/src/tx/fee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ export class FeeConfig extends TxChainSetter implements IFeeConfig {
average?: number;
high?: number;
}>(
"https://base-fee-step.s3.us-west-2.amazonaws.com/osmosis-base-fee-beta.json"
"https://gjsttg7mkgtqhjpt3mv5aeuszi0zblbb.lambda-url.us-west-2.on.aws/osmosis/osmosis-base-fee-beta.json"
);

const baseFee = queryOsmosis.queryBaseFee.baseFee;
Expand Down

0 comments on commit 9eb8fc9

Please sign in to comment.