Skip to content

Commit

Permalink
fix!: use lower case ITS hub chain name
Browse files Browse the repository at this point in the history
  • Loading branch information
milapsheth committed Sep 24, 2024
1 parent 7df851d commit 9876ff5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 = 'axelarnet';
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 = 'axelarnet';
const ITS_HUB_ROUTING_IDENTIFIER = 'hub';
const ITS_HUB_ADDRESS = 'axelar1xyz';

Expand Down

0 comments on commit 9876ff5

Please sign in to comment.