ordinals / ord

👁‍🗨 Rare and exotic sats
https://ordinals.com
Creative Commons Zero v1.0 Universal
3.85k stars 1.38k forks source link

Sat range parsing is slow #3918

Closed casey closed 1 month ago

casey commented 2 months ago

Sat ranges are stored in a compact 11 byte format in the index, but are loaded into a 16 byte (u64, u64). There are enough of them that this is slow, so we should probably just pass around the compact 11 byte format and only transform as needed.

casey commented 1 month ago

Fixed in #3963.