Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Redm4x committed Sep 7, 2023
1 parent 9ebdf66 commit 5808109
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions api/package-lock.json

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

2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudmos-api",
"version": "2.6.1",
"version": "2.6.2",
"description": "Api providing data to the deploy tool",
"author": "Cloudmos",
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions deploy-web/package-lock.json

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

2 changes: 1 addition & 1 deletion deploy-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudmos-app",
"version": "1.4.5",
"version": "1.4.6",
"description": "Web UI to deploy on the Akash Network and view statistic about network usage.",
"author": "Cloudmos",
"private": true,
Expand Down
4 changes: 2 additions & 2 deletions indexer/package-lock.json

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

2 changes: 1 addition & 1 deletion indexer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudmos-indexer",
"version": "1.3.0",
"version": "1.3.1",
"description": "Indexer for any Cosmos based blockchain",
"author": "Cloudmos",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion indexer/src/monitors/deploymentBalanceMonitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class DeploymentBalanceMonitor {

async getDeploymentBalance(target: string): Promise<number> {
const [owner, dseq] = target.split("/");
const response = await axios.get(`https://rest.cosmos.directory/akash/akash/deployment/v1beta2/deployments/info?id.owner=${owner}&id.dseq=${dseq}`, {
const response = await axios.get(`https://rest.cosmos.directory/akash/akash/deployment/v1beta3/deployments/info?id.owner=${owner}&id.dseq=${dseq}`, {
timeout: 15_000
});

Expand Down

0 comments on commit 5808109

Please sign in to comment.