├── .gitignore ├── App.js ├── LICENSE ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── images │ ├── disc.png │ ├── floating-music-note.png │ ├── heart.png │ ├── home.png │ ├── message-circle.png │ ├── message.png │ ├── music-note.png │ ├── new-video.png │ ├── plus-button.png │ ├── reply.png │ ├── search.png │ └── user.png └── splash.png ├── babel.config.js ├── components ├── bottomtabs │ └── index.js └── player │ └── index.js ├── home └── index.js ├── lib └── getIPFSLink.js ├── package.json ├── queries └── index.js ├── routes └── index.js ├── utils └── index.js └── views └── home └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/images/disc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/disc.png -------------------------------------------------------------------------------- /assets/images/floating-music-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/floating-music-note.png -------------------------------------------------------------------------------- /assets/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/heart.png -------------------------------------------------------------------------------- /assets/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/home.png -------------------------------------------------------------------------------- /assets/images/message-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/message-circle.png -------------------------------------------------------------------------------- /assets/images/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/message.png -------------------------------------------------------------------------------- /assets/images/music-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/music-note.png -------------------------------------------------------------------------------- /assets/images/new-video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/new-video.png -------------------------------------------------------------------------------- /assets/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/plus-button.png -------------------------------------------------------------------------------- /assets/images/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/reply.png -------------------------------------------------------------------------------- /assets/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/search.png -------------------------------------------------------------------------------- /assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/images/user.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/bottomtabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/components/bottomtabs/index.js -------------------------------------------------------------------------------- /components/player/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/components/player/index.js -------------------------------------------------------------------------------- /home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/home/index.js -------------------------------------------------------------------------------- /lib/getIPFSLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/lib/getIPFSLink.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/package.json -------------------------------------------------------------------------------- /queries/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/queries/index.js -------------------------------------------------------------------------------- /routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/routes/index.js -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/utils/index.js -------------------------------------------------------------------------------- /views/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/livepeer-lens-shortvideos/HEAD/views/home/index.js --------------------------------------------------------------------------------