A Python library for interacting and working with the Woop blockchain.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
"""
|
|
|
|
Constants
|
|
|
|
"""
|
|
|
|
|
|
|
|
# localnet constants
|
|
|
|
DEFAULT_ENDPOINT = 'http://localhost:9500'
|
|
|
|
DEFAULT_TIMEOUT = 30
|
|
|
|
|
|
|
|
# staking percentage constants
|
|
|
|
PRECISION = 18
|
|
|
|
MAX_DECIMAL = 1000000000000000000
|
|
|
|
|
|
|
|
NAME_CHAR_LIMIT = 140
|
|
|
|
IDENTITY_CHAR_LIMIT = 140
|
|
|
|
WEBSITE_CHAR_LIMIT = 140
|
|
|
|
SECURITY_CONTACT_CHAR_LIMIT = 140
|
|
|
|
DETAILS_CHAR_LIMIT = 280
|
|
|
|
MIN_REQUIRED_DELEGATION = int( 10000 * 1e18 )
|