You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
548 B
12 lines
548 B
pragma solidity >=0.8.0 <0.9.0;
|
|
|
|
interface IInterface {
|
|
event Assign(address indexed token, address indexed from, address indexed to, uint256 amount);
|
|
event Withdraw(address indexed token, address indexed from, address indexed to, uint256 amount);
|
|
|
|
// TODO: remove init from the interface, all the initialization should be outside the court
|
|
function init(address _owner) external;
|
|
|
|
function assign(uint _token, address _to, uint256 _amount) external;
|
|
function withdraw(uint _token, address _to, uint256 _amount) external;
|
|
}
|
|
|