Skip to content

Commit

Permalink
finaly fixed the tokenManager bytecode
Browse files Browse the repository at this point in the history
  • Loading branch information
Foivos committed Dec 20, 2024
1 parent 426804b commit ab264ac
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions contracts/interfaces/IBaseTokenManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,12 @@ pragma solidity ^0.8.0;
interface IBaseTokenManager {
/**
* @notice A function that returns the token id.
* @dev This is stored in the proxy and should not be called in the implementation, but it is included here so that the interface properly tells us what functions exist.
*/
function interchainTokenId() external view returns (bytes32);

/**
* @notice A function that should return the address of the token.
* Must be overridden in the inheriting contract.
* @dev This is stored in the proxy and should not be called in the implementation, but it is included here so that the interface properly tells us what functions exist.
* @return address address of the token.
*/
function tokenAddress() external view returns (address);
Expand Down

0 comments on commit ab264ac

Please sign in to comment.