.dockerignore
.gitignore
.pre-commit-config.yaml
CHANGELOG.md
CONTRIBUTING.md
Dockerfile
LICENSE
README.md
build_docs.py
pyproject.toml
setup.cfg
setup.py
.github/PULL_REQUEST_TEMPLATE.md
.github/release-drafter.yml
.github/ISSUE_TEMPLATE/bug.md
.github/ISSUE_TEMPLATE/feature.md
.github/ISSUE_TEMPLATE/work-item.md
.github/workflows/commitlint.yaml
.github/workflows/docs.yaml
.github/workflows/draft.yaml
.github/workflows/prtitle.yaml
.github/workflows/publish.yaml
.github/workflows/test.yaml
docs/conf.py
docs/favicon.ico
docs/index.md
docs/logo.gif
docs/_static/custom.css
docs/_static/custom.js
docs/_templates/layout.html
docs/commands/accounts.rst
docs/commands/compile.rst
docs/commands/console.rst
docs/commands/init.rst
docs/commands/networks.rst
docs/commands/plugins.rst
docs/commands/run.rst
docs/commands/test.rst
docs/methoddocs/ape.md
docs/methoddocs/api.md
docs/methoddocs/cli.md
docs/methoddocs/contracts.md
docs/methoddocs/exceptions.md
docs/methoddocs/managers.md
docs/methoddocs/plugins.md
docs/methoddocs/types.md
docs/methoddocs/utils.md
docs/userguides/config.md
docs/userguides/console.md
docs/userguides/plugins.md
docs/userguides/projects.md
docs/userguides/quickstart.md
docs/userguides/testing.md
docs/userguides/transactions.md
src/ape/__init__.py
src/ape/__modules__.py
src/ape/_cli.py
src/ape/_compat.py
src/ape/exceptions.py
src/ape/harambe.py
src/ape/logging.py
src/ape/py.typed
src/ape/version.py
src/ape/api/__init__.py
src/ape/api/accounts.py
src/ape/api/address.py
src/ape/api/compiler.py
src/ape/api/config.py
src/ape/api/convert.py
src/ape/api/explorers.py
src/ape/api/networks.py
src/ape/api/projects.py
src/ape/api/providers.py
src/ape/api/query.py
src/ape/api/transactions.py
src/ape/cli/__init__.py
src/ape/cli/arguments.py
src/ape/cli/choices.py
src/ape/cli/commands.py
src/ape/cli/options.py
src/ape/cli/paramtype.py
src/ape/cli/utils.py
src/ape/contracts/__init__.py
src/ape/contracts/_utils.py
src/ape/contracts/base.py
src/ape/managers/__init__.py
src/ape/managers/accounts.py
src/ape/managers/base.py
src/ape/managers/chain.py
src/ape/managers/compilers.py
src/ape/managers/config.py
src/ape/managers/converters.py
src/ape/managers/networks.py
src/ape/managers/query.py
src/ape/managers/project/__init__.py
src/ape/managers/project/dependency.py
src/ape/managers/project/manager.py
src/ape/managers/project/types.py
src/ape/plugins/__init__.py
src/ape/plugins/account.py
src/ape/plugins/compiler.py
src/ape/plugins/config.py
src/ape/plugins/converter.py
src/ape/plugins/network.py
src/ape/plugins/pluggy_patch.py
src/ape/plugins/project.py
src/ape/plugins/query.py
src/ape/pytest/README.md
src/ape/pytest/__init__.py
src/ape/pytest/contextmanagers.py
src/ape/pytest/fixtures.py
src/ape/pytest/plugin.py
src/ape/pytest/runners.py
src/ape/types/__init__.py
src/ape/types/signatures.py
src/ape/utils/__init__.py
src/ape/utils/abi.py
src/ape/utils/basemodel.py
src/ape/utils/github.py
src/ape/utils/misc.py
src/ape/utils/os.py
src/ape/utils/testing.py
src/ape_accounts/__init__.py
src/ape_accounts/_cli.py
src/ape_accounts/accounts.py
src/ape_accounts/py.typed
src/ape_compile/__init__.py
src/ape_compile/_cli.py
src/ape_compile/py.typed
src/ape_console/__init__.py
src/ape_console/_cli.py
src/ape_ethereum/__init__.py
src/ape_ethereum/_converters.py
src/ape_ethereum/ecosystem.py
src/ape_ethereum/py.typed
src/ape_ethereum/transactions.py
src/ape_geth/__init__.py
src/ape_geth/providers.py
src/ape_geth/py.typed
src/ape_init/__init__.py
src/ape_init/_cli.py
src/ape_networks/__init__.py
src/ape_networks/_cli.py
src/ape_plugins/__init__.py
src/ape_plugins/_cli.py
src/ape_plugins/utils.py
src/ape_pm/__init__.py
src/ape_pm/compiler.py
src/ape_pm/py.typed
src/ape_run/__init__.py
src/ape_run/_cli.py
src/ape_run/py.typed
src/ape_test/__init__.py
src/ape_test/_cli.py
src/ape_test/accounts.py
src/ape_test/providers.py
src/ape_test/py.typed
src/eth_ape.egg-info/PKG-INFO
src/eth_ape.egg-info/SOURCES.txt
src/eth_ape.egg-info/dependency_links.txt
src/eth_ape.egg-info/entry_points.txt
src/eth_ape.egg-info/not-zip-safe
src/eth_ape.egg-info/requires.txt
src/eth_ape.egg-info/top_level.txt
tests/README.md
tests/__init__.py
tests/conftest.py
tests/functional/__init__.py
tests/functional/conftest.py
tests/functional/test_accounts.py
tests/functional/test_chain.py
tests/functional/test_config.py
tests/functional/test_contracts.py
tests/functional/test_ethereum.py
tests/functional/test_exceptions.py
tests/functional/test_logging.py
tests/functional/test_networks.py
tests/functional/test_project.py
tests/functional/test_provider.py
tests/functional/test_utils.py
tests/functional/api/__init__.py
tests/functional/api/test_query.py
tests/functional/conversion/test_ether.py
tests/functional/conversion/test_timestamp.py
tests/functional/data/contracts/solidity_contract.json
tests/functional/data/contracts/vyper_contract.json
tests/functional/data/manifests/OpenZeppelin/v3.1.0/OpenZeppelin.json
tests/functional/data/manifests/OpenZeppelin/v4.4.2/OpenZeppelin.json
tests/functional/geth/__init__.py
tests/functional/geth/test_providers.py
tests/integration/__init__.py
tests/integration/cli/__init__.py
tests/integration/cli/conftest.py
tests/integration/cli/test_accounts.py
tests/integration/cli/test_compile.py
tests/integration/cli/test_console.py
tests/integration/cli/test_misc.py
tests/integration/cli/test_networks.py
tests/integration/cli/test_plugins.py
tests/integration/cli/test_run.py
tests/integration/cli/test_test.py
tests/integration/cli/utils.py
tests/integration/cli/projects/__init__.py
tests/integration/cli/projects/empty-config/ape-config.yaml
tests/integration/cli/projects/geth/ape-config.yaml
tests/integration/cli/projects/no-config/.gitkeep
tests/integration/cli/projects/one-interface/contracts/Interface-with-hyphens.json
tests/integration/cli/projects/one-interface/contracts/Interface.exclude.json
tests/integration/cli/projects/one-interface/contracts/Interface.json
tests/integration/cli/projects/one-interface/contracts/InterfaceWithNumber123.json
tests/integration/cli/projects/one-interface/contracts/Interface_with_underscores.json
tests/integration/cli/projects/only-dependency/ape-config.yaml
tests/integration/cli/projects/only-dependency/dependency_a/ape-config.yaml
tests/integration/cli/projects/only-dependency/dependency_a/sources/DependencyA.json
tests/integration/cli/projects/script/__init__.py
tests/integration/cli/projects/script/scripts/__init__.py
tests/integration/cli/projects/script/scripts/_utils.py
tests/integration/cli/projects/script/scripts/click.py
tests/integration/cli/projects/script/scripts/deploy.py
tests/integration/cli/projects/script/scripts/error.py
tests/integration/cli/projects/script/scripts/error_cli.py
tests/integration/cli/projects/script/scripts/site.py
tests/integration/cli/projects/test/tests/test_fixture_isolation.py
tests/integration/cli/projects/test/tests/test_misc.py
tests/integration/cli/projects/unregistered-contracts/contracts/Contract.test
tests/integration/cli/projects/unregistered-contracts/contracts/tests/TestContract.foobar
tests/integration/cli/projects/with-dependency/ape-config.yaml
tests/integration/cli/projects/with-dependency/contracts/Other.json
tests/integration/cli/projects/with-dependency/contracts/Project.json
tests/integration/cli/projects/with-dependency/dependency_a/ape-config.yaml
tests/integration/cli/projects/with-dependency/dependency_a/sources/DependencyA.json
tests/integration/cli/projects/with-dependency/dependency_b/ape-config.yaml
tests/integration/cli/projects/with-dependency/dependency_b/contracts/DependencyB.json
tests/integration/cli/projects/with-dependency/dependency_b/dependency_b_a/ape-config.yaml
tests/integration/cli/projects/with-dependency/dependency_b/dependency_b_a/contracts/DependencyBA.json
tests/integration/cli/projects/with-dependency/dependency_c/contracts/DependencyC.json