lbry-sdk/lbry/wallet/constants.py

16 lines
250 B
Python
Raw Normal View History

2019-09-13 09:21:02 -04:00
TXO_TYPES = {
"stream": 1,
"channel": 2,
"support": 3,
2019-11-12 12:17:35 -05:00
"purchase": 4,
"collection": 5,
"repost": 6,
2019-09-13 09:21:02 -04:00
}
2019-11-13 17:50:35 -05:00
CLAIM_TYPES = [
TXO_TYPES['stream'],
TXO_TYPES['channel'],
TXO_TYPES['collection'],
TXO_TYPES['repost'],
2019-11-13 17:50:35 -05:00
]