Внешняя цепь EVM с Axelar
interface IStrategy {
function stake(uint256 amount) external;
function unstake(uint256 amount) external;
function epoch() external;
}contract MyStrategy is IStrategy, AxelarExecutable {
// TODO
}Last updated