{"id":28513814,"url":"https://github.com/livepeer/aptos-nft-dapp","last_synced_at":"2026-02-11T13:31:19.078Z","repository":{"id":82547575,"uuid":"542177936","full_name":"livepeer/Aptos-NFT-Dapp","owner":"livepeer","description":"Sample app for creating video NFTs with Livepeer SDK on the Aptos blockchain","archived":false,"fork":false,"pushed_at":"2022-10-18T16:53:58.000Z","size":1411,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-01-29T20:20:49.888Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"aptos-livepeer-nft-dapp.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/livepeer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-09-27T16:14:34.000Z","updated_at":"2023-01-26T20:00:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"d5bb1083-f917-4854-9832-b03d752d8ec2","html_url":"https://github.com/livepeer/Aptos-NFT-Dapp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/livepeer/Aptos-NFT-Dapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepeer%2FAptos-NFT-Dapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepeer%2FAptos-NFT-Dapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepeer%2FAptos-NFT-Dapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepeer%2FAptos-NFT-Dapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/livepeer","download_url":"https://codeload.github.com/livepeer/Aptos-NFT-Dapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livepeer%2FAptos-NFT-Dapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29333476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T12:42:24.625Z","status":"ssl_error","status_checked_at":"2026-02-11T12:41:23.344Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-09T01:08:01.497Z","updated_at":"2026-02-11T13:31:19.073Z","avatar_url":"https://github.com/livepeer.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aptos Video NFT Sample Dapp\n\nA sample app for creating video NFTs uisng Livepeer SDK on the Aptos blockchain.\n\n## Objectives\n\n* [ ] 🧱 Create a project directory\n* [ ] ⚙️ Install [NextJS w/Typescript](https://nextjs.org/docs/getting-started)\n* [ ] ⚙️ Install [Aptos SDK (Typescript)](https://aptos.dev/sdks/ts-sdk/typescript-sdk/)\n* [ ] ⚙️ Install [LivepeerJS SDK](https://livepeerjs.org/)\n* [ ] ⚙️ Install [Petra Wallet](https://aptos.dev/guides/building-wallet-extension/) and fund the wallet\n* [ ] ⚙️ Install [dotenv](https://www.npmjs.com/package/dotenv)\n\n## Initial Project Setup\n\n* [ ] 🧱 Create a directory and give it a name\n\n```sh\ncd mkdir aptos-nft-dapp\n```\n\n* [ ] 👣 Go into that directory\n\n```sh\ncd aptos-nft-dapp\n```\n\n* [ ] ⚙️ Install NextJS\n\n```sh\nnpx create-next-app@latest\n```\n\n* [ ] 📝 Follow the installation instructions and name your app\n\n* [ ] ⚙️ Install dotenv package\n\n```sh\nnpm install dotenv --save\n```\n\n* [ ] 🏃 Run the project\n\n```sh\nnpm run dev\n```\n\n* [ ] 🛠 Setup the environment variable\n\n  * [ ] 🤫 In the root directory of the project, create a file and name it `.env`, remember to also add it to your `.gitignore`\n\n  * [ ] 📝 Inside this file place your Livepeer API and APTOS private key from your wallet\n\n   `NEXT_PUBLIC_LIVEPEER_API=\"5dxxxxxxx-xxx-xxx-xxxx-xxxxxxxxx87\"`\n   `APTOS_PRIVATE_KEY=\"5dxxxxxxx-xxx-xxx-xxxx-xxxxxxxxx87\"`\n\n## Setting up the clients\n\n* [ ] 🧱 Setup the LivepeerJS, APTOS clients\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/_app.tsx#L1-L9)\n\n* [ ] 🧱 Provied the Livepeer API key and url to connect to Aptos devnet\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/_app.tsx#L11-L16)\n\n* [ ] 🧱 Wrap the clients around the main component\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/_app.tsx#L19-L28)\n\n## Creating Aptos Token\n\n* [ ] 🧱 Conncting to the Aptos devnet to verify the address and minting NFTs\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/api/create-aptos-token.ts)\n\n\n## Setting up the frontend\n\n* [ ] 🧱 Importing packages\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L1-L11)\n\n* [ ] 🧱 Delaring the global window object and checking for connection to Aptos\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L13)\n\n* [ ] 🧱 Setting state variables\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L19)\n\n* [ ] 🧱 Assigning Aptos client and verifying if connected to the Aptos blockchain\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L25-L30)\n\n* [ ] 🧱 Using Livepeer SDK to create assets\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L32)\n\n* [ ] 🧱 Using Livepeer SDK to retrieve information of assets\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L39)\n\n* [ ] 🧱 Using Livepeer SDK to to update assets\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L44)\n\n* [ ] 🧱 Implementing drag and drop feature for getting assets\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L46-L58)\n\n* [ ] 🧱 Verifying progress of assets in different stages from creating to uploading to IPFS\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L60-L78)\n\n* [ ] 🧱 Connecting to the Petra wallet\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L80-L91)\n\n* [ ] 🧱 Minting NFT on Aptos blockchain\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L93-L143)\n\n* [ ] 🧱 Create asset with Livepeer Studio\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L202)\n\n* [ ] 🧱 Get asset from Livepeer Studio and upload it to IPFS\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L215)\n\n* [ ] 🧱 Mint NFT on Aptos blockchain after providing NFT metadata\n\n  * [ ] ⌨️ Insert [this code](https://github.com/livepeer/Aptos-NFT-Dapp/blob/main/pages/index.tsx#L239)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivepeer%2Faptos-nft-dapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flivepeer%2Faptos-nft-dapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivepeer%2Faptos-nft-dapp/lists"}