export function serializeInt64(
    value: bigint,
    options: ByteifyOptions = { endianess: ByteifyEndianess.LITTLE_ENDIAN }
): number[] {
    return serialize(value, NativeType.INT64, options);