Remove some old config files

This commit is contained in:
Luke Van Seters 2021-09-20 13:25:21 -04:00
parent 576f7dc507
commit 747dc5dfe1
3 changed files with 1 additions and 26 deletions

View File

@ -1,7 +0,0 @@
[RPC]
Endpoint = http://localhost:8545/
[ADDRESSES]
UniswapV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
SushiswapV2Router = 0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F
WETH = 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

View File

@ -1,13 +0,0 @@
import os
import configparser
THIS_FILE_DIRECTORY = os.path.dirname(__file__)
CONFIG_PATH = os.path.join(THIS_FILE_DIRECTORY, "config.ini")
def load_config():
config = configparser.ConfigParser()
config.read(CONFIG_PATH)
return config

View File

@ -1,13 +1,8 @@
from typing import List, Optional
from mev_inspect.config import load_config
from mev_inspect.schemas import Block, Trace, TraceType
config = load_config()
rpc_url = config["RPC"]["Endpoint"]
weth_address = config["ADDRESSES"]["WETH"]
# w3 = Web3(HTTPProvider(rpc_url))
weth_address = "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
cache_directory = "./cache"