15 lines
250 B
Python
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'],
|
|
]
|