mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 12:49:23 +00:00
Add selector collisions to the IERC20 lib
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user