├── .gitattributes ├── .gitignore ├── README.md ├── brownie-config.yaml ├── contracts ├── EllipsisToken2.sol ├── FeeDistributor.sol ├── FeeDistributorTester.vy ├── IncentiveVoting.sol ├── LPStaking.sol ├── MerkleDistributor.sol ├── TokenLocker.sol └── testing │ ├── Pool.sol │ └── RewardsToken.sol ├── scripts └── deploy.py └── tests ├── EPS2 └── test_token.py ├── FeeDistributor └── test_fee_distro.py ├── IncentiveVoting ├── test_create_vote.py └── test_vote.py ├── LPStaking ├── test_add_pool.py ├── test_boost.py ├── test_deposit.py └── test_withdraw.py ├── TokenLocker ├── test_exit_stream.py ├── test_locks.py └── test_streaming.py └── conftest.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/README.md -------------------------------------------------------------------------------- /brownie-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/brownie-config.yaml -------------------------------------------------------------------------------- /contracts/EllipsisToken2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/EllipsisToken2.sol -------------------------------------------------------------------------------- /contracts/FeeDistributor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/FeeDistributor.sol -------------------------------------------------------------------------------- /contracts/FeeDistributorTester.vy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/FeeDistributorTester.vy -------------------------------------------------------------------------------- /contracts/IncentiveVoting.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/IncentiveVoting.sol -------------------------------------------------------------------------------- /contracts/LPStaking.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/LPStaking.sol -------------------------------------------------------------------------------- /contracts/MerkleDistributor.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/MerkleDistributor.sol -------------------------------------------------------------------------------- /contracts/TokenLocker.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/TokenLocker.sol -------------------------------------------------------------------------------- /contracts/testing/Pool.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/testing/Pool.sol -------------------------------------------------------------------------------- /contracts/testing/RewardsToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/contracts/testing/RewardsToken.sol -------------------------------------------------------------------------------- /scripts/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/scripts/deploy.py -------------------------------------------------------------------------------- /tests/EPS2/test_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/EPS2/test_token.py -------------------------------------------------------------------------------- /tests/FeeDistributor/test_fee_distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/FeeDistributor/test_fee_distro.py -------------------------------------------------------------------------------- /tests/IncentiveVoting/test_create_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/IncentiveVoting/test_create_vote.py -------------------------------------------------------------------------------- /tests/IncentiveVoting/test_vote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/IncentiveVoting/test_vote.py -------------------------------------------------------------------------------- /tests/LPStaking/test_add_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/LPStaking/test_add_pool.py -------------------------------------------------------------------------------- /tests/LPStaking/test_boost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/LPStaking/test_boost.py -------------------------------------------------------------------------------- /tests/LPStaking/test_deposit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/LPStaking/test_deposit.py -------------------------------------------------------------------------------- /tests/LPStaking/test_withdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/LPStaking/test_withdraw.py -------------------------------------------------------------------------------- /tests/TokenLocker/test_exit_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/TokenLocker/test_exit_stream.py -------------------------------------------------------------------------------- /tests/TokenLocker/test_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/TokenLocker/test_locks.py -------------------------------------------------------------------------------- /tests/TokenLocker/test_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/TokenLocker/test_streaming.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellipsis-finance/ellipsis-v2/HEAD/tests/conftest.py --------------------------------------------------------------------------------