Skip to content
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

fix!: update its hub chain name #287

Merged
merged 1 commit into from
Oct 16, 2024
Merged
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
2 changes: 1 addition & 1 deletion contracts/InterchainTokenService.sol
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ contract InterchainTokenService is
* @dev Chain name where ITS Hub exists. This is used for routing ITS calls via ITS hub.
* This is set as a constant, since the ITS Hub will exist on Axelar.
*/
string internal constant ITS_HUB_CHAIN_NAME = 'axelarnet';
string internal constant ITS_HUB_CHAIN_NAME = 'axelar';
bytes32 internal constant ITS_HUB_CHAIN_NAME_HASH = keccak256(abi.encodePacked(ITS_HUB_CHAIN_NAME));

/**
Expand Down
2 changes: 1 addition & 1 deletion test/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const OPERATOR_ROLE = 1;
const FLOW_LIMITER_ROLE = 2;

// Chain name for ITS Hub chain
const ITS_HUB_CHAIN_NAME = 'axelarnet';
const ITS_HUB_CHAIN_NAME = 'axelar';
const ITS_HUB_ROUTING_IDENTIFIER = 'hub';
const ITS_HUB_ADDRESS = 'axelar1xyz';

Expand Down
Loading