19 lines
526 B
Python
19 lines
526 B
Python
# Whether an invitation is required to join.
|
|
TRADING_INVITE_REQUIRED = True
|
|
|
|
# Number of invites that a user gets when they sign up.
|
|
TRADING_FREE_INVITES = 3
|
|
|
|
# Number of accounts that a new user is allowed to create.
|
|
# Use `None` for unlimited.
|
|
TRADING_FREE_ACCOUNTS = 5
|
|
|
|
# Number of commodities that a user gets when they sign up.
|
|
TRADING_FREE_COMMODITIES = 1
|
|
|
|
# Maximum number of commodities allowed for a single IPO
|
|
TRADING_IPO_MAX = 5000000
|
|
|
|
# Minimum number of commodities allowed for a single IPO
|
|
TRADING_IPO_MIN = 100
|