> ## Documentation Index
> Fetch the complete documentation index at: https://docs.livepeer.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Awesome Livepeer Changelog

> Commit history for Awesome Livepeer, a community curated list of projects, tutorials, demos, and resources within the Livepeer ecosystem.

export const CustomCardTitle = ({icon, title, variant = "card", iconSize, style = {}, className = "", ...rest}) => {
  const variants = {
    card: {
      display: 'flex',
      alignItems: 'center',
      gap: "var(--lp-spacing-2)",
      marginBottom: "var(--lp-spacing-3)",
      color: 'var(--lp-color-text-primary)',
      fontSize: '1rem',
      fontWeight: 600
    },
    accordion: {
      display: 'inline-flex',
      alignItems: 'center',
      gap: "var(--lp-spacing-2)"
    },
    tab: {
      display: 'inline-flex',
      alignItems: 'center',
      gap: '0.4rem',
      fontSize: '0.875rem'
    }
  };
  const sizes = {
    card: 20,
    accordion: 18,
    tab: 14
  };
  const size = iconSize || sizes[variant] || 20;
  const baseStyle = variants[variant] || variants.card;
  return variant === 'card' ? <div className={className} style={{
    ...baseStyle,
    ...style
  }} {...rest}>
      {typeof icon === 'string' ? <Icon icon={icon} size={size} color="var(--lp-color-accent)" /> : icon}
      {title}
    </div> : <span className={className} style={{
    ...baseStyle,
    ...style
  }} {...rest}>
      {typeof icon === 'string' ? <Icon icon={icon} size={size} color="var(--lp-color-accent)" /> : icon}
      {title}
    </span>;
};

