Skip to content

Commit

Permalink
feat: 🎸 Make 5.4.0 as default version
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantasdeveloper committed Jun 13, 2023
1 parent 6e84466 commit 23e082d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/common/containers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function prepareDockerfile(version: string, image?: string): void {
const template = fs.readFileSync(`${localDir}/mesh.Dockerfile.template`).toString();

let branch = 'mainnet';
if (version === 'latest' || version === '5.4.0') {
if (version === 'latest') {
branch = 'staging';
}
const chainImage = `polymeshassociation/polymesh:${version}-${branch}-debian`;
Expand Down
4 changes: 2 additions & 2 deletions src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const fiveThreeZeroConfig = {
export const fiveFourZeroConfig = {
chainTag: '5.4.0',
restTag: 'v3.1.0',
subqueryTag: 'v9.4.0',
subqueryTag: 'v9.6.1',
toolingTag: 'v5.0.2',
...defaultRestSigners,
};
Expand Down Expand Up @@ -67,8 +67,8 @@ export const fiveZeroThreeConfig = {
};

export const bundledConfig = [
fiveThreeZeroConfig,
fiveFourZeroConfig,
fiveThreeZeroConfig,
fiveTwoZeroConfig,
fiveOneThreeConfig,
fiveOneZeroConfig,
Expand Down

0 comments on commit 23e082d

Please sign in to comment.