Salmandabbakuti / lit-livepeer-stream-gating

livepeer stream acls with lit protocol

Home Page:lit-livepeer-stream-gating.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lit - Livepeer Starter

This is a starter project for building a Livepeer powered video streaming application with token gated access using Lit.

Getting Started

Rename .env.example to .env and update the values accordingly.

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

Access Control conditions:

For the purpose of this demo, we are using a Color Token NFT as an access control condition. Your stream viewers are required to have a Color Token NFT(CLRT). If they dont have one, Ask them to mint one here: https://color-marketplace.vercel.app/

You can use any access control conditions of Lit Protocol. For more info, visit: https://developer.litprotocol.com/coreConcepts/accessControl/intro

I'm planning to add user defined access control conditions in the future.

// Your stream viewers are required to have a Color Token NFT(CLRT)
const accessControlConditions = [
  {
    contractAddress: "0xB56946D84E4Dd277A8E575D5Dae551638010C6A8", // Color Token NFT address on Mumbai Testnet
    standardContractType: "ERC721",
    chain: "mumbai",
    method: "balanceOf",
    parameters: [":userAddress"],
    returnValueTest: {
      comparator: ">",
      value: "0"
    }
  }
];

Demo

livepeer-acl-error.mp4
lit-livepeer-v1-demo.mp4

About

livepeer stream acls with lit protocol

lit-livepeer-stream-gating.vercel.app


Languages

Language:JavaScript 80.6%Language:CSS 18.9%Language:Shell 0.5%