lbry-sdk/lbry/wallet/constants.py

16 lines
250 B
Python
Raw Normal View History

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
]