gitiumiota
Version:
IOTA Client Reference Implementation
12 lines (9 loc) • 501 B
text/typescript
export const HASH_TRYTE_SIZE = 81
export const TAG_TRYTE_SIZE = 27
export const SIGNATURE_MESSAGE_FRAGMENT_TRYTE_SIZE = 2187
export const TRANSACTION_TRYTE_SIZE = 2673
export const MAX_INDEX_DIFF = 1000
export const NULL_HASH_TRYTES = '9'.repeat(HASH_TRYTE_SIZE)
export const NULL_TAG_TRYTES = '9'.repeat(TAG_TRYTE_SIZE)
export const NULL_SIGNATURE_MESSAGE_FRAGMENT_TRYTES = '9'.repeat(SIGNATURE_MESSAGE_FRAGMENT_TRYTE_SIZE)
export const NULL_TRANSACTION_TRYTES = '9'.repeat(TRANSACTION_TRYTE_SIZE)