├── .env.example ├── .gitattributes ├── .github └── workflows │ ├── lint.yaml │ └── test.yaml ├── .gitignore ├── LICENSE ├── README.md ├── brownie-config.yml ├── commitlint.config.js ├── contracts ├── AffiliateToken.sol └── BaseWrapper.sol ├── package.json ├── requirements-dev.txt ├── scripts └── deploy.py ├── tests ├── conftest.py ├── test_affiliate.py └── test_affiliate_using_live_vault.py └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.vy linguist-language=Python 2 | -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/README.md -------------------------------------------------------------------------------- /brownie-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/brownie-config.yml -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ["@commitlint/config-conventional"]}; 2 | -------------------------------------------------------------------------------- /contracts/AffiliateToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/contracts/AffiliateToken.sol -------------------------------------------------------------------------------- /contracts/BaseWrapper.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/contracts/BaseWrapper.sol -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/package.json -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | black==22.10.0 2 | eth-brownie>=1.19.2,<2.0.0 3 | -------------------------------------------------------------------------------- /scripts/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/scripts/deploy.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_affiliate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/tests/test_affiliate.py -------------------------------------------------------------------------------- /tests/test_affiliate_using_live_vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/tests/test_affiliate_using_live_vault.py -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yearn/brownie-wrapper-mix/HEAD/yarn.lock --------------------------------------------------------------------------------