Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add some standard interfaces #102

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
2 changes: 2 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ repos:
args:
- -C
- --target-version=py38
- --line-length=88
- repo: https://github.com/PyCQA/flake8
rev: 3.9.2
hooks:
Expand All @@ -22,6 +23,7 @@ repos:
rev: v5.10.1
hooks:
- id: isort
args: ["--profile", "black", --line-length=88]

default_language_version:
python: python3.10
12 changes: 10 additions & 2 deletions boa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
import contextlib
import sys

from boa import interfaces
import eth.exceptions

from boa.debugger import BoaDebug
from boa.environment import Env, enable_pyevm_verbose_logging, patch_opcode
from boa.interpret import BoaError, load, load_abi, load_partial, loads, loads_abi, loads_partial
from boa.interpret import (
BoaError,
load,
load_abi,
load_partial,
loads,
loads_abi,
loads_partial,
)
from boa.precompile import precompile
from boa.test.strategies import fuzz
from boa.vyper.contract import check_boa_error_matches
Expand Down
Loading
Loading