Skip to content

Instantly share code, notes, and snippets.

View pertsev's full-sized avatar
🏠
Working from home

Alexey Pertsev pertsev

🏠
Working from home
View GitHub Profile
pragma solidity ^0.5.0;
import "github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol";
import "github.com/OpenZeppelin/openzeppelin-contracts/contracts/math/SafeMath.sol";
interface IValidatorSet {
function isValidator(address candidate) external view returns(bool);
}
contract BasePool {