Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/akash-network/console into …
Browse files Browse the repository at this point in the history
…issues/310
  • Loading branch information
hiroyukikumazawa committed Aug 23, 2024
2 parents f6d4a10 + 7692f97 commit 81b47fa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [yyyy] [name of copyright owner]
Copyright 2023 Overclock Labs, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "console-api",
"version": "2.21.1",
"version": "2.21.2",
"description": "Api providing data to the deploy tool",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion apps/api/src/services/external/apiNodeService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export async function getChainStats() {
cacheKeys.getChainStats,
async () => {
const bondedTokensQuery = axios.get<CosmosStakingPoolResponse>(`${apiNodeUrl}/cosmos/staking/v1beta1/pool`);
const supplyQuery = axios.get<CosmosBankSupplyResponse>(`${apiNodeUrl}/cosmos/bank/v1beta1/supply`);
const supplyQuery = axios.get<CosmosBankSupplyResponse>(`${apiNodeUrl}/cosmos/bank/v1beta1/supply?pagination.limit=1000`);
const communityPoolQuery = axios.get<CosmosDistributionCommunityPoolResponse>(`${apiNodeUrl}/cosmos/distribution/v1beta1/community_pool`);
const inflationQuery = axios.get<CosmosMintInflationResponse>(`${apiNodeUrl}/cosmos/mint/v1beta1/inflation`);
const distributionQuery = axios.get<CosmosDistributionParamsResponse>(`${apiNodeUrl}/cosmos/distribution/v1beta1/params`);
Expand Down
8 changes: 4 additions & 4 deletions apps/deploy-web/src/utils/sdl/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ export const defaultService: ServiceType = {
};

export const SSH_VM_IMAGES = {
"Ubuntu 24.04": "ghcr.io/akash-network/ubuntu-2404-ssh:1",
"CentOS Stream 9": "ghcr.io/akash-network/centos-stream9-ssh:1",
"Debian 11": "ghcr.io/akash-network/debian-11-ssh:1",
"SuSE Leap 15.5": "ghcr.io/akash-network/opensuse-leap-155-ssh:1"
"Ubuntu 24.04": "ghcr.io/akash-network/ubuntu-2404-ssh:2",
"CentOS Stream 9": "ghcr.io/akash-network/centos-stream9-ssh:2",
"Debian 11": "ghcr.io/akash-network/debian-11-ssh:2",
"SuSE Leap 15.5": "ghcr.io/akash-network/opensuse-leap-155-ssh:2"
};
export const sshVmDistros: string[] = Object.keys(SSH_VM_IMAGES);
export const sshVmImages: Set<string> = new Set(Object.values(SSH_VM_IMAGES));
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 81b47fa

Please sign in to comment.