Strategy contracts satisfies the specific interface described below.
interface IStrategy {
function stake(uint256 amount) external;
function unstake(uint256 amount) external;
function epoch() external;
}
contract MyStrategy is IStrategy, AxelarExecutable {
// TODO
}