2021-12-11 23:22:45 +01:00
|
|
|
package prefixes
|
|
|
|
|
2021-12-14 23:57:02 +01:00
|
|
|
const (
|
|
|
|
ClaimToSupport = 'K'
|
|
|
|
SupportToClaim = 'L'
|
|
|
|
|
|
|
|
ClaimToTXO = 'E'
|
|
|
|
TXOToClaim = 'G'
|
|
|
|
|
|
|
|
ClaimToChannel = 'I'
|
|
|
|
ChannelToClaim = 'J'
|
|
|
|
|
|
|
|
ClaimShortIdPrefix = 'F'
|
|
|
|
EffectiveAmount = 'D'
|
|
|
|
ClaimExpiration = 'O'
|
|
|
|
|
2021-12-15 00:40:04 +01:00
|
|
|
ActiveAmount = 'S'
|
2021-12-14 23:57:02 +01:00
|
|
|
ClaimTakeover = 'P'
|
|
|
|
PendingActivation = 'Q'
|
|
|
|
ActivatedClaimAndSupport = 'R'
|
|
|
|
|
|
|
|
Repost = 'V'
|
|
|
|
RepostedClaim = 'W'
|
|
|
|
|
|
|
|
Undo = 'M'
|
|
|
|
ClaimDiff = 'Y'
|
|
|
|
|
|
|
|
Tx = 'B'
|
|
|
|
BlockHash = 'C'
|
|
|
|
Header = 'H'
|
|
|
|
TxNum = 'N'
|
|
|
|
TxCount = 'T'
|
|
|
|
TxHash = 'X'
|
|
|
|
UTXO = 'u'
|
|
|
|
HashXUTXO = 'h'
|
|
|
|
HashXHistory = 'x'
|
|
|
|
DBState = 's'
|
|
|
|
ChannelCount = 'Z'
|
|
|
|
SupportAmount = 'a'
|
|
|
|
BlockTXs = 'b'
|
2021-12-11 23:22:45 +01:00
|
|
|
)
|