File: src/Scale/Unsigned/U64.sol
U64
Kind: library
ABI Surface
Errors
error InvalidU64Length()
Function Surface
function encode(uint64 value) internal pure returns (bytes)- Encodes an
uint64into SCALE format (8-byte little-endian).
- Encodes an
function encodedSizeAt(bytes data, uint256 offset) internal pure returns (uint256)- Returns the number of bytes that a
uint64would occupy when SCALE-encoded.
- Returns the number of bytes that a
function decode(bytes data) internal pure returns (uint64)- Decodes SCALE-encoded bytes into an
uint64.
- Decodes SCALE-encoded bytes into an
function decodeAt(bytes data, uint256 offset) internal pure returns (uint64)- Decodes an
uint64at the specified offset.
- Decodes an
function toLittleEndian(uint64 value) internal pure returns (bytes8)- Converts an
uint64to little-endian bytes8
- Converts an