Skip to content

Commit

Permalink
fix: AddressBytes path (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
Olanetsoft authored Jan 12, 2024
1 parent 93ba88b commit de10930
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/samples/interchain-token-iinterchaintoken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {ITokenManager} from "@axelar-network/interchain-token-service/contracts/
import {ITokenManagerType} from "@axelar-network/interchain-token-service/contracts/interfaces/ITokenManagerType.sol";
import {IInterchainToken} from "@axelar-network/interchain-token-service/contracts/interfaces/IInterchainToken.sol";
import {IInterchainTokenService} from "@axelar-network/interchain-token-service/contracts/interfaces/IInterchainTokenService.sol";
import {AddressBytesUtils} from "@axelar-network/interchain-token-service/contracts/libraries/AddressBytesUtils.sol";
import {AddressBytes} from "@axelar-network/axelar-gmp-sdk-solidity/contracts/libs/AddressBytes.sol";

/**
* This is sample code only and has not been audited.
Expand All @@ -17,7 +17,7 @@ import {AddressBytesUtils} from "@axelar-network/interchain-token-service/contra
* in production.
*/
contract MyInterchainToken is ERC20, AccessControl {
using AddressBytesUtils for address;
using AddressBytes for address;

address public creator;
bytes32 public tokenId;
Expand Down

1 comment on commit de10930

@vercel
Copy link

@vercel vercel bot commented on de10930 Jan 12, 2024

Choose a reason for hiding this comment

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

Please sign in to comment.