lbry-sdk/lbry/wallet/constants.py

23 lines
324 B
Python
Raw Normal View History

2020-01-03 04:18:49 +01:00
NULL_HASH32 = b'\x00'*32
CENT = 1000000
COIN = 100*CENT
TIMEOUT = 30.0
2019-09-13 15:21:02 +02:00
TXO_TYPES = {
"stream": 1,
"channel": 2,
"support": 3,
2019-11-12 18:17:35 +01:00
"purchase": 4,
"collection": 5,
"repost": 6,
2019-09-13 15:21:02 +02:00
}
2019-11-13 23:50:35 +01:00
CLAIM_TYPES = [
TXO_TYPES['stream'],
TXO_TYPES['channel'],
TXO_TYPES['collection'],
TXO_TYPES['repost'],
2019-11-13 23:50:35 +01:00
]