Skip to content

Commit

Permalink
feat: 🎸 Add config values for 5.3.0 chain
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantasdeveloper committed Mar 2, 2023
1 parent 1f7368f commit 059dd23
Show file tree
Hide file tree
Showing 3 changed files with 1,578 additions and 1 deletion.
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.2.0') {
if (version === 'latest' || version === '5.3.0') {
branch = 'develop';
}
const chainImage = `polymeshassociation/polymesh:${version}-${branch}-debian`;
Expand Down
9 changes: 9 additions & 0 deletions src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ export const fiveTwoZeroConfig = {
...defaultRestSigners,
};

export const fiveThreeZeroConfig = {
chainTag: '5.3.0',
restTag: 'v2.5.1',
subqueryTag: 'v9.2.0-alpha.1',
toolingTag: 'v5.0.2',
...defaultRestSigners,
};

export const fiveOneThreeConfig = {
chainTag: '5.1.3',
restTag: 'v2.4.0',
Expand Down Expand Up @@ -53,6 +61,7 @@ export const fiveZeroThreeConfig = {
export const bundledConfig = [
fiveOneThreeConfig,
fiveTwoZeroConfig,
fiveThreeZeroConfig,
fiveOneZeroConfig,
fiveZeroThreeConfig,
latestConfig,
Expand Down
Loading

0 comments on commit 059dd23

Please sign in to comment.