export const Subtitle = ({style = {}, text, children, variant = 'default', fontSize = '', fontWeight = '', fontStyle = '', marginTop = '', marginBottom = '', color = '', className = '', ...rest}) => {
  const renderInlineCode = (value, keyPrefix) => {
    return value.split(/(`[^`]+`)/g).map((segment, index) => {
      if (segment.startsWith('`') && segment.endsWith('`')) {
        return <code key={`${keyPrefix}-code-${index}`}>{segment.slice(1, -1)}</code>;
      }
      return segment;
    });
  };
  const renderInlineMarkup = (value, keyPrefix = 'subtitle') => {
    if (typeof value !== 'string') {
      return value;
    }
    return value.split(/(\*\*[\s\S]+?\*\*)/g).map((segment, index) => {
      if (segment.startsWith('**') && segment.endsWith('**')) {
        const inner = segment.slice(2, -2);
        return <strong key={`${keyPrefix}-strong-${index}`}>
            {renderInlineCode(inner, `${keyPrefix}-strong-${index}`)}
          </strong>;
      }
      return renderInlineCode(segment, `${keyPrefix}-${index}`);
    });
  };
  const renderContent = (value, keyPrefix) => {
    if (Array.isArray(value)) {
      return value.map((item, index) => renderContent(item, `${keyPrefix}-${index}`));
    }
    return renderInlineMarkup(value, keyPrefix);
  };
  const variants = {
    default: {
      fontSize: '1rem',
      fontStyle: 'italic',
      color: 'var(--lp-color-accent)',
      marginBottom: 0
    },
    changelog: {
      fontSize: '0.8rem',
      fontStyle: 'normal',
      fontWeight: 700,
      color: 'var(--lp-color-text-primary)',
      marginBottom: 0
    }
  };
  const base = variants[variant] || variants.default;
  return <span className={className} style={{
    ...base,
    ...fontSize ? {
      fontSize
    } : {},
    ...fontWeight ? {
      fontWeight
    } : {},
    ...fontStyle ? {
      fontStyle
    } : {},
    ...marginTop ? {
      marginTop
    } : {},
    ...marginBottom ? {
      marginBottom
    } : {},
    ...color ? {
      color
    } : {},
    ...style
  }} {...rest}>
      {renderContent(text, 'text')}
      {renderContent(children, 'children')}
    </span>;
};

export const LazyLoad = ({children, height = "200px", offset = "200px", fadeDuration = 400, className = "", style = {}, ...rest}) => {
  const ref = useRef(null);
  const [visible, setVisible] = useState(false);
  const [ready, setReady] = useState(false);
  useEffect(() => {
    const el = ref.current;
    if (!el) return;
    const observer = new IntersectionObserver(([entry]) => {
      if (entry.isIntersecting) {
        setVisible(true);
        observer.disconnect();
      }
    }, {
      rootMargin: offset
    });
    observer.observe(el);
    return () => observer.disconnect();
  }, []);
  useEffect(() => {
    if (!visible) return;
    const frameId = requestAnimationFrame(() => {
      setReady(true);
    });
    return () => cancelAnimationFrame(frameId);
  }, [visible]);
  const placeholder = <div ref={ref} className={className} style={{
    minHeight: height,
    ...style
  }} {...rest} />;
  if (!visible) return placeholder;
  return <div ref={ref} className={className} style={{
    opacity: ready ? 1 : 0,
    transition: `opacity ${fadeDuration}ms ease-in`,
    ...style
  }} {...rest}>
      {children}
    </div>;
};

export const ScrollBox = ({children, maxHeight = 300, showHint = true, ariaLabel = "Scrollable content", style = {}, className = "", ...rest}) => {
  const contentRef = useRef(null);
  const [isOverflowing, setIsOverflowing] = useState(false);
  useEffect(() => {
    const checkOverflow = () => {
      if (contentRef.current) {
        const maxHeightPx = typeof maxHeight === "number" ? maxHeight : parseInt(maxHeight, 10) || 300;
        setIsOverflowing(contentRef.current.scrollHeight > maxHeightPx);
      }
    };
    checkOverflow();
    window.addEventListener("resize", checkOverflow);
    return () => window.removeEventListener("resize", checkOverflow);
  }, [maxHeight, children]);
  return <div className={className} style={{
    position: "relative",
    ...style
  }} {...rest}>
      <div ref={contentRef} role="region" tabIndex={0} aria-label={ariaLabel} style={{
    maxHeight: typeof maxHeight === "number" ? `${maxHeight}px` : maxHeight,
    overflowY: "auto",
    paddingRight: 4
  }} onScroll={e => {
    const el = e.target;
    const atBottom = el.scrollHeight - el.scrollTop <= el.clientHeight + 10;
    const hint = el.parentNode.querySelector("[data-scroll-hint]");
    if (hint) hint.style.opacity = atBottom ? "0" : "1";
  }}>
        {children}
      </div>
      {showHint && isOverflowing && <div data-scroll-hint style={{
    fontSize: 11,
    color: "var(--lp-color-text-muted)",
    textAlign: "center",
    marginTop: 8,
    transition: "opacity 0.2s"
  }}>
          Scroll for more ↓
        </div>}
    </div>;
};

export const DoubleIconLink = ({label = '', labelColor, href = '#', text = '', iconLeft = 'github', iconLeftColor, iconRight = 'arrow-up-right', iconRightColor = 'var(--lp-color-accent)', className = '', style = {}, ...rest}) => {
  return <span className={className} style={{
    whiteSpace: 'nowrap',
    display: 'inline-flex',
    alignItems: 'center',
    gap: "var(--lp-spacing-1)",
    marginLeft: '0.3rem',
    ...style
  }} {...rest}>
      {text && <span style={{
    marginRight: 8
  }}>{text}</span>}
      <Icon icon={iconLeft} color={iconLeftColor} />
      <a href={href} style={{
    color: {
      labelColor
    }
  }}>
        {label}
      </a>
      <div style={{
    marginRight: '0.3rem'
  }}>
        <Icon icon={iconRight} size={12} color={iconRightColor} />
      </div>
    </span>;
};

export const LinkArrow = ({href, label, description, newline = true, borderColor, className = '', style = {}, ...rest}) => {
  const linkArrowStyle = {
    display: 'inline-flex',
    alignItems: 'center',
    justifyContent: 'center',
    gap: "var(--lp-spacing-1)",
    width: 'fit-content',
    ...borderColor && ({
      borderColor
    })
  };
  return <span className={className} style={style} {...rest}>
      {newline && <br />}
      <span style={linkArrowStyle}>
        <a href={href} target="_blank" rel="noopener noreferrer">
          {label}
        </a>
        <Icon icon="arrow-up-right" size={14} color="var(--lp-color-accent)" />
      </span>
      {description && description}
      {description && <div style={{
    height: "var(--lp-spacing-3)"
  }} />}
    </span>;
};

export const InlineDivider = ({margin = "0.75rem 0", padding = "0", color = "var(--lp-color-border-default)", opacity = 0.4, height = "1px", className = "", style = {}, ...rest}) => <hr role="separator" className={className} style={{
  border: "none",
  margin,
  padding,
  height,
  backgroundColor: color,
  opacity,
  ...style
}} {...rest} />;

export const CustomDivider = ({color = "var(--lp-color-border-default)", middleText = "", spacing = "default", style = {}, className = "", ...rest}) => {
  const spacingPresets = {
    default: {
      margin: "24px 0"
    },
    overlap: {
      margin: "-1rem 0 -1rem 0"
    },
    tight: {
      margin: "0 0 -1rem 0"
    },
    section: {
      margin: "0 0 -2rem 0"
    },
    sectionOverlap: {
      margin: "-1rem 0 -2rem 0"
    },
    deepOverlap: {
      margin: "-1rem 0 -1.5rem 0"
    }
  };
  const spacingStyle = spacingPresets[spacing] || spacingPresets.default;
  return <div role="separator" aria-orientation="horizontal" className={className} style={{
    display: "flex",
    alignItems: "center",
    ...spacingStyle,
    fontSize: style?.fontSize || "16px",
    height: "fit-content",
    ...style
  }} {...rest}>
      <span style={{
    marginRight: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
      </span>
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      {middleText && <>
          <Icon icon="circle" size={2} />
          <span style={{
    margin: "0 8px",
    fontWeight: "bold",
    color: color,
    opacity: 0.7
  }}>
            {middleText}
          </span>
          <Icon icon="circle" size={2} />
        </>}
      <div style={{
    flex: 1,
    height: "1px",
    background: "var(--lp-color-border-default)",
    opacity: 0.4
  }}></div>
      <span style={{
    marginLeft: "var(--lp-spacing-px-8)",
    opacity: 0.2
  }}>
        <span style={{
    display: "inline-block",
    transform: "scaleX(-1)"
  }}>
          <Icon icon="/snippets/assets/logos/Livepeer-Logo-Symbol-Theme.svg" />
        </span>
      </span>
    </div>;
};

<Tip>
  This page is an automated workflow.
  <Subtitle variant="changelog" style={{fontSize: "0.95rem", marginTop: "0.25rem"}}>Subscribe to this changelog's <LinkArrow label="RSS Feed" href="/v2/resources/changelog/ecosystem/awesome-livepeer/rss.xml" newline={false} /></Subtitle>
</Tip>

<CustomDivider style={{margin: "-0.5rem 0 -1.5rem 0"}} />

Track changes to <LinkArrow label="Awesome Livepeer" href="https://github.com/livepeer/awesome-livepeer" newline={false} /> on GitHub.

<CustomDivider />

<Update label="docs: capitalize 'Blockchain' in README to satisfy lint (..." tags={["Commit"]} rss={{ title: "Awesome Livepeer: docs: capitalize 'Blockchain' in README to satisfy lint (...", description: "docs: capitalize 'Blockchain' in README to satisfy lint (#38)" }} description={<Subtitle variant="changelog">November 2025</Subtitle>}>
  ## docs: capitalize 'Blockchain' in README to satisfy lint (...

  <ScrollBox maxHeight="150px" showHint={false}>
    docs: capitalize 'Blockchain' in README to satisfy lint (#38)

    * docs: Capitalize 'Blockchain' in README to satisfy lint

    ***
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/faec6077ee8b57c8db209bfd6934a55e729fd051" iconLeft="github" />
</Update>

<Update label="chore: add @rickstaa as code owner (#37)" tags={["Commit"]} rss={{ title: "Awesome Livepeer: chore: add @rickstaa as code owner (#37)", description: "chore: add @rickstaa as code owner (#37)" }} description={<Subtitle variant="changelog">November 2025</Subtitle>}>
  ## chore: add @rickstaa as code owner (#37)

  <ScrollBox maxHeight="150px" showHint={false}>
    chore: add @rickstaa as code owner (#37)

    * Add CODEOWNERS file with @rickstaa as code owner

    ***
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/ad6868fcd5edc1d6f8ee03e84cf7809dcbba77b8" iconLeft="github" />
</Update>

<Update label="chore(deps): bump actions/upload-pages-artifact from 3 to..." tags={["Commit"]} rss={{ title: "Awesome Livepeer: chore(deps): bump actions/upload-pages-artifact from 3 to...", description: "chore(deps): bump actions/upload-pages-artifact from 3 to 4 (#34)" }} description={<Subtitle variant="changelog">October 2025</Subtitle>}>
  ## chore(deps): bump actions/upload-pages-artifact from 3 to...

  <ScrollBox maxHeight="150px" showHint={false}>
    chore(deps): bump actions/upload-pages-artifact from 3 to 4 (#34)
    Bumps [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) from 3 to 4.

    * [Release notes](https://github.com/actions/upload-pages-artifact/releases)
    * [Commits](https://github.com/actions/upload-pages-artifact/compare/v3...v4)

    ***

    updated-dependencies:

    * dependency-name: actions/upload-pages-artifact
      dependency-version: '4'
      dependency-type: direct:production
      update-type: version-update:semver-major
      ...
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/7d278c31279d048d03e45fc2b81673228292df50" iconLeft="github" />
</Update>

<Update label="docs: fix Community Arbitrum RPC link in README (#36)" tags={["Commit"]} rss={{ title: "Awesome Livepeer: docs: fix Community Arbitrum RPC link in README (#36)", description: "docs: fix Community Arbitrum RPC link in README (#36)" }} description={<Subtitle variant="changelog">October 2025</Subtitle>}>
  ## docs: fix Community Arbitrum RPC link in README (#36)

  <ScrollBox maxHeight="150px" showHint={false}>
    docs: fix Community Arbitrum RPC link in README (#36)
    Updated the link for Community Arbitrum RPC.
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/1a24b47e7a9297f39cd342ac6e4f40ee8fd11915" iconLeft="github" />
</Update>

<Update label="docs: add livepeer reward watcher (#35)" tags={["Commit"]} rss={{ title: "Awesome Livepeer: docs: add livepeer reward watcher (#35)", description: "docs: add livepeer reward watcher (#35)" }} description={<Subtitle variant="changelog">September 2025</Subtitle>}>
  ## docs: add livepeer reward watcher (#35)

  <ScrollBox maxHeight="150px" showHint={false}>
    docs: add livepeer reward watcher (#35)
    This commit adds the [Livepeer Reward
    Watcher](https://github.com/rickstaa/livepeer-reward-watcher)
    repository which can be used to monitor orchestrator rewards.
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/0ac8945489b995f689f0465479519e27b3af4093" iconLeft="github" />
</Update>

<Update label="fix: update suhail tutorial blog domains (#33)" tags={["Commit"]} rss={{ title: "Awesome Livepeer: fix: update suhail tutorial blog domains (#33)", description: "fix: update suhail tutorial blog domains (#33)" }} description={<Subtitle variant="changelog">August 2025</Subtitle>}>
  ## fix: update suhail tutorial blog domains (#33)

  fix: update suhail tutorial blog domains (#33)

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/fbf18363623122dd87c7a752fb05b6600775ee11" iconLeft="github" />
</Update>

<Update label="Merge branch 'main' of github.com:livepeer/awesome-livepeer" tags={["Commit"]} rss={{ title: "Awesome Livepeer: Merge branch 'main' of github.com:livepeer/awesome-livepeer", description: "Merge branch 'main' of github.com:livepeer/awesome-livepeer" }} description={<Subtitle variant="changelog">August 2025</Subtitle>}>
  ## Merge branch 'main' of github.com:livepeer/awesome-livepeer

  Merge branch 'main' of github.com:livepeer/awesome-livepeer

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/098d6e920ca53575b8f2f98daa0b954ab54dc8c5" iconLeft="github" />
</Update>

<Update label="fix: fix linting action syntax (#32)" tags={["Commit"]} rss={{ title: "Awesome Livepeer: fix: fix linting action syntax (#32)", description: "fix: fix linting action syntax (#32)" }} description={<Subtitle variant="changelog">August 2025</Subtitle>}>
  ## fix: fix linting action syntax (#32)

  <ScrollBox maxHeight="150px" showHint={false}>
    fix: fix linting action syntax (#32)
    Fixes a syntax error in the linting action.
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/5d35b6ee248677203b015fbb116e623a886582b8" iconLeft="github" />
</Update>

<Update label="Merge branch 'main' of github.com:livepeer/awesome-livepeer" tags={["Commit"]} rss={{ title: "Awesome Livepeer: Merge branch 'main' of github.com:livepeer/awesome-livepeer", description: "Merge branch 'main' of github.com:livepeer/awesome-livepeer" }} description={<Subtitle variant="changelog">August 2025</Subtitle>}>
  ## Merge branch 'main' of github.com:livepeer/awesome-livepeer

  Merge branch 'main' of github.com:livepeer/awesome-livepeer

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/c4f93ad7d2d9fc479f8d5c9e159b0668e3ff4449" iconLeft="github" />
</Update>

<Update label="fix: fix broken links (#31)" tags={["Commit"]} rss={{ title: "Awesome Livepeer: fix: fix broken links (#31)", description: "fix: fix broken links (#31)" }} description={<Subtitle variant="changelog">August 2025</Subtitle>}>
  ## fix: fix broken links (#31)

  <ScrollBox maxHeight="150px" showHint={false}>
    fix: fix broken links (#31)
    Update broken pool links to point to the right url.
  </ScrollBox>

  <DoubleIconLink label="View commit on GitHub" href="https://github.com/livepeer/awesome-livepeer/commit/425170ac1e3a114e6efef55f34635cb5434c895f" iconLeft="github" />
</Update>
