Add selector collisions to the IERC20 lib

This commit is contained in:
Luke Parker
2025-01-23 08:22:41 -05:00
parent 7e53eff642
commit e922264ebf
4 changed files with 47 additions and 4 deletions

View File

@@ -18,3 +18,17 @@ interface IERC20 {
function approve(address spender, uint256 value) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
}
interface SeraiIERC20 {
function transferWithInInstruction01BB244A8A(
address to,
uint256 value,
bytes calldata inInstruction
) external returns (bool);
function transferFromWithInInstruction00081948E0(
address from,
address to,
uint256 value,
bytes calldata inInstruction
) external returns (bool);
}