Skip to content

Update Paloma chain.json and versions.json Files #6367

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions paloma/chain.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,27 +31,27 @@
},
"codebase": {
"git_repo": "https://github.com/palomachain/paloma",
"recommended_version": "v1.15.4",
"recommended_version": "v2.4.12",
"compatible_versions": [
"v1.15.4"
"v2.4.12"
],
"consensus": {
"type": "cometbft",
"version": "v0.38.6"
"version": "v0.38.12"
},
"binaries": {
"linux/amd64": "https://github.com/palomachain/paloma/releases/download/v1.15.4/paloma_Linux_x86_64.tar.gz"
"linux/amd64": "https://github.com/palomachain/paloma/releases/download/v2.4.12/paloma_Linux_x86_64.tar.gz"
},
"genesis": {
"genesis_url": "https://raw.githubusercontent.com/palomachain/mainnet/master/tumbler/genesis.json"
},
"sdk": {
"type": "cosmos",
"version": "v0.50.6"
"version": "v0.50.13"
},
"ibc": {
"type": "go",
"version": "v8.2.0"
"version": "v8.4.0"
}
},
"logo_URIs": {
Expand Down
14 changes: 7 additions & 7 deletions paloma/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
"chain_name": "paloma",
"versions": [
{
"name": "v1.15.4",
"recommended_version": "v1.15.4",
"name": "v2.4.12",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of writing over v1.15.4, please add a new version object after v1.15.4

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @JeremyParish69. What is the format to submit a new version object? I tried looking at other submissions, but was not sure.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the versions.json file, there is an array property (called "versions"). Inside that array is an object (was named "v1.15.4). Just copy and past that object below it (so there's two objects now in the 'versions' array). Then update the second object to the details for v2.4.12 (but leave the first object as v1.15.4).

"recommended_version": "v2.4.12",
"compatible_versions": [
"v1.15.4"
"v2.4.12"
],
"consensus": {
"type": "cometbft",
"version": "v0.38.6"
"version": "v0.38.12"
},
"binaries": {
"linux/amd64": "https://github.com/palomachain/paloma/releases/download/v1.15.4/paloma_Linux_x86_64.tar.gz"
"linux/amd64": "https://github.com/palomachain/paloma/releases/download/v2.4.12/paloma_Linux_x86_64.tar.gz"
},
"sdk": {
"type": "cosmos",
"version": "v0.50.6"
"version": "v0.50.13"
},
"ibc": {
"type": "go",
"version": "v8.2.0"
"version": "v8.4.0"
}
}
]
Expand Down