diff --git a/LICENSE b/LICENSE index 261eeb9e9..6a89a965e 100644 --- a/LICENSE +++ b/LICENSE @@ -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. diff --git a/apps/api/package.json b/apps/api/package.json index 0bf7dbd8b..e0d3099b3 100644 --- a/apps/api/package.json +++ b/apps/api/package.json @@ -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", diff --git a/apps/api/src/services/external/apiNodeService.ts b/apps/api/src/services/external/apiNodeService.ts index 2b43adc51..91f642efc 100644 --- a/apps/api/src/services/external/apiNodeService.ts +++ b/apps/api/src/services/external/apiNodeService.ts @@ -37,7 +37,7 @@ export async function getChainStats() { cacheKeys.getChainStats, async () => { const bondedTokensQuery = axios.get(`${apiNodeUrl}/cosmos/staking/v1beta1/pool`); - const supplyQuery = axios.get(`${apiNodeUrl}/cosmos/bank/v1beta1/supply`); + const supplyQuery = axios.get(`${apiNodeUrl}/cosmos/bank/v1beta1/supply?pagination.limit=1000`); const communityPoolQuery = axios.get(`${apiNodeUrl}/cosmos/distribution/v1beta1/community_pool`); const inflationQuery = axios.get(`${apiNodeUrl}/cosmos/mint/v1beta1/inflation`); const distributionQuery = axios.get(`${apiNodeUrl}/cosmos/distribution/v1beta1/params`); diff --git a/apps/deploy-web/src/utils/sdl/data.ts b/apps/deploy-web/src/utils/sdl/data.ts index a11189ffe..5354d08e9 100644 --- a/apps/deploy-web/src/utils/sdl/data.ts +++ b/apps/deploy-web/src/utils/sdl/data.ts @@ -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 = new Set(Object.values(SSH_VM_IMAGES)); diff --git a/package-lock.json b/package-lock.json index 66930f93d..fa319cb23 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,7 +25,7 @@ }, "apps/api": { "name": "console-api", - "version": "2.21.0", + "version": "2.21.2", "license": "Apache-2.0", "dependencies": { "@akashnetwork/akash-api": "^1.3.0", @@ -277,7 +277,7 @@ }, "apps/deploy-web": { "name": "akash-console", - "version": "2.11.2", + "version": "2.11.3", "license": "Apache-2.0", "dependencies": { "@akashnetwork/akash-api": "^1.3.0", @@ -808,7 +808,7 @@ }, "apps/provider-proxy": { "name": "console-provider-proxy", - "version": "1.0.7", + "version": "1.0.8", "license": "Apache-2.0", "dependencies": { "axios": "^1.7.2",