titikshaha's picture
new files
8f82127
Raw
History Blame Contribute Delete
214 Bytes
import os
from dotenv import load_dotenv
load_dotenv()
#simply connect to polygon rpc
POLYGON_RPC_URL = os.getenv("POLYGON_RPC_URL")
if not POLYGON_RPC_URL:
raise ValueError("POLYGON_RPC_URL missing in .env")