Skip to content

Commit

Permalink
Reorganize
Browse files Browse the repository at this point in the history
  • Loading branch information
BowTiedDevil committed Mar 17, 2024
1 parent f7f53e8 commit 0f355c9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/degenbot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .arbitrage.flash_borrow_to_router_swap import FlashBorrowToRouterSwap
from .arbitrage.uniswap_curve_cycle import UniswapCurveCycle
from .arbitrage.uniswap_lp_cycle import UniswapLpCycle
from .bundle.block_builder import BuilderEndpoint
from .builder_endpoint import BuilderEndpoint
from .chainlink import ChainlinkPriceContract
from .config import get_web3, set_web3
from .curve.curve_stableswap_liquidity_pool import CurveStableswapPool
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
from eth_account.signers.local import LocalAccount
from hexbytes import HexBytes

from ..config import get_web3
from ..exceptions import ExternalServiceError
from ..functions import eip_191_hash
from .config import get_web3
from .exceptions import ExternalServiceError
from .functions import eip_191_hash


class BuilderEndpoint:
Expand Down
Empty file removed src/degenbot/bundle/__init__.py
Empty file.
Empty file removed tests/bundle/__init__.py
Empty file.
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import degenbot.bundle
import degenbot.fork
import eth_account
import pytest
from degenbot.bundle.block_builder import BuilderEndpoint
from degenbot.builder_endpoint import BuilderEndpoint
from eth_account.signers.local import LocalAccount

BEAVERBUILD_URL = "https://rpc.beaverbuild.org"
Expand Down

0 comments on commit 0f355c9

Please sign in to comment.