atlas.config.yml 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. general:
  2. appName: Atlas # Application name - used in the copy throughout the app, in index.html, open graph meta tags, etc. Don't use env variables here
  3. appDescription: 'The streaming platform empowering viewers, creators, and builders. Built on and operated by the Joystream blockchain and DAO.' # Application description - used in index.html meta tags
  4. appTagline: 'The streaming platform empowering viewers, creators, and builders. Built on and operated by the Joystream blockchain and DAO.'
  5. appId: '$VITE_APP_ID' # App ID for Apps as first-class citizens
  6. appTwitterId: '@JoystreamDAO' # Twitter handle for the app - used in open graph meta tags in HTML
  7. appUrl: 'https://play.joystream.org' # URL at which the app is hosted - used in open graph meta tags in HTML
  8. appGithubUrl: 'https://github.com/Joystream/atlas' # URL for Atlas GitHub repository - used in the footer
  9. appOgImgPath: '/og-image.webp' # Path to the open graph image - used in open graph meta tags in HTML
  10. pioneerMemberUrlPrefix: 'https://dao.joystream.org/#/members' # URL prefix for Pioneer member profile page - used to link to member details
  11. joystreamLandingPageUrl: 'https://www.joystream.org' # URL for Joystream landing page - used in the footer and in "Learn more" links
  12. joystreamDiscordUrl: 'https://discord.gg/DE9UN3YpRP' # URL for Joystream Discord - used for support when errors occur
  13. appContentFocus: 'web3 & crypto' # Content focus of given app. Provide a string, for example `web & crypto` or `sport`
  14. storage:
  15. assetResponseTimeout: 20000 # Timeout for asset response in ms - after this timeout, different distributor will be tried
  16. assetUploadStatusPollingInterval: 2000 # Interval for polling asset upload status in ms - polling begins once asset is uploaded and is finished once QN reports the asset as accepted
  17. uploadProcessingTimeout: 60000 # Timeout for processing uploaded asset in ms - after this timeout, upload will be considered failed
  18. minimumDistributorRefetchTime: 1000 # Minimum time before refetching distributors list in ms - refetching is done if certain bag is not found on any distributor
  19. geolocationServiceUrl: '$VITE_GEOLOCATION_SERVICE_URL' # URL for geolocation service - used to determine user's location to find the closest distributor
  20. channelBagPrefix: 'dynamic:channel:' # Prefix for channel bag ID - used to create a unique bag ID for each channel
  21. uploadPath: 'api/v1/files' # Path to Storage Node upload endpoint
  22. assetPath: 'api/v1/assets' # Path to Distributor Node asset endpoint
  23. joystream:
  24. tokenTicker: 'JOY' # Ticker for the token used in the app
  25. tokenPriceFeedUrl: null # URL for the token price feed - used to display token price in the app
  26. alternativeNodes:
  27. - name: 'Jsgenesis (Europe/UK)'
  28. url: 'wss://testnet-rpc-3-uk.joystream.org'
  29. - name: 'Jsgenesis (US/East)'
  30. url: 'wss://testnet-rpc-1-us.joystream.org'
  31. - name: 'JoystreamStats.Live'
  32. url: 'wss://pl.joystreamstats.live/rpc'
  33. - name: 'Local'
  34. url: 'ws://localhost:9944'
  35. features:
  36. ypp:
  37. landingPageOgTitle: null # Open graph title for YPP landing page - used in open graph meta tags in HTML
  38. landingPageOgDescription: null # Open graph description for YPP landing page - used in open graph meta tags in HTML
  39. landingPageOgImgPath: null # Path to the open graph image for the YPP landing page - if not set, the default image will be used
  40. googleConsoleClientId: '$VITE_GOOGLE_CONSOLE_CLIENT_ID'
  41. youtubeSyncApiUrl: '$VITE_YOUTUBE_SYNC_API_URL'
  42. suspendedSupportLink: https://discord.com/channels/811216481340751934/1053294778529353788 # Link that will be displayed for users suspended in YPP
  43. suspendedLinkText: '#ypp-support channel on our Discord server'
  44. youtubeCollaboratorMemberId: '$VITE_YOUTUBE_COLLABORATOR_MEMBER_ID'
  45. enrollmentReward: 5000 # Amount for successful enrollment in YPP in joystream.tokenTicker units.
  46. tiersDefinition: # Tiers for YouTube partner program rewards. You can provide maximum three tiers. Each tier should has own multiplier.
  47. tiers:
  48. - minimumSubscribers: 50
  49. multiplier: 1
  50. - minimumSubscribers: 5000
  51. multiplier: 2.5
  52. - minimumSubscribers: 50000
  53. multiplier: 5
  54. tiersTooltip: The more subscribers you have on YouTube, the higher the payouts in the program. For 5-50K subscribers, payouts are multiplied by 2.5, for more than 50K subscribers, payouts are 5x as high. Below displayed rewards are calculated for your channel.
  55. rewards:
  56. - title: Sign Up to YouTube Partner Program
  57. showInDashboard: false # Optional. If false the reward will be shown only on YouTube partner program landing page. Default true
  58. shortDescription: Connect your YouTube channels via a simple step-by-step flow and get your first reward.
  59. baseAmount: 5000 # Base amount that will be multiplied by tier multiplier
  60. - title: Sync videos from your YouTube channel
  61. shortDescription: Opt in to auto-sync feature upon sign up and all YouTube content will get uploaded to $VITE_APP_NAME automatically. Get paid for every new video synced to your $VITE_APP_NAME channel.
  62. stepsDescription: Publishing your existing and new content with $VITE_APP_NAME is the fastest way to earn more JOY tokens.
  63. steps:
  64. - Make sure the auto-sync feature enabled.
  65. - Wait till your videos get synced to your $VITE_APP_NAME channel.
  66. - Publish new videos to your YouTube channel.
  67. - Get rewarded for every new video synced to $VITE_APP_NAME.
  68. baseAmount: 300
  69. - title: Refer another YouTube creator
  70. shortDescription: Get JOY for every new creator who signs up to YPP program using your referral link. Referrals multiplier depends on the popularity tier of the channel signed up using referral link.
  71. stepsDescription: Earn when another YouTube creator signs up to the program by using your your referral link.
  72. steps:
  73. - Copy your link with get referral link button.
  74. - Send it to as many Web3 YouTube creators as you want.
  75. - Get rewarded for every new successful sign up, that uses your referral link. Referral reward depends on their popularity tier.
  76. - If signed up without the link they can simply add your channel name to the referral field in the registration flow.
  77. baseAmount:
  78. min: 1000
  79. max: 5000
  80. actionButtonText: Get referral link
  81. actionButtonAction: copyReferral
  82. widgets: # Widgets on Ypp landing page
  83. - title: Program details
  84. link: https://www.notion.so/joystream/YPP-programme-d492c2eb88ff4ace955b5f2902ec21fb
  85. linkText: Go to Notion # Used only on YPP Dashboard - if empty defaults to "Go to {title}"
  86. label: Notion # Used for YPP Dashboard to inform user which vendor given feature uses - if empty defaults to title
  87. icon: info # Optional icon to be displayed. Possible icons: message, info, tokenStack
  88. - title: Support
  89. link: https://discord.com/channels/811216481340751934/1053294778529353788
  90. linkText: Go to Discord
  91. label: Discord
  92. icon: message
  93. legal:
  94. yppTnC: |
  95. # YouTube Partnership Program (YPP)
  96. ## When you accept the Terms and Conditions you
  97. 1. Become enrolled to the YouTube Partnership Program.
  98. 2. Your YouTube channel information and email will be stored in the data base, operated by JS Genesis.
  99. 3. Qualify for the rewards paid in JOY tokens for signing up to to this program.
  100. 4. If you chose to opt in to auto-sync service, you grant permission for JS Genesis operated service to upload all videos from your YouTube channel to Joystream blockchain and storage system, available to display on $VITE_APP_NAME App or any other app connected to Joystream blockchain and qualify for the additional rewards paid in JOY tokens for new videos added to your Joystream channel via automatic upload service.
  101. 5. Qualify for additional rewards paid in JOY tokens when other creators sign up to this program, referencing your channel as referrer.
  102. 6. Will remain in the program unless access rights to $VITE_APP_NAME service is revoked from your google account settings, opt out is triggered from YPP dashboard or suspended by the members of JS Genesis team.
  103. Rewards are subject to the verified status of the channel, assigned by the program operators.
  104. ## YouTube Partnership Program Terms and Conditions
  105. ## Who is the program for
  106. The program is targeted at YouTube creators that already have a channel focussed on Crypto and Web3 content, with substantial published videos and subscribers. The program involves compensation in JOY tokens for YouTube creators who choose to opt in, meet the qualification criteria and perform actions that are linked to rewards.
  107. ## YPP Rewards and Key Information
  108. There is a separate document, [YouTube Partner Program Outline](https://www.notion.so/joystream/YouTube-Partner-Program-Outline-d492c2eb88ff4ace955b5f2902ec21fb?pvs=4). All the program particulars, such as: how to join YouTube Partnership Program, rewards calculation explanation and example, payment information are contained in the program document on Notion. The company has the right to update the terms of the program upon its discretion, unilaterally and without any prior notice. Significant changes will be communicated via public communication channels, such as Discord server or social media accounts.
  109. ## How YouTube Partnership Program rewards are paid
  110. When YouTube creators create Joystream channel app, they get an auto-generated polkadot account assigned to this channel automatically. This account is bound to their channel, and cannot be updated. This account can hold JOY tokens.
  111. The data collected and recorded in the internal DB with regards to uploaded content and referral stats will be informed with when deriving the cyclical rewards to the participating channels.
  112. Rewards are paid only for verified channels. Rewards are paid via direct transfers from JS Genesis specific account to the creators' Joystream channel account. Rewards are paid by JS Genesis company, from the funds (tokens) budgeted for the purpose of operational support.
  113. ## Other ways Joystream Channels can get rewards
  114. Joystream DAO operating model encapsulates rewards for Joystream channels paid out outside of the Youtube Partnership Program. Gleev Operator, JS Genesis AS has no responsibility or control over such mechanisms and they are listed below.
  115. 1. Payout Proposal to Channels by DAO Council.
  116. 2. Direct Payment from DAO Working Group Budget by WG Lead.
  117. 3. Direct Member Payments from any member of Joystream Network.
  118. ## How to withdraw rewards
  119. In order to create Joystream channel, a Joystream membership is required. It can be created free of charge using the $VITE_APP_NAME App, hosted on gleev.xyz or Pioneer app hosted on pioneerapp.xyz. Joystream membership requires a substrate account, created using any wallets compatible with Polkadot ecosystem.
  120. From the channel account JOY token can be transferred (withdrawn) to the member account via $VITE_APP_NAME app interfaces or polkadot.js app (calling transfer extrinsic). This transaction must be signed with the membership controller account, that was used to create Joystream channel.
  121. ## Program Partners Terms and Conditions
  122. If you opt in to the Auto-sync feature you also agree to [YouTube's Terms of Service (https://www.youtube.com/t/terms)](https://www.youtube.com/t/terms) and [Google's Privacy Policy (https://www.google.com/policies/privacy).](https://www.google.com/policies/privacy)
  123. ## Auto-sync service
  124. In order to simplify the upload of content to $VITE_APP_NAME App, JS Genesis team has built a dedicated backend application, integrated with YouTube and $VITE_APP_NAME to facilitate the content upload. It is hosted on the JSGenesis operated infrastructure and operated by JS Genesis team.
  125. This requests access to the necessary information via YouTube API, namely "read_only" scope to your YouTube channel data. This happens during the authorisation flow as part of the YPP program onboarding. The App fetches only the information that YouTube exposes in the read_only scope and required to effectively operate the program via the open API.
  126. Account Info: email address.
  127. Channel Info: name, date created, URL, number of followers, number of comments, number of views, number of videos,
  128. Videos info: video titles, videos date uploaded, video subtitles.
  129. If auto-sync service is enabled, it will refetch channel information once every 24 hours, and poll video information once every 30 minutes to detect new uploads and automatically upload them to your $VITE_APP_NAME Channel.
  130. Only public videos are synced. Videos are synced in resolution of 720px or lower. HD videos will be supported as the program matures. Subtitles synced only in English, and all other languages are not supported at the time of program launch, but will be supported in the future. The queue of syncing is defined based on the proprietary algorithm developed and maintained by JSGenesis team. It may be updated at any time without prior notice.
  131. If access of the JSGenesis operated backend app to your YouTube channel is disabled on the side of Google account, then you are automatically opted out from the YPP program and no longer qualify for rewards.
  132. #### Rights of Jsgenesis and Third Party Applications
  133. Accepting these terms and conditions between the creator and JS Genesis AS, warrants the rights for $VITE_APP_NAME App to sync the content from creator’s YouTube Channel with the Joystream Network.
  134. Syncing content means replicating or uploading the creator’s content to the storage nodes and make it available to content distribution nodes of Joystream Network infrastructure which is operated by Joystream DAO. The content record of ownership by the channel created by YouTube creators signing up to YouTube Partnership Program, is kept on the Joystream Blockchain, that is a public ledger. Joystream platform is an open source project and its operating model implies multiple Apps and Gateways connected to Joystream blockchain and network infrastructure.
  135. Synced content can be monetized by any participants of the Joystream Network, and specifically gateways (Apps) connected to Joystream blockchain and infrastructure. All connected Apps can distribute, display and monetize creator's video content and its attributes, such as likes by members of network, comments, reactions, metadata of channel and membership owning the video content.
  136. Creator has the rights to claim monetization of their content as part of general platform T&Cs, and the compensation in JOY tokens from JS Genesis AS for the synced content from YouTube as part of the YouTube Partnership Program agreement.
  137. For the full duration of the content existing on Joystream Network and as long as creator does not delete their content and/or channel from the blockchain, any third party application can use the content of such channel as described in this paragraph. This applies even to the cases when Jsgenesis AS is no longer operating $VITE_APP_NAME App and seizes to exist as a legal entity.
  138. ## License
  139. Auto-sync service will read the videos meta-data fields, including title, description, date created, duration, language and license and transfer them to the newly created video on the creators Joystream channel.
  140. In case the original YouTube video license was set to Standard-YouTube-License, such videos will be assigned Joystream-license, limiting the replication and usage of such content without the explicit consent of the author.
  141. In case the original YouTube video license was set to Creative Commons, such videos will be assigned CC0 license, allowing all viewers to distribute such videos freely in the public domain, allowing them to be built upon, enhanced and reused by others for any purpose without restrictions.
  142. License can be updated manually for each videos individually from the list of available options.
  143. ## Opt out
  144. Channel can opt out from auto-sync feature by choosing this option in the settings tab of the YPP dashboard. Opting out from Auto-sync would stop automated upload of all new content published to YouTube channel, but would keep the $VITE_APP_NAME channel in the YPP program, meaning that referral rewards can still be collected.
  145. Opting out from the entire program can also be done from the settings tab. This will result the channel marked in the internal data base as "opted-out" and payout calculation for this channel will stop for any activities undertaken.
  146. Already uploaded content will remain on the platform but can be deleted by the user at any time.
  147. ## Termination
  148. Any channel can be suspended from the program at any time without any disclosure of the reason. The reasons can be for violating the adherence to the content vertical policy, and continuously posting videos that do not match the content expectation/ category requirements.
  149. If the channel is suspended from the program, it can no longer re-apply with the same credentials and can barred indefinitely or for the period to the discretion of JS Genesis team.
  150. ## Disclaimer
  151. Your use of our Services is at your sole risk. Our Services are provided “as is" and “as available" without warranties of any kind, either express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, title, and non-infringement. In addition, the Company does not represent or warrant that our Services are accurate, complete, reliable, current or error-free. While the Company attempts to make your access to and use of our Services safe, we cannot and do not represent or warrant that our Services or servers are free of viruses or other harmful components. You assume the entire risk as to the quality and performance of the Services.
  152. Manual process is involved, so errors are not inevitable. JSG team is not liable for any reconciliations, but is committed to spend reasonable efforts to support all participants in reconciliation of rewards calculation where it deems to be operationally viable and commercially sensible to do so.
  153. JSG team is not liable or obliged to do the payments and in case of errors will seek to provide the support in reconciliation of payments but not be obliged for channel rewards. In case of any disputes over content quality and qualification for rewards, JSG has no liability to compensate the channels and these terms are not binding, but payouts are made on total discretion of the $VITE_APP_NAME App operator and the JS Genesis AS team. In case program budget runs out before some of the apps are paid, there is no obligation to pay late subscribers.
  154. ## Severability
  155. If any term, clause or provision of these Terms is held invalid or unenforceable, then that term, clause or provision will be severable from these Terms and will not affect the validity or enforceability of any remaining part of that term, clause or provision, or any other term, clause or provision of these Terms.
  156. ## Limitation of Liability
  157. The Company and the other Company Parties will not be liable to you under any theory of liability—whether based in contract, tort, negligence, strict liability, warranty, or otherwise—for any indirect, consequential, exemplary, incidental, special or punitive damages or lost profits, even if the Company or the other Company Parties have been advised of the possibility of such damages.
  158. ## Governing Law
  159. Governing law of these terms are the same as the general Terms of Service for $VITE_APP_NAME App as described on [this page](https://gleev.xyz/legal/tos)
  160. ## Miscellaneous
  161. These Terms constitutes the agreement between you and the Company relating to your access to and use of the Services of YouTube Partnership Program. We may assign our rights and obligations under these Terms. Under no circumstances may you assign your rights and obligations under these Terms, including in the event of change of control or by operation of law, without our prior written consent. The failure of the Company to exercise or enforce any right or provision of these Terms will not operate as a waiver of such right or provision. We will not be liable for any delay or failure to perform any obligation under these Terms. Except as otherwise provided in herein, the agreement is intended solely for the benefit of the parties and are not intended to confer third-party beneficiary rights upon any other person or entity.
  162. nft:
  163. auctionMinimumBidStepMultiplier: 0.02 # Multiplier for the auction's starting price used to determine auction's minimum bid step. See more: https://joystream.gitbook.io/testnet-workspace/system/content-directory/nft#auction
  164. openAuctionBidLockDuration: 300 # Number of blocks for which bids on open auctions are locked from withdrawal. See more: https://joystream.gitbook.io/testnet-workspace/system/content-directory/nft#auction-type
  165. englishAuctionExtensionPeriod: 5 # Number of blocks from the auction's end during which auction will be extended if a bid is placed. See more: https://joystream.gitbook.io/testnet-workspace/system/content-directory/nft#auction-type
  166. statusPollingInterval: 20000 # Interval for polling NFT status on VideoView in ms
  167. notifications:
  168. pollingInterval: 10000 # Interval for polling notifications in ms
  169. members:
  170. avatarServiceUrl: '$VITE_AVATAR_SERVICE_URL' # URL for avatar service - used to upload member's avatar
  171. hcaptchaSiteKey: '$VITE_HCAPTCHA_SITE_KEY' # Site key for hCaptcha - used to verify users are not bots when creating memberships - depends on hCaptcha being enabled in the faucet
  172. playback:
  173. playbackRates: [2, 1.5, 1.25, 1, 0.5, 0.25] # Playback rates available in the player
  174. comments:
  175. reactions: # List of allowed comment reactions
  176. - id: 1
  177. emoji: '👍'
  178. name: 'like'
  179. - id: 2
  180. emoji: '❤️'
  181. name: 'love'
  182. - id: 3
  183. emoji: '😂'
  184. name: 'laugh'
  185. - id: 4
  186. emoji: '🤯'
  187. name: 'shock'
  188. - id: 5
  189. emoji: '😠'
  190. name: 'anger'
  191. content:
  192. officialJoystreamChannelId: null # ID of the official Joystream channel to display "Official Joystream updates" section on the homepage - can be set to null to disable this section
  193. categories: # List of display categories to be used in the app. Those are local to the application and are related to metaprotocol categories via 'videoCategories' array.
  194. - id: '1' # Local category ID
  195. name: 'Science & Technology' # Display name of the category
  196. color: '#D92E61' # Color used in the UI for this category
  197. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/science-and-technology.svg' # URL for category icon SVG
  198. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/science-and-technology.webp' # URL for category cover image
  199. videoCategories: ['848-2'] # List of metaprotocol category IDs that should be included in this display category
  200. defaultVideoCategory: '848-2'
  201. - id: '2'
  202. name: 'Pets & Animals'
  203. color: '#E7BE2D'
  204. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/pets-and-animals.svg'
  205. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/pets-and-animals.webp'
  206. videoCategories: ['893-2']
  207. defaultVideoCategory: '893-2'
  208. - id: '3'
  209. name: 'Film & Animation'
  210. color: '#BD4BE4'
  211. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/film-and-animation.svg'
  212. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/film-and-animation.webp'
  213. videoCategories: ['888-2']
  214. defaultVideoCategory: '888-2'
  215. - id: '4'
  216. name: 'People & Blogs'
  217. color: '#BDE933'
  218. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/people-and-blogs.svg'
  219. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/people-and-blogs.webp'
  220. videoCategories: ['883-2']
  221. defaultVideoCategory: '883-2'
  222. - id: '5'
  223. name: 'Entertainment'
  224. color: '#54A7F0'
  225. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/entertainment.svg'
  226. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/entertainment.webp'
  227. videoCategories: ['878-2']
  228. defaultVideoCategory: '878-2'
  229. - id: '6'
  230. name: 'Education'
  231. color: '#DD379D'
  232. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/education.svg'
  233. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/education.webp'
  234. videoCategories: ['873-2']
  235. defaultVideoCategory: '873-2'
  236. - id: '7'
  237. name: 'Travel & Events'
  238. color: '#5A7AEE'
  239. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/travel-and-events.svg'
  240. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/travel-and-events.webp'
  241. videoCategories: ['868-2']
  242. defaultVideoCategory: '868-2'
  243. - id: '8'
  244. name: 'Sports'
  245. color: '#41EE5A'
  246. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/sports.svg'
  247. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/sports.webp'
  248. videoCategories: ['864-2']
  249. defaultVideoCategory: '864-2'
  250. - id: '9'
  251. name: 'Gaming'
  252. color: '#9455E8'
  253. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/gaming.svg'
  254. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/gaming.webp'
  255. videoCategories: ['860-2']
  256. defaultVideoCategory: '860-2'
  257. - id: '10'
  258. name: 'Comedy'
  259. color: '#4FE1F2'
  260. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/comedy.svg'
  261. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/comedy.webp'
  262. videoCategories: ['856-2']
  263. defaultVideoCategory: '856-2'
  264. - id: '11'
  265. name: 'Autos & Vehicles'
  266. color: '#6E5FEC'
  267. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/autos-and-vehicles.svg'
  268. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/autos-and-vehicles.webp'
  269. videoCategories: ['852-2']
  270. defaultVideoCategory: '852-2'
  271. - id: '12'
  272. name: 'Howto & Style'
  273. color: '#E57827'
  274. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/howto-and-style.svg'
  275. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/howto-and-style.webp'
  276. videoCategories: ['898-2']
  277. defaultVideoCategory: '898-2'
  278. - id: '13'
  279. name: 'Music'
  280. color: '#6EEC3A'
  281. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/music.svg'
  282. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/music.webp'
  283. videoCategories: ['905-2']
  284. defaultVideoCategory: '905-2'
  285. - id: '14'
  286. name: 'Nonprofits & Activism'
  287. color: '#E141D6'
  288. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/nonprofits-and-activism.svg'
  289. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/nonprofit-and-activism.webp'
  290. videoCategories: ['910-2']
  291. defaultVideoCategory: '910-2'
  292. - id: '15'
  293. name: 'News & Politics'
  294. color: '#48F0B3'
  295. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/news-and-politics.svg'
  296. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/news-and-politics.webp'
  297. videoCategories: ['915-2']
  298. defaultVideoCategory: '915-2'
  299. languages: # List of languages to be used in the app. Those will be used when setting video's language, for adding subtitles, etc.
  300. - isoCode: ar
  301. name: Arabic
  302. - isoCode: zh
  303. name: Chinese
  304. - isoCode: en
  305. name: English
  306. - isoCode: fr
  307. name: French
  308. - isoCode: de
  309. name: German
  310. - isoCode: ja
  311. name: Japanese
  312. - isoCode: ms
  313. name: Malay
  314. - isoCode: pt
  315. name: Portuguese
  316. - isoCode: ru
  317. name: Russian
  318. - isoCode: st
  319. name: Spanish
  320. - isoCode: am
  321. name: Amharic
  322. - isoCode: bn
  323. name: Bengali
  324. - isoCode: bg
  325. name: Bulgarian
  326. - isoCode: hr
  327. name: Croatian
  328. - isoCode: cs
  329. name: Czech
  330. - isoCode: da
  331. name: Danish
  332. - isoCode: dv
  333. name: Dutch
  334. - isoCode: et
  335. name: Estonian
  336. - isoCode: fj
  337. name: Filipino
  338. - isoCode: fi
  339. name: Finnish
  340. - isoCode: el
  341. name: Greek
  342. - isoCode: ha
  343. name: Hausa
  344. - isoCode: he
  345. name: Hebrew
  346. - isoCode: hu
  347. name: Hungarian
  348. - isoCode: ga
  349. name: Irish
  350. - isoCode: it
  351. name: Italian
  352. - isoCode: ko
  353. name: Korean
  354. - isoCode: lo
  355. name: Lao
  356. - isoCode: lv
  357. name: Latvian
  358. - isoCode: lt
  359. name: Lithuanian
  360. - isoCode: mt
  361. name: Maltese
  362. - isoCode: pl
  363. name: Polish
  364. - isoCode: pa
  365. name: Punjabi
  366. - isoCode: qu
  367. name: Romanian
  368. - isoCode: sk
  369. name: Slovak
  370. - isoCode: sl
  371. name: Slovenian
  372. - isoCode: sw
  373. name: Swahili
  374. - isoCode: sv
  375. name: Swedish
  376. - isoCode: ta
  377. name: Tamil
  378. - isoCode: te
  379. name: Telugu
  380. - isoCode: th
  381. name: Thai
  382. - isoCode: tr
  383. name: Turkish
  384. - isoCode: uk
  385. name: Ukrainian
  386. - isoCode: ur
  387. name: Urdu
  388. - isoCode: vi
  389. name: Vietnamese
  390. - isoCode: yo
  391. name: Yoruba
  392. popularLanguages: ['en', 'ar', 'zh', 'fr', 'de', 'ja', 'ms', 'pt', 'ru', 'st']
  393. analytics:
  394. assetLogs: # Asset logs are used to track distributors performance
  395. url: '$VITE_ASSET_LOGS_URL'
  396. sentry: # Sentry can be used for capturing errors and logs from the app
  397. dsn: '$VITE_SENTRY_DSN' # Sentry DSN
  398. livesession: # Livesession can be used for user session recording
  399. id: '$VITE_LIVESESSION_ID'
  400. rootHostname: '$VITE_LIVESESSION_ROOT_HOSTNAME'
  401. usersnap: # Usersnap can be used to capture user feedback
  402. id: '$VITE_USERSNAP_ID'
  403. GA: # Google Analytics
  404. id: '$VITE_GA_ID'
  405. segment: # Segment Analytics
  406. id: '$VITE_SEGMENT_ID'
  407. legal:
  408. termsOfService: |
  409. # Terms of Service
  410. Last updated on the 29th of May 2023
  411. This Terms of Service ("Agreement") is a binding obligation between you ("User") and Jsgenesis AS ("Company", "We", "Us", "Our") for use of our Joystream Player interface ("$VITE_APP_NAME") hosted at play.joystream.org and all other products (collectively "Software") developed and published by Us.
  412. ## 1. Agreement to Terms
  413. By using Our Software, the User is agreeing to be bound by this Agreement. If you are acting on behalf of another company or an employer, you must have the rights to act on their behalf.
  414. ## 2. Changes to Terms
  415. This Agreement may be modified or updated at the sole discretion of Company in a unilateral way, without prior notice. In case of significant change of terms the Company takes the obligation to take reasonable efforts to notify its customers about the change of the Terms.
  416. This may take a non-personalised form, such as a banner in the app for all users, post on Company's Discord server channel or Company's social media accounts. It is your obligation to follow the Company's communication channels to stay informed about the changes.
  417. Upon the receipt of the notification you may choose to continue using the software, or conduct cessation of services via request to remove your membership and channel from Joystream Network. This request must be sent via email to leave@jsgenesis.com.
  418. Your continued use of our Software is confirmation of your acceptance of the latest Agreement.
  419. ## 3. Privacy Policy
  420. Please see our Privacy Policy [(https://www.joystream.org/privacy-policy/)](https://www.joystream.org/privacy-policy/) for information regarding privacy.
  421. ## 4. Membership
  422. By generating private/public cryptographic keys ("Keys") or applying for a membership account ("Membership"), you accept the risk of losing access to your Keys and Membership. Reasons include, but are not limited to:
  423. - Losing passwords
  424. - Losing recovery seeds or mnemonics
  425. - Deleting accounts and backups
  426. - Security breaches
  427. Under no circumstance will Company take any responsibility for loss resulting from losing access to Membership or Keys.
  428. ## 5. User Conduct
  429. By using Our Software, you agree to not state, write, link to, download, distribute, share or encourage other users to state, write, link to, download, distribute, share or encourage anything that:
  430. - breach or infringe any copyright or intellectual property of any third party.
  431. - is abusive, malicious, threatening or unlawful in any way.
  432. Company has not reviewed all content published on our services, and is not responsible for content submitted or provided by individuals or groups not directly tied to them.
  433. ## 6. Responsibilities and Risks
  434. In no event shall Company, its contractors, employees or owners be liable for any damage or loss of any kind to User arising out of the use or inability to use any Software made by Company. In no event shall Company, its contractors, employees or owners be liable for any damage or loss of any kind to User resulting of clicking links, following guides, using software or doing anything else recommended by Company.
  435. ## 7. Content Takedown Policy
  436. Jsgenesis has established a policy for content takedowns in accordance with the Digital Millennium Copyright Act (DMCA) which can be viewed at [https://play.joystream.org/legal/copyright](https://play.joystream.org/legal/copyright).
  437. ## 8. Governing Law
  438. These terms and conditions are governed by and construed in accordance with the laws of Norway.
  439. copyrightPolicy: |
  440. # DMCA Policy For Content Takedown
  441. Jsgenesis AS, the developers of the Joystream protocol, have established a copyright infringement policy in accordance with the Digital Millennium Copyright Act.
  442. Copyright owners and their agents may notify us in cases where content hosted on our testnets (available publicly at [https://play.joystream.org](https://play.joystream.org) and [https://testnet.joystream.org](https://testnet.joystream.org)) infringes on their copyrights by sending a DMCA notice to us using the contact information below.
  443. Upon receipt of a valid and complete notice, we will remove the content from our public-facing applications as quickly as possible. We may also suspend the ability of the uploader to participate further on our testnet.
  444. Where possible, we will attempt to notify the alleged infringer of the takedown, with a copy of your DMCA Notice, using the contact information provided to us.
  445. You can be held liable for damages, including costs and attorney fees, if you materially misrepresent that material or activity infringes on your copyright.
  446. # Requirements for DMCA Notices
  447. Your DMCA Notice must include all of the following information:
  448. - A physical or electronic signature of the copyright owner, or a person authorized to act on behalf of the copyright owner;
  449. - Identification (URL) of the copyrighted work or material being infringed upon;
  450. - Description of the work or material that you claim to be infringing and would like to be removed, including information regarding its location (URL) with enough detail so that we can and verify it;
  451. - Your full legal name, mailing address, telephone number, and email address where we can contact you;
  452. - A statement that you have a good faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and
  453. - A statement that the information in your DMCA Notice is accurate, and under penalty of perjury, that you are the copyright owner or are authorized to act on behalf of the copyright owner.
  454. # DMCA Agent Information
  455. Our dedicated email address for DMCA notifications is: abuse@jsgenesis.com.
  456. Alternatively you can contact us by post:
  457. Designated DMCA Agent Jsgenesis AS
  458. CO UMA Workspace Stenersgata 8
  459. Oslo, 0184 Norway
  460. Or by telephone: **+44789553019**
  461. # DMCA Counter Notification
  462. If your content has been mistakenly removed from our testnet, you can submit a DMCA Counter Notification using
  463. the same contact information shown above.
  464. Your DMCA Counter Notification must include all of the following information:
  465. - Your physical or electronic signature;
  466. - Identification (URL) of the material that has been removed or to which access has been disabled and the location at which the material appeared before it was removed or access to it was disabled (the description from the DMCA Notice is acceptable);
  467. - A statement under penalty of perjury that you have a good faith belief that the material was removed or disabled as a result of mistake or misidentification of the material to be removed or disabled;
  468. - Your full legal name, mailing address, telephone number, and email address where we can contact you; and
  469. - A statement that you consent to the jurisdiction of Federal District Court for the judicial district in which your address is located, or if your address is outside of the United States, for any judicial district in which Jsgenesis may be found, and that you will accept service of process from the person who provided the DMCA Notice or an agent of such person.
  470. If we receive valid DMCA Counter Notification that meets the above requirements, we will forward a copy to the
  471. person who filed the original DMCA Notice. If we do not receive notice within 10 business days that the person
  472. who submitted the DMCA Notice is seeking a court order to prevent the infringement of the content at issue, we
  473. will replace or re-enable access to the content that was removed.
  474. # Content Licenses Supported By Joystream Platform
  475. 1. Joystream Standard License
  476. Joystream Standard License is the default setting for all uploads. It allows creators to retain all ownership over their content, which published on Joystream network storage nodes, while giving any App built and operated by JS Genesis, Joystream DAO or external operators that work with Joystream Blockchain to broadcast this content.
  477. For content automatically synced from Youtube via Youtube Partnership Programme, YouTube Standard License is substituted by Joystream Standard License.
  478. 2. CCO
  479. The CC0 (Public Domain Dedication) License allows creators to waive all rights to their creations and release them into the Public Domain
  480. For the synced videos with Creative Commons License, Auto-sync service assigns CCO license, explained below.
  481. More information can be found following [this link](https://creativecommons.org/share-your-work/public-domain/cc0)
  482. 3. Custom License
  483. Joystream channel operator may choose to add custom license to the uploaded content.
  484. 4. Other Licenses
  485. Other licenses supported by Joystream are:
  486. - PDM - Public Domain - For items which are not protected by copyright. This is not a license, but rather a copyright status. Some government-produced works, items with expired copyrights, and those which are ineligible for copyright protection may be included in this category.
  487. - CC BY - Creative Commons Attribution License - Sharing and adapting this content is permitted, but attribution must be provided. Read the License Deed for more information.
  488. - CC_BY_SA - Creative Commons Attribution-ShareAlike License - Sharing and adapting this content is permitted, but attribution must be provided. Any derivative works must be distributed under the same license. Read the License Deed for more information.
  489. - CC_BY_ND - Creative Commons Attribution-NoDerivs License - Sharing this content is permitted, but attribution must be provided. You may not remix, transform, or build upon the material. Read the License Deed for more information.
  490. - CC_BY_NC - Creative Commons Attribution-NonCommercial License. Sharing and adapting this content is permitted, but attribution must be provided. Commercial use is not permitted. Read the License Deed for more information.
  491. - CC_BY_NC_SA - Creative Commons Attribution-NonCommercial-ShareAlike License - Sharing and adapting this content is permitted, but attribution must be provided. Any derivative works must be distributed under the same license. Commercial use is not permitted. Read the License Deed for more information.
  492. - CC_BY_NC_ND - Creative Commons Attribution-NonCommercial-NoDerivs License. Sharing this content is permitted, but attribution must be provided. You may not remix, transform, or build upon the material. Commercial use is not permitted. Read the License Deed for more information.
  493. 5. License Config File
  494. Licenses supported may be updated at any time and full set of licenses that are available for selection in the App upon video upload or uploaded via Command Line interface are contained in [this file](https://github.com/Joystream/atlas/blob/master/packages/atlas/src/data/knownLicenses.json)
  495. privacyPolicy: |
  496. # 1. Privacy Policy
  497. Last updated on the 23rd of February 2022
  498. ## 1.1 Agreement to the Policy
  499. By using any of Our Software, the User are accepting this Privacy Policy. If you are acting on behalf of another company or an employer, you must have the rights to act on their behalf. The Privacy Policy is not extended to any of our newsletters, where Users are bound by the privacy policy of Mailchimp
  500. The Privacy Policy does not apply to any other third party services including, but not limited to, applications, websites, tools or software, even if accessible through links or guides in our Software.
  501. ## 1.2 Changes to Policy
  502. This Privacy Policy may be changed at the sole discretion of Company. If any material changes are made, the User will be notified in the Service that is used. Note that adding new products to be included in the term Software, e.g. a new User facing product replacing the App or a new tool for uploading Content, is not considered material as it will not affect Users unless they adopt the new product. Changing software names, terminology used in this Privacy Policy, and changing link locations are also examples of non-material changes.
  503. ## 1.3 Information colleted
  504. All data written to the Blockchain, is implicitly collected not only by Company, but also anyone else in the world that is running the Full Node locally, or accessed via the App or a third party. This includes, but is not limited to, Content hashes, Membership profile, Memo field, and any other way a User can record data on the Blockchain. ‍
  505. When using the faucet subpage of the Website, Company will record the IP address behind every new request for tokens. This data will be deleted every 14 days.
  506. Company uses Google Analytics, with IP anonymization, to collect statistics on Website and the version of App hosted by us. All customisable data sharing settings are turned off to improve the privacy of Users.
  507. Company also uses Livesession to help us find bugs, improve UX and more by using session replays. Sensitive data such as passwords and IP addresses are anonymized.
  508. Company will not sell your data for advertising, or other purposes.
  509. # 2. Cookies Policy
  510. ## 2.1 What are Cookies?
  511. Cookies are small pieces of text sent by your web browser by a website you visit. A cookie file is stored in your web browser and allows the Service or a third-party to recognise you and make your next visit easier and the Service more useful to you.
  512. Cookies can be persistent or session cookies.
  513. ## 2.2 How we use Cookies
  514. We use cookies for the following purposes our Service:
  515. - Provide Analytics
  516. - Store preferences
  517. - Persistant local storage of Keys and Membership.
  518. ## 2.3 Third-party Cookies
  519. In addition to our own cookies, we also use various third-party cookies to report usage statistics of the Service, deliver advertisements on and through the Service, and so on. They include:
  520. - Google Analytics
  521. - Mailchimp (Only when signing up for any of our newsletters)
  522. - Godaddy
  523. - Sentry
  524. ## 2.4 Regarding Your Cookies
  525. If you would like to delete cookies or instruct your web browser to delete or refuse cookies, please visit the help pages of your web browser.
  526. Please note, however, that if you delete cookies or refuse to accept them, you might not be able to use all of the features we offer, you may not be able to store your preferences, and some of our pages might not display properly.