Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions py_clob_client_v2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from .client import ClobClient
from .constants import CLOB_HOST
from .fees import adjust_buy_amount_for_fees
from .order_utils import SignatureTypeV2, Side
from .clob_types import (
Expand Down Expand Up @@ -48,6 +49,7 @@
__all__ = [
# Main client
"ClobClient",
"CLOB_HOST",
"SignatureTypeV2",
"Side",
# Fee utilities
Expand Down
3 changes: 3 additions & 0 deletions py_clob_client_v2/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# CLOB host
CLOB_HOST = "https://clob.polymarket.com"

# Access levels
L0 = 0
L1 = 1
Expand Down