Add .env.sample, update .gitignore, and implement ClobClient initialization

This commit is contained in:
Nawaz Haider
2026-01-01 18:56:35 +06:00
parent bac5bca57d
commit e28202828e
5 changed files with 94 additions and 1 deletions
+2
View File
@@ -1,6 +1,7 @@
import asyncio
from utils.logger import setup_logging
from utils.tokens import fetch_tokens
from utils.clob_client import init_clob_client
async def main():
@@ -8,6 +9,7 @@ async def main():
logger.info("Polymarket HFT Market Maker started")
up_token, down_token, market_slug = await fetch_tokens()
client = await init_clob_client()
if __name__ == "__main__":