Files

5 lines
449 B
Markdown
Raw Permalink Normal View History

2021-05-24 14:41:38 -04:00
# Endian
[Endianness](https://en.wikipedia.org/wiki/Endianness) refers to the implies order of bytes for a given value.
Values are generally either [big-endian](/protocol/misc/endian/big), with the most significant bytes come first, or [little-endian](/protocol/misc/endian/little), with the least significant values first. Bitcoin Cash used a mix of little- and big-endian values, with little-endian byte order generally being used for integers.