lbry-sdk/lbry/wallet/constants.py
2020-01-01 15:57:56 -05:00

15 lines
250 B
Python

TXO_TYPES = {
"stream": 1,
"channel": 2,
"support": 3,
"purchase": 4,
"collection": 5,
"repost": 6,
}
CLAIM_TYPES = [
TXO_TYPES['stream'],
TXO_TYPES['channel'],
TXO_TYPES['collection'],
TXO_TYPES['repost'],
]