├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── .gitmodules ├── .python-version ├── COPYING ├── README.md ├── bin ├── bite-all-keeper └── bite-keeper ├── bite_keeper ├── __init__.py ├── abi │ ├── BiteCdps.abi │ └── BiteCdps.bin ├── bite_all_keeper.py ├── bite_keeper.py └── bitecdps.py ├── install.sh ├── requirements-dev.txt ├── requirements.txt ├── test.sh └── tests ├── __init__.py ├── conftest.py ├── helper.py └── test_bite_keeper.py /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.6.2 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/README.md -------------------------------------------------------------------------------- /bin/bite-all-keeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/bin/bite-all-keeper -------------------------------------------------------------------------------- /bin/bite-keeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/bin/bite-keeper -------------------------------------------------------------------------------- /bite_keeper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bite_keeper/abi/BiteCdps.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/bite_keeper/abi/BiteCdps.abi -------------------------------------------------------------------------------- /bite_keeper/abi/BiteCdps.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/bite_keeper/abi/BiteCdps.bin -------------------------------------------------------------------------------- /bite_keeper/bite_all_keeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/bite_keeper/bite_all_keeper.py -------------------------------------------------------------------------------- /bite_keeper/bite_keeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/bite_keeper/bite_keeper.py -------------------------------------------------------------------------------- /bite_keeper/bitecdps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/bite_keeper/bitecdps.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/install.sh -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/test.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/tests/helper.py -------------------------------------------------------------------------------- /tests/test_bite_keeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/bite-keeper/HEAD/tests/test_bite_keeper.py --------------------------------------------------------------------------------