atlas.config.yml 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690
  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. ## Rewards
  97. - Sign up to YouTube Partnership Program: 5000 Joy
  98. - Refer new program subscribers: 1000 Joy
  99. - For every new video synced from YouTube: 300 Joy
  100. ❗️ The tokens pool allocated for this program is limited, so the program has limited duration.
  101. ## Tiers Multiplier
  102. Based on the YouTube channel followers count, a popularity Tier is assigned to each participant. Popularity tier results in multiplication effect on all rewards of the program.
  103. - Tier 1 - x1 rewards - 50 to 5,000 subscribers
  104. - Tier 2 - x2.5 rewards - 5,000 to 50,000 subscribers
  105. - Tier 3 - x5 rewards - 50,000+ subscribers
  106. Referrals multiplier depends on the popularity tier of the channel signed up using referral link.
  107. ## Example Rewards Calculation
  108. For a channel with 7000 subscribers, which signed up and remained in the program with auto-sync service enabled for 1 month. During this month that channel uploaded 5 new videos to their YouTube channel, 2 videos directly to Joystream channel with manual upload, and successfully referred 3 other YouTube channels that had circa 10k subscribers each.
  109. In the end of this month, the payout to this channel's account will be:
  110. 5000 * 2.5 + 5 * 300 * 2.5 + 1000 * 3 * 2.5 = **23,750** JOY
  111. ## When you accept the Terms and Conditions you
  112. 1. Become enrolled to the YouTube Partnership Program.
  113. 2. Your YouTube channel information and email will be stored in the data base, operated by JS Genesis.
  114. 3. Qualify for the rewards paid in JOY tokens for signing up to to this program.
  115. 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.
  116. 5. Qualify for additional rewards paid in JOY tokens when other creators sign up to this program, referencing your channel as referrer.
  117. 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.
  118. Rewards are subject to the verified status of the channel, assigned by the program operators.
  119. # Terms and Conditions
  120. ## Who is the program for
  121. 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.
  122. ## Who Qualifies
  123. YouTube channel has to:
  124. 1. Be created not earlier than 90 days before the sign up.
  125. 2. Have at least 50 followers and the channel followers must be set to public view.
  126. 3. Have at least 10 videos, each created at least 30 days before the sign up.
  127. 4. Channel must be focussed on Web3/ Crypto content, matching one of the categories supported by $VITE_APP_NAME App.
  128. Newly created Joystream channel has to have description, avatar and background image set up. The criteria for qualification can be reviewed at any time without prior notice.
  129. ## How to sign up
  130. To sign up, user has to go through the onboarding flow provided in the [$VITE_APP_NAME web app](https://gleev.xyz/ypp) and authorise with the Google Account, connected to their YouTube channel. During the authorisation, the access to the YouTube content `youtube.readonly` scope, to fetch channel meta data and content information; and access to email address for the YouTube account has to be granted for the JSG operated Backend Application (API client) that connects to YouTube API.
  131. Mandatory fields need to be populated to the web input form to progress, such as email, video category, and terms and conditions need to be accepted.
  132. ## How to get rewards
  133. Verified YouTube creators will be offered compensation in JOY tokens, native asset of Joystream blockchain for the participation in the program. In order to earn rewards, participants need to complete the rewarded tasks, namely:
  134. 1. New sign up: Authorise with their YouTube channel and choose an optional opt in to auto-sync service. One-off compensation only for new sign ups.
  135. 2. Referral: Refer other YouTube Web3/ Crypto content creators to the program, which results in successful signups. It can be done by generating unique referral code (link), which can be followed to create new membership. Once successful the new memberships created with the referred link, this will result in rewards for the originating account. The same code can be used by multiple new joiners. Alternatively referred channels can enter referring channel name to the referral field during sign up flow.
  136. 3. Auto-synced content: Simply post new Web3 and Crypto-focussed videos to the connected YouTube channel, and remain opted in to the program and auto-sync feature till they are fully uploaded to your channel.
  137. ## How rewards are calculated
  138. Rewards are based on the popularity Tiers assigned to the channels upon program registration tiers are calculated based on the number of subscribers. The ranges of subscribers qualifying for each Tier can be reviewed and updated by the program operators at any time without prior notice.
  139. Your current Tier and tier information is contained in the Dashboard, available on the gleev.xyz/ypp page for the signed in members, already opted in to the program.
  140. Rewards are calculated based on the internal DB records, generated automatically or added by the JSG team operating the program.
  141. - For new signups, the sign up date will be reviewed in defining which period the payout should be made.
  142. - For referrals, each new channel who signs up adding the referrer's channel name to the referrer field in the onboarding flow generates a record of the referral. In the end of the related payment cycle, number of referring channel records for new sign up is multiplied by referral base payment and tier multiplier of the referring channel.
  143. - For the videos synced from YouTube, all video content will be monitored by program operator, Jsgenesis team and its partners. To qualify for compensation it has to adhere to reasonable quality, focus on Web3-Crypto topic, and match the category selected for the video. It must adhere to [Copyright Policy ](https://gleev.xyz/legal/copyright) and general [Terms of Service](https://gleev.xyz/legal/tos).
  144. To qualify for rewards the channel needs to be verified by JSGenesis team and/or its partners operating the program. This is a manual process, including visual review of the YouTube channel title, description and uploaded content. To be verified the content has to be of reasonable quality, focussing on Crypto/Web3 and match the selected category selected during upload.
  145. ## How rewards are paid
  146. 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.
  147. 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.
  148. 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.
  149. ## How to withdraw rewards
  150. 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.
  151. 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.
  152. ## Program Partners Terms and Conditions
  153. 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)
  154. ## Auto-sync service
  155. 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.
  156. 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.
  157. Account Info: email address.
  158. Channel Info: name, date created, URL, number of followers, number of comments, number of views, number of videos,
  159. Videos info: video titles, videos date uploaded, video subtitles.
  160. 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.
  161. 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.
  162. 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.
  163. ## License
  164. 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.
  165. 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.
  166. 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.
  167. License can be updated manually for each videos individually from the list of available options.
  168. ## Opt out
  169. 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.
  170. 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.
  171. Already uploaded content will remain on the platform but can be deleted by the user at any time.
  172. ## Termination
  173. 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.
  174. 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.
  175. ## Disclaimer
  176. 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.
  177. 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.
  178. 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.
  179. ## Severability
  180. 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.
  181. ## Limitation of Liability
  182. 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.
  183. ## Governing Law
  184. 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)
  185. ## Miscellaneous
  186. 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.
  187. nft:
  188. 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
  189. 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
  190. 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
  191. statusPollingInterval: 20000 # Interval for polling NFT status on VideoView in ms
  192. notifications:
  193. pollingInterval: 10000 # Interval for polling notifications in ms
  194. members:
  195. avatarServiceUrl: '$VITE_AVATAR_SERVICE_URL' # URL for avatar service - used to upload member's avatar
  196. 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
  197. playback:
  198. playbackRates: [2, 1.5, 1.25, 1, 0.5, 0.25] # Playback rates available in the player
  199. comments:
  200. reactions: # List of allowed comment reactions
  201. - id: 1
  202. emoji: '👍'
  203. name: 'like'
  204. - id: 2
  205. emoji: '❤️'
  206. name: 'love'
  207. - id: 3
  208. emoji: '😂'
  209. name: 'laugh'
  210. - id: 4
  211. emoji: '🤯'
  212. name: 'shock'
  213. - id: 5
  214. emoji: '😠'
  215. name: 'anger'
  216. content:
  217. 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
  218. 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.
  219. - id: '1' # Local category ID
  220. name: 'Science & Technology' # Display name of the category
  221. color: '#D92E61' # Color used in the UI for this category
  222. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/science-and-technology.svg' # URL for category icon SVG
  223. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/science-and-technology.webp' # URL for category cover image
  224. videoCategories: ['848-2'] # List of metaprotocol category IDs that should be included in this display category
  225. defaultVideoCategory: '848-2'
  226. - id: '2'
  227. name: 'Pets & Animals'
  228. color: '#E7BE2D'
  229. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/pets-and-animals.svg'
  230. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/pets-and-animals.webp'
  231. videoCategories: ['893-2']
  232. defaultVideoCategory: '893-2'
  233. - id: '3'
  234. name: 'Film & Animation'
  235. color: '#BD4BE4'
  236. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/film-and-animation.svg'
  237. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/film-and-animation.webp'
  238. videoCategories: ['888-2']
  239. defaultVideoCategory: '888-2'
  240. - id: '4'
  241. name: 'People & Blogs'
  242. color: '#BDE933'
  243. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/people-and-blogs.svg'
  244. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/people-and-blogs.webp'
  245. videoCategories: ['883-2']
  246. defaultVideoCategory: '883-2'
  247. - id: '5'
  248. name: 'Entertainment'
  249. color: '#54A7F0'
  250. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/entertainment.svg'
  251. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/entertainment.webp'
  252. videoCategories: ['878-2']
  253. defaultVideoCategory: '878-2'
  254. - id: '6'
  255. name: 'Education'
  256. color: '#DD379D'
  257. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/education.svg'
  258. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/education.webp'
  259. videoCategories: ['873-2']
  260. defaultVideoCategory: '873-2'
  261. - id: '7'
  262. name: 'Travel & Events'
  263. color: '#5A7AEE'
  264. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/travel-and-events.svg'
  265. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/travel-and-events.webp'
  266. videoCategories: ['868-2']
  267. defaultVideoCategory: '868-2'
  268. - id: '8'
  269. name: 'Sports'
  270. color: '#41EE5A'
  271. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/sports.svg'
  272. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/sports.webp'
  273. videoCategories: ['864-2']
  274. defaultVideoCategory: '864-2'
  275. - id: '9'
  276. name: 'Gaming'
  277. color: '#9455E8'
  278. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/gaming.svg'
  279. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/gaming.webp'
  280. videoCategories: ['860-2']
  281. defaultVideoCategory: '860-2'
  282. - id: '10'
  283. name: 'Comedy'
  284. color: '#4FE1F2'
  285. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/comedy.svg'
  286. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/comedy.webp'
  287. videoCategories: ['856-2']
  288. defaultVideoCategory: '856-2'
  289. - id: '11'
  290. name: 'Autos & Vehicles'
  291. color: '#6E5FEC'
  292. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/autos-and-vehicles.svg'
  293. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/autos-and-vehicles.webp'
  294. videoCategories: ['852-2']
  295. defaultVideoCategory: '852-2'
  296. - id: '12'
  297. name: 'Howto & Style'
  298. color: '#E57827'
  299. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/howto-and-style.svg'
  300. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/howto-and-style.webp'
  301. videoCategories: ['898-2']
  302. defaultVideoCategory: '898-2'
  303. - id: '13'
  304. name: 'Music'
  305. color: '#6EEC3A'
  306. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/music.svg'
  307. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/music.webp'
  308. videoCategories: ['905-2']
  309. defaultVideoCategory: '905-2'
  310. - id: '14'
  311. name: 'Nonprofits & Activism'
  312. color: '#E141D6'
  313. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/nonprofits-and-activism.svg'
  314. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/nonprofit-and-activism.webp'
  315. videoCategories: ['910-2']
  316. defaultVideoCategory: '910-2'
  317. - id: '15'
  318. name: 'News & Politics'
  319. color: '#48F0B3'
  320. iconUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/icons/news-and-politics.svg'
  321. coverImgUrl: 'https://eu-central-1.linodeobjects.com/atlas-assets/categories/atlas/images/news-and-politics.webp'
  322. videoCategories: ['915-2']
  323. defaultVideoCategory: '915-2'
  324. languages: # List of languages to be used in the app. Those will be used when setting video's language, for adding subtitles, etc.
  325. - isoCode: ar
  326. name: Arabic
  327. - isoCode: zh
  328. name: Chinese
  329. - isoCode: en
  330. name: English
  331. - isoCode: fr
  332. name: French
  333. - isoCode: de
  334. name: German
  335. - isoCode: ja
  336. name: Japanese
  337. - isoCode: ms
  338. name: Malay
  339. - isoCode: pt
  340. name: Portuguese
  341. - isoCode: ru
  342. name: Russian
  343. - isoCode: st
  344. name: Spanish
  345. - isoCode: am
  346. name: Amharic
  347. - isoCode: bn
  348. name: Bengali
  349. - isoCode: bg
  350. name: Bulgarian
  351. - isoCode: hr
  352. name: Croatian
  353. - isoCode: cs
  354. name: Czech
  355. - isoCode: da
  356. name: Danish
  357. - isoCode: dv
  358. name: Dutch
  359. - isoCode: et
  360. name: Estonian
  361. - isoCode: fj
  362. name: Filipino
  363. - isoCode: fi
  364. name: Finnish
  365. - isoCode: el
  366. name: Greek
  367. - isoCode: ha
  368. name: Hausa
  369. - isoCode: he
  370. name: Hebrew
  371. - isoCode: hu
  372. name: Hungarian
  373. - isoCode: ga
  374. name: Irish
  375. - isoCode: it
  376. name: Italian
  377. - isoCode: ko
  378. name: Korean
  379. - isoCode: lo
  380. name: Lao
  381. - isoCode: lv
  382. name: Latvian
  383. - isoCode: lt
  384. name: Lithuanian
  385. - isoCode: mt
  386. name: Maltese
  387. - isoCode: pl
  388. name: Polish
  389. - isoCode: pa
  390. name: Punjabi
  391. - isoCode: qu
  392. name: Romanian
  393. - isoCode: sk
  394. name: Slovak
  395. - isoCode: sl
  396. name: Slovenian
  397. - isoCode: sw
  398. name: Swahili
  399. - isoCode: sv
  400. name: Swedish
  401. - isoCode: ta
  402. name: Tamil
  403. - isoCode: th
  404. name: Thai
  405. - isoCode: tr
  406. name: Turkish
  407. - isoCode: ur
  408. name: Urdu
  409. - isoCode: vi
  410. name: Vietnamese
  411. - isoCode: yo
  412. name: Yoruba
  413. popularLanguages: ['en', 'ar', 'zh', 'fr', 'de', 'ja', 'ms', 'pt', 'ru', 'st']
  414. analytics:
  415. assetLogs: # Asset logs are used to track distributors performance
  416. url: '$VITE_ASSET_LOGS_URL'
  417. sentry: # Sentry can be used for capturing errors and logs from the app
  418. dsn: '$VITE_SENTRY_DSN' # Sentry DSN
  419. livesession: # Livesession can be used for user session recording
  420. id: '$VITE_LIVESESSION_ID'
  421. rootHostname: '$VITE_LIVESESSION_ROOT_HOSTNAME'
  422. usersnap: # Usersnap can be used to capture user feedback
  423. id: '$VITE_USERSNAP_ID'
  424. legal:
  425. termsOfService: |
  426. # Terms of Service
  427. Last updated on the 25th of January 2023
  428. 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.
  429. ## 1. Agreement to Terms
  430. 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.
  431. ## 2. Changes to Terms
  432. This Agreement may be modified or updated at the sole discretion of Company without notice. Your continued use of our Software is confirmation of your acceptance of the latest Agreement.
  433. ## 3. Privacy Policy
  434. Please see our Privacy Policy [(https://www.joystream.org/privacy-policy/)](https://www.joystream.org/privacy-policy/) for information regarding privacy.
  435. ## 4. Membership
  436. 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:
  437. - Losing passwords
  438. - Losing recovery seeds or mnemonics
  439. - Deleting accounts and backups
  440. - Security breaches
  441. Under no circumstance will Company take any responsibility for loss resulting from losing access to Membership or Keys.
  442. ## 5. User Conduct
  443. 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:
  444. - breach or infringe any copyright or intellectual property of any third party.
  445. - is abusive, malicious, threatening or unlawful in any way.
  446. 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.
  447. ## 6. Responsibilities and Risks
  448. 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.
  449. ## 7. Content Takedown Policy
  450. 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).
  451. ## 8. Governing Law
  452. These terms and conditions are governed by and construed in accordance with the laws of Norway.
  453. copyrightPolicy: |
  454. # DMCA Policy For Content Takedown
  455. Jsgenesis AS, the developers of the Joystream protocol, have established a copyright infringement policy in accordance with the Digital Millennium Copyright Act.
  456. 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.
  457. 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.
  458. 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.
  459. You can be held liable for damages, including costs and attorney fees, if you materially misrepresent that material or activity infringes on your copyright.
  460. # Requirements for DMCA Notices
  461. Your DMCA Notice must include all of the following information:
  462. - A physical or electronic signature of the copyright owner, or a person authorized to act on behalf of the copyright owner;
  463. - Identification (URL) of the copyrighted work or material being infringed upon;
  464. - 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;
  465. - Your full legal name, mailing address, telephone number, and email address where we can contact you;
  466. - 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
  467. - 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.
  468. # DMCA Agent Information
  469. Our dedicated email address for DMCA notifications is: abuse@jsgenesis.com.
  470. Alternatively you can contact us by post:
  471. Designated DMCA Agent Jsgenesis AS
  472. CO UMA Workspace Stenersgata 8
  473. Oslo, 0184 Norway
  474. Or by telephone: **+44789553019**
  475. # DMCA Counter Notification
  476. If your content has been mistakenly removed from our testnet, you can submit a DMCA Counter Notification using
  477. the same contact information shown above.
  478. Your DMCA Counter Notification must include all of the following information:
  479. - Your physical or electronic signature;
  480. - 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);
  481. - 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;
  482. - Your full legal name, mailing address, telephone number, and email address where we can contact you; and
  483. - 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.
  484. If we receive valid DMCA Counter Notification that meets the above requirements, we will forward a copy to the
  485. person who filed the original DMCA Notice. If we do not receive notice within 10 business days that the person
  486. who submitted the DMCA Notice is seeking a court order to prevent the infringement of the content at issue, we
  487. will replace or re-enable access to the content that was removed.
  488. # Content Licenses Supported By Joystream Platform
  489. 1. Joystream Standard License
  490. 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.
  491. For content automatically synced from Youtube via Youtube Partnership Programme, YouTube Standard License is substituted by Joystream Standard License.
  492. 2. CCO
  493. The CC0 (Public Domain Dedication) License allows creators to waive all rights to their creations and release them into the Public Domain
  494. For the synced videos with Creative Commons License, Auto-sync service assigns CCO license, explained below.
  495. More information can be found following [this link](https://creativecommons.org/share-your-work/public-domain/cc0)
  496. 3. Custom License
  497. Joystream channel operator may choose to add custom license to the uploaded content.
  498. 4. Other Licenses
  499. Other licenses supported by Joystream are:
  500. - 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.
  501. - 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.
  502. - 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.
  503. - 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.
  504. - 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.
  505. - 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.
  506. - 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.
  507. 5. License Config File
  508. 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)
  509. privacyPolicy: |
  510. # 1. Privacy Policy
  511. Last updated on the 23rd of February 2022
  512. ## 1.1 Agreement to the Policy
  513. 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
  514. 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.
  515. ## 1.2 Changes to Policy
  516. 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.
  517. ## 1.3 Information colleted
  518. 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. ‍
  519. 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.
  520. 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.
  521. 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.
  522. Company will not sell your data for advertising, or other purposes.
  523. # 2. Cookies Policy
  524. ## 2.1 What are Cookies?
  525. 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.
  526. Cookies can be persistent or session cookies.
  527. ## 2.2 How we use Cookies
  528. We use cookies for the following purposes our Service:
  529. - Provide Analytics
  530. - Store preferences
  531. - Persistant local storage of Keys and Membership.
  532. ## 2.3 Third-party Cookies
  533. 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:
  534. - Google Analytics
  535. - Mailchimp (Only when signing up for any of our newsletters)
  536. - Godaddy
  537. - Sentry
  538. ## 2.4 Regarding Your Cookies
  539. 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.
  540. 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.