-
Notifications
You must be signed in to change notification settings - Fork 28
chore: upgrade hedera ITS on stagenet #1075
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Greptile Overview
Summary
This PR documents and implements the Hedera ITS v2.1.1 upgrade on stagenet. The changes include two key updates: first, the release documentation (`releases/hedera/2025-09-Hedera-ITS-v2.1.1.md`) is updated to mark stagenet deployment as "Deployed" with a completion date of 2025-10-07, and second, the stagenet configuration (`axelar-chains-config/info/stagenet.json`) is updated with new contract implementation addresses and deployment salt reflecting the v2.1.1 upgrade.This upgrade addresses a specific issue with finite supply tokens where the approval amount is lowered to the max supply to prevent registration issues. The deployment follows Axelar's standard phased approach, starting with stagenet before proceeding to testnet and mainnet. The configuration changes include updated implementation addresses for core ITS components like tokenManagerDeployer, interchainTokenDeployer, tokenManager, tokenHandler, and InterchainTokenFactory, along with proper version tracking fields.
PR Description Notes:
- The PR description is incomplete with placeholder text ("...", "?") and should be filled out with actual details about the deployment task and testing performed
Important Files Changed
Changed Files
Filename | Score | Overview |
---|---|---|
releases/hedera/2025-09-Hedera-ITS-v2.1.1.md | 5/5 | Updates deployment status documentation to reflect completed stagenet deployment |
axelar-chains-config/info/stagenet.json | 4/5 | Updates Hedera ITS contract addresses and deployment configuration for v2.1.1 upgrade |
Confidence score: 4/5
- This PR is generally safe to merge as it represents a routine stagenet upgrade with proper documentation updates
- Score reflects successful deployment completion but minor version inconsistencies in configuration files
- Pay attention to version field mismatches in stagenet.json where version shows '2.1.0' instead of expected '2.1.1'
2 files reviewed, 2 comments
bb0145d
to
8cf2909
Compare
|
||
# Create a token on Hedera | ||
ts-node evm/interchainTokenFactory.js --action deployInterchainToken --minter [minter-address] --name "test" --symbol "TST" --decimals 6 --salt "salt1234" --initialSupply 0 -n $CHAIN | ||
ts-node evm/interchainTokenFactory.js --action deployInterchainToken --minter [minter-address] --name "test" --symbol "TST" --decimals 6 --salt "salt1234" --initialSupply 0 -n $CHAIN --gasValue [gas-value] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we dont need to pass --gasValue since we added the api estimation integration
why?
how?
testing
Note
Upgrades Hedera Interchain Token Service on stagenet to v2.1.1 with new addresses and updates the release doc to mark deployment and include gasValue usage.
axelar-chains-config/info/stagenet.json
):InterchainTokenService
: upgrade tov2.1.1
(salt
), updatetokenManagerDeployer
,interchainTokenDeployer
,tokenManager
,tokenHandler
, andimplementation
, addversion
field.InterchainTokenFactory
: updateimplementation
and addversion
(2.1.0
).releases/hedera/2025-09-Hedera-ITS-v2.1.1.md
):gas-value
(tinybars) and update CLI examples to include--gasValue
; minor checklist tweaks (record Token Manager address).Written by Cursor Bugbot for commit c64fc96. This will update automatically on new commits. Configure here.