@powerhousedao/academy 0.1.0-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (226) hide show
  1. package/.vscode/settings.json +3 -0
  2. package/CHANGELOG.md +9 -0
  3. package/Dockerfile +31 -0
  4. package/ProcFile +1 -0
  5. package/README.md +43 -0
  6. package/babel.config.js +3 -0
  7. package/blog/BeyondCommunication-ABlueprintForDevelopment.md +88 -0
  8. package/blog/TheChallengeOfChange.md +86 -0
  9. package/blog/images/Iteration.png +0 -0
  10. package/blog/images/RAD.png +0 -0
  11. package/docs/academy/01-GetStarted/00-GetStarted.mdx +181 -0
  12. package/docs/academy/01-GetStarted/01_InstallDemoPackage.md +38 -0
  13. package/docs/academy/01-GetStarted/02-ToDoList/01-CreateNewPowerhouseProject.md +97 -0
  14. package/docs/academy/01-GetStarted/02-ToDoList/02-DefineToDoListDocumentModel.md +86 -0
  15. package/docs/academy/01-GetStarted/02-ToDoList/03-ImplementOperationReducers.md +201 -0
  16. package/docs/academy/01-GetStarted/02-ToDoList/04-BuildToDoListEditor.md +494 -0
  17. package/docs/academy/01-GetStarted/02-ToDoList/_category_.json +8 -0
  18. package/docs/academy/01-GetStarted/02-ToDoList/images/DocumentModelHeader.png +0 -0
  19. package/docs/academy/01-GetStarted/02-ToDoList/images/DocumentModelOperations.png +0 -0
  20. package/docs/academy/01-GetStarted/02-ToDoList/images/OpenDocumentModelEditor.gif +0 -0
  21. package/docs/academy/01-GetStarted/02-ToDoList/images/completeEditor.png +0 -0
  22. package/docs/academy/01-GetStarted/02-ToDoList/images/connectApp.gif +0 -0
  23. package/docs/academy/01-GetStarted/02-ToDoList/images/form.png +0 -0
  24. package/docs/academy/01-GetStarted/02-ToDoList/images/mytodolist.gif +0 -0
  25. package/docs/academy/01-GetStarted/02-ToDoList/images/reducers.png +0 -0
  26. package/docs/academy/01-GetStarted/02-ToDoList/images/vscode.png +0 -0
  27. package/docs/academy/01-GetStarted/styles.module.css +99 -0
  28. package/docs/academy/02-AdvancedTutorial/01-Create/00-BuilderTools.md +234 -0
  29. package/docs/academy/02-AdvancedTutorial/01-Create/01-SetupBuilderEnvironment.md +247 -0
  30. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/04-UtilitiesAndTips.md +79 -0
  31. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/01-SetupBuilderEnvironment.md +216 -0
  32. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/02-CreateNewPowerhouseProject.md +78 -0
  33. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/03-DefineChatroomDocumentModel.md +139 -0
  34. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/04-ImplementOperationReducers.md +364 -0
  35. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/05-ImplementChatroomEditor.md +194 -0
  36. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/06-LaunchALocalReactor.md +15 -0
  37. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/_category_.json +8 -0
  38. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-1.png +0 -0
  39. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-2.png +0 -0
  40. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-3.png +0 -0
  41. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-4.png +0 -0
  42. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-5.png +0 -0
  43. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image.png +0 -0
  44. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/ChatRoomConnectApp.gif +0 -0
  45. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/ChatRoomTest.gif +0 -0
  46. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/completeEditor.png +0 -0
  47. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/form.png +0 -0
  48. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/reducers.png +0 -0
  49. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/vscode.png +0 -0
  50. package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/_category_.json +8 -0
  51. package/docs/academy/02-AdvancedTutorial/01-Create/02-StandardDocumentModelWorkflow.md +229 -0
  52. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/01-BuildingBeautifulDocumentEditors.md +109 -0
  53. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/02-ConfiguringDrives.md +51 -0
  54. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/03-BuildingADriveExplorer.md +174 -0
  55. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/01-OperationHistory.md +67 -0
  56. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/02-RevisionHistoryTimeline.md +132 -0
  57. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/_category_.json +7 -0
  58. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/committer-address-popup.png +0 -0
  59. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/revision-hash-popup.png +0 -0
  60. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/revision-history-list.png +0 -0
  61. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/signature-details-popup.png +0 -0
  62. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/_category_.json +8 -0
  63. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/images/CreateDrive.png +0 -0
  64. package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/images/mytodolist.gif +0 -0
  65. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/01-ReadingAndWritingThroughTheAPI.mdx +121 -0
  66. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/02-GraphQLAtPowerhouse.md +156 -0
  67. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/02-GraphQLAndSubgraphs.mdx +119 -0
  68. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/03-WorkingWithSubgraphs.md +312 -0
  69. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/_category_.json +8 -0
  70. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/04-analytics-processor.md +342 -0
  71. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/01-SetupBuilderEnvironment.md +215 -0
  72. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/02-CreateNewPowerhouseProject.md +55 -0
  73. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/03-GenerateAnAnalyticsProcessor.md +173 -0
  74. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/04-UpdateAnalyticsProcessor.md +223 -0
  75. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/_category_.json +8 -0
  76. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-SPV.gif +0 -0
  77. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-a-new-asset.png +0 -0
  78. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-a-transaction.gif +0 -0
  79. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Transaction-table.png +0 -0
  80. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/create-a-new-RWA-document.gif +0 -0
  81. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/granularity.png +0 -0
  82. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/QueryingADocumentWithGraphQL.md +244 -0
  83. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/listener-raw.png +0 -0
  84. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/raw-reports1.png +0 -0
  85. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/raw-reports2.png +0 -0
  86. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/rwaRegister.png +0 -0
  87. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/apse.png +0 -0
  88. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/best-practices.md +60 -0
  89. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/filter.png +0 -0
  90. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/filteroptions.png +0 -0
  91. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/graphql/index.md +166 -0
  92. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/graphql/integration.md +75 -0
  93. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/dbs.png +0 -0
  94. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/high-level.jpg +0 -0
  95. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/indexeddb.png +0 -0
  96. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/libs-core.jpg +0 -0
  97. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/libs.jpg +0 -0
  98. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/lod.jpg +0 -0
  99. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/logo.png +0 -0
  100. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/navbar.png +0 -0
  101. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-1.jpg +0 -0
  102. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-2.jpg +0 -0
  103. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-3.jpg +0 -0
  104. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-4.jpg +0 -0
  105. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-5.jpg +0 -0
  106. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-6.jpg +0 -0
  107. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/paths-1.jpg +0 -0
  108. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/paths-2.jpg +0 -0
  109. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/intro.md +149 -0
  110. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/benchmarks.md +27 -0
  111. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/browser.md +77 -0
  112. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/compatibility.md +14 -0
  113. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/index.md +230 -0
  114. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/memory.md +72 -0
  115. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/pg.md +63 -0
  116. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/schema.md +14 -0
  117. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/utilities.md +102 -0
  118. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/index.md +7 -0
  119. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/maker.md +652 -0
  120. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/processors.md +3 -0
  121. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/_category_.json +8 -0
  122. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/OperationHistory.png +0 -0
  123. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/OperationsQuery.png +0 -0
  124. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/QueryDocumentID.png +0 -0
  125. package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/SwitchboardButton.png +0 -0
  126. package/docs/academy/02-AdvancedTutorial/05-Launch/00-IntegrateInAFront-End +3 -0
  127. package/docs/academy/02-AdvancedTutorial/05-Launch/01-IntroducingFusion +18 -0
  128. package/docs/academy/02-AdvancedTutorial/05-Launch/02-IntroductionToPackages.md +79 -0
  129. package/docs/academy/02-AdvancedTutorial/05-Launch/02-PublishYourProject.md +230 -0
  130. package/docs/academy/02-AdvancedTutorial/05-Launch/03-RunOnACloudServer.md +279 -0
  131. package/docs/academy/02-AdvancedTutorial/05-Launch/03-SetupEnvironment.md +436 -0
  132. package/docs/academy/02-AdvancedTutorial/05-Launch/04-GraphQLNamespacing +44 -0
  133. package/docs/academy/02-AdvancedTutorial/05-Launch/05-LaunchYourBackend.md +3 -0
  134. package/docs/academy/02-AdvancedTutorial/05-Launch/06-LaunchYourFrontend.md +3 -0
  135. package/docs/academy/02-AdvancedTutorial/05-Launch/_category_.json +8 -0
  136. package/docs/academy/02-AdvancedTutorial/05-Launch/images/SSHConnection.png +0 -0
  137. package/docs/academy/02-AdvancedTutorial/05-Launch/images/homedesign.png +0 -0
  138. package/docs/academy/02-AdvancedTutorial/05-Launch/images/keyconcepts.png +0 -0
  139. package/docs/academy/02-AdvancedTutorial/05-Launch/images/tutorialschema.png +0 -0
  140. package/docs/academy/02-AdvancedTutorial/06-Authorization/Authorization.md +100 -0
  141. package/docs/academy/02-AdvancedTutorial/_category_.json +7 -0
  142. package/docs/academy/03-APIReferences/00-PowerhouseCLI.md +1 -0
  143. package/docs/academy/03-APIReferences/_category_.json +7 -0
  144. package/docs/academy/04-ComponentLibrary/01-PowerhouseDesignSystem.md +94 -0
  145. package/docs/academy/04-ComponentLibrary/02-BuildingWithScalars.md +54 -0
  146. package/docs/academy/04-ComponentLibrary/03-Scalar-Components/01-phid-field.mdx +72 -0
  147. package/docs/academy/04-ComponentLibrary/03-Scalar-Components/02-input-field.mdx +0 -0
  148. package/docs/academy/04-ComponentLibrary/04-Complex-Components/01-sidebar.mdx +36 -0
  149. package/docs/academy/04-ComponentLibrary/05-Layout-Components/01-test-toupdate.mdx +61 -0
  150. package/docs/academy/04-ComponentLibrary/06-Fragments/01-test-toupdate.mdx +61 -0
  151. package/docs/academy/04-ComponentLibrary/_category_.json +8 -0
  152. package/docs/academy/05-Architecture/00-PowerhouseArchitecture.md +50 -0
  153. package/docs/academy/05-Architecture/01-WorkingWithTheReactor.md +48 -0
  154. package/docs/academy/05-Architecture/02-ReferencingMonorepoPackages +65 -0
  155. package/docs/academy/05-Architecture/04-MovingBeyondCRUD +61 -0
  156. package/docs/academy/05-Architecture/05-DocumentModelTheory/01-WhatIsADocumentModel.md +188 -0
  157. package/docs/academy/05-Architecture/05-DocumentModelTheory/02-DAOandDocumentsModelsQ+A.md +177 -0
  158. package/docs/academy/05-Architecture/05-DocumentModelTheory/02-domain-modeling.md +103 -0
  159. package/docs/academy/05-Architecture/05-DocumentModelTheory/03-BenefitsOfDocumentModels.md +95 -0
  160. package/docs/academy/05-Architecture/05-DocumentModelTheory/05-best-practices.md +257 -0
  161. package/docs/academy/05-Architecture/05-DocumentModelTheory/_category_.json +8 -0
  162. package/docs/academy/05-Architecture/05-DocumentModelTheory/three-data-layers.png +0 -0
  163. package/docs/academy/05-Architecture/_category_.json +7 -0
  164. package/docs/academy/05-Architecture/images/image.png +0 -0
  165. package/docs/academy/06-Cookbook.md +905 -0
  166. package/docs/academy/07-Glossary.md +50 -0
  167. package/docs/bookofpowerhouse/01-Overview.md +29 -0
  168. package/docs/bookofpowerhouse/02-GeneralFrameworkAndPhilosophy.md +15 -0
  169. package/docs/bookofpowerhouse/03-PowerhouseSoftwareArchitecture.md +33 -0
  170. package/docs/bookofpowerhouse/04-DevelopmentApproaches.md +36 -0
  171. package/docs/bookofpowerhouse/05-SNOsandANewModelForOSSandPublicGoods.md +73 -0
  172. package/docs/bookofpowerhouse/06-SNOsInActionAndPlatformEconomies.md +17 -0
  173. package/docs/renown/01-intro.md +18 -0
  174. package/docs/renown/02-renown-login-flow.md +60 -0
  175. package/docusaurus +0 -0
  176. package/docusaurus.config.ts +170 -0
  177. package/package.json +50 -0
  178. package/powerhouse-docs@0.0.0 +0 -0
  179. package/sidebars.ts +33 -0
  180. package/src/components/HomepageFeatures/index.tsx +250 -0
  181. package/src/components/HomepageFeatures/styles.module.css +267 -0
  182. package/src/css/custom.css +450 -0
  183. package/src/pages/index.module.css +37 -0
  184. package/src/pages/index.tsx +42 -0
  185. package/src/pages/markdown-page.md +7 -0
  186. package/static/.nojekyll +0 -0
  187. package/static/fonts/FranieBold.otf +0 -0
  188. package/static/fonts/FranieRegular.otf +0 -0
  189. package/static/img/Powerhouse Website Drive.png +0 -0
  190. package/static/img/Powerhouse Website Storage Layer (1).png +0 -0
  191. package/static/img/Powerhouse Website Storage Layer.png +0 -0
  192. package/static/img/Powerhouse-main-light.svg +13 -0
  193. package/static/img/Powerhouse-main.svg +13 -0
  194. package/static/img/Renown Intro Diagram.png +0 -0
  195. package/static/img/Union.svg +3 -0
  196. package/static/img/academy/icons/Advanced.svg +4 -0
  197. package/static/img/academy/icons/Book.svg +5 -0
  198. package/static/img/academy/icons/Cookbook.svg +3 -0
  199. package/static/img/academy/icons/Create.svg +3 -0
  200. package/static/img/academy/icons/Data.svg +3 -0
  201. package/static/img/academy/icons/Editor.svg +3 -0
  202. package/static/img/academy/icons/Flash.svg +3 -0
  203. package/static/img/academy/icons/Launch.svg +3 -0
  204. package/static/img/academy-icon.png +0 -0
  205. package/static/img/connect-icon.png +0 -0
  206. package/static/img/connect.png +0 -0
  207. package/static/img/docusaurus-social-card.jpg +0 -0
  208. package/static/img/docusaurus.png +0 -0
  209. package/static/img/empty-background.png +0 -0
  210. package/static/img/favicon.ico +0 -0
  211. package/static/img/fusion-icon.png +0 -0
  212. package/static/img/fusion.png +0 -0
  213. package/static/img/ph-icon-light.svg +3 -0
  214. package/static/img/powerhouse-layer.png +0 -0
  215. package/static/img/powerhouse-storage-layer.png +0 -0
  216. package/static/img/reactor.png +0 -0
  217. package/static/img/renown-icon.png +0 -0
  218. package/static/img/renown.png +0 -0
  219. package/static/img/switchboard-icon.png +0 -0
  220. package/static/img/switchboard.png +0 -0
  221. package/static/img/undraw_docusaurus_mountain.svg +171 -0
  222. package/static/img/undraw_docusaurus_react.svg +170 -0
  223. package/static/img/undraw_docusaurus_tree.svg +40 -0
  224. package/static/img/video-placeholder.svg +16 -0
  225. package/static.json +7 -0
  226. package/tsconfig.json +7 -0
@@ -0,0 +1,652 @@
1
+ # Sky Dashboard
2
+
3
+ All consumable data for the Sky ecosystem is available through GraphQL API, which allows you to only fetch the data you require.
4
+
5
+ The API is available in two environments, a developer environment (DEV) and a production environment. For testing purposes please use the DEV environment. For the latest up to date data with integration or consumption purposes use the production environment.
6
+
7
+ Both environments are available through Apollo Studio Explorer where the user can find the analytics query and start fetching information from the analytics engine.
8
+
9
+ ### Available Metrics
10
+
11
+ To see which metrics are available to fetch analytics data, use the below query:
12
+
13
+ ```graphql
14
+ query Analytics {
15
+ analytics {
16
+ metrics
17
+ }
18
+ }
19
+ ```
20
+
21
+ The above query will output the following list, which is described in the dropdown below.
22
+
23
+ ```graphql
24
+ {
25
+ "data": {
26
+ "analytics": {
27
+ "metrics": [
28
+ "DailyDaiPriceChange",
29
+ "Budget",
30
+ "DailyUsdcPriceChange",
31
+ "Actuals",
32
+ "DailyUsdpPriceChange",
33
+ "Contributors",
34
+ "Forecast",
35
+ "DailyMkrPriceChange",
36
+ "DailyEthPriceChange",
37
+ "ProtocolNetOutflow",
38
+ "PaymentsOffChainIncluded",
39
+ "PaymentsOnChain"
40
+ ]
41
+ }
42
+ }
43
+ }
44
+ ```
45
+
46
+ <details>
47
+ <summary>👉 Expand this dropdown to explore the list of fields and retrievable data.</summary>
48
+
49
+ - **Actuals**: This metric represents the recorded amounts that have been actually spent or received. It is used for tracking and comparing against budgeted or forecasted amounts. This will be helpful to understand the real financial performance.
50
+
51
+ - Example Use Case: Comparing actual spending against the budget for a specific project to assess financial management efficiency.
52
+
53
+ - **Budget**: The estimated financial plan for a period, detailing the expected amounts allocated for various expenses and revenues.
54
+ - Example Use Case: Planning financial allocations for upcoming quarters and tracking the distribution of funds across different departments.
55
+
56
+ - **Forecast**: A projection of future financial outcomes based on current trends and past data. This functions as an educated estimate that helps in planning and strategy.
57
+
58
+ - Example Use Case: Anticipating cash flow and financial needs for the next fiscal year to make informed business decisions and adjustments.
59
+
60
+ - **PaymentsOnChain**: This metric tracks transactions executed on the blockchain, ensuring transparency and immutability of payment records.
61
+
62
+ - Example Use Case: Auditing blockchain transactions to ensure the accuracy of financial reporting within decentralized finance operations.
63
+
64
+ - **PaymentsOffChainIncluded**: Reflects transactions that occur outside the blockchain but are recognized in the financial records, possibly including traditional banking transactions and off-chain payment channels.
65
+
66
+ - Example Use Case: Reconciling on-chain and off-chain financial activities to maintain a comprehensive understanding of total expenditures and revenues.
67
+
68
+ - **DailyDaiPriceChange**: This metric measures the daily fluctuation in the price of DAI in USD. It's crucial for understanding the stability of DAI and its performance against the US dollar on a day-to-day basis.
69
+
70
+ - Example Use Case: Monitoring the stability of DAI to ensure it maintains its peg to the US dollar, crucial for financial planning and risk assessment in DAI-denominated transactions.
71
+
72
+ - **DailyUsdcPriceChange**: Tracks the daily price change of USDC in USD. This metric is important for analyzing USDC's stability and its daily performance relative to the US dollar.
73
+
74
+ - Example Use Case: Evaluating the daily fluctuations of USDC to assess its reliability as a stablecoin for operational liquidity and treasury management.
75
+
76
+ - **DailyUsdpPriceChange**: Reflects the daily price movement of USDP (Pax Dollar) in USD. It provides insights into the daily stability and performance of USDP against the US dollar.
77
+
78
+ - Example Use Case: Analyzing USDP's stability for strategic decisions in treasury operations, especially for entities holding or transacting in USDP.
79
+
80
+ - **DailyMkrPriceChange**: This metric shows the daily variation in the price of MKR in USD. It is vital for stakeholders to track the governance token's market performance on a daily basis.
81
+
82
+ - Example Use Case: Investors and MKR holders use this data to make informed decisions regarding buying, selling, or holding MKR based on its daily market performance.
83
+
84
+ - **DailyEthPriceChange**: Measures the daily price change of Ethereum (ETH) in USD. Given Ethereum's centrality to the DeFi ecosystem, this metric is key for evaluating the daily market dynamics of ETH.
85
+
86
+ - Example Use Case: DeFi participants and investors track ETH's price fluctuations to adjust their investment strategies, hedge risks, and capitalize on market movements.
87
+
88
+ </details>
89
+
90
+ ### Available Dimensions
91
+
92
+ To see the available dimensions use the query below:
93
+
94
+ ```graphql
95
+ query Analytics {
96
+ analytics {
97
+ dimensions {
98
+ name
99
+ values {
100
+ path
101
+ label
102
+ description
103
+ icon
104
+ }
105
+ }
106
+ }
107
+ }
108
+ ```
109
+
110
+ The output of the query above:
111
+
112
+ ```graphql
113
+ {
114
+ "data": {
115
+ "analytics": {
116
+ "dimensions": [
117
+ {
118
+ "name": "budget",
119
+ "values": [
120
+ {
121
+ "path": "atlas/legacy/recognized-delegates/",
122
+ "label": null,
123
+ "description": null,
124
+ "icon": null
125
+ }
126
+ ]
127
+ },
128
+ {
129
+ "name": "category",
130
+ "values": [
131
+ {
132
+ "path": "atlas/headcount/CompensationAndBenefits/",
133
+ "label": null,
134
+ "description": null,
135
+ "icon": null
136
+ }
137
+ ]
138
+ },
139
+ {
140
+ "name": "wallet",
141
+ "values": [
142
+ {
143
+ "path": "atlas/0xbe8e3e3618f7474f8cb1d074a26affef007e98fb/",
144
+ "label": null,
145
+ "description": null,
146
+ "icon": null
147
+ }
148
+ ]
149
+ },
150
+ {
151
+ "name": "project",
152
+ "values": [
153
+ {
154
+ "path": "atlas/Flip Flap Flop Delegate LLC/",
155
+ "label": null,
156
+ "description": null,
157
+ "icon": null
158
+ }
159
+ ]
160
+ },
161
+ {
162
+ "name": "report",
163
+ "values": [
164
+ {
165
+ "path": "atlas/Delegates/null/2021/11/",
166
+ "label": null,
167
+ "description": null,
168
+ "icon": null
169
+ }
170
+ ]
171
+ },
172
+ {
173
+ "name": "transactionType",
174
+ "values": [
175
+ {
176
+ "path": "atlas/Internal Transaction/",
177
+ "label": null,
178
+ "description": null,
179
+ "icon": null
180
+ },
181
+ ]
182
+ },
183
+ {
184
+ "name": "priceData",
185
+ "values": [
186
+ {
187
+ "path": "atlas/price-data/mkr-usd/day-average/",
188
+ "label": null,
189
+ "description": null,
190
+ "icon": null
191
+ }
192
+ ]
193
+ }
194
+ ]
195
+ }
196
+ }
197
+ }
198
+ ```
199
+
200
+ <details>
201
+
202
+ <summary> Expand this dropdown to explore the list of fields and retrievable data.</summary>
203
+
204
+ **Budget**
205
+ - **Description**: Refers to the allocation and utilization of funds within different projects or operational areas. It includes various budget categories such as recognized delegates, specific projects, and governance facilitation.
206
+
207
+ - **Values**:
208
+ - Paths like `atlas/legacy/recognized-delegates/` and `atlas/scopes/SUP/I/PHOENIX/` represent different budget categories or segments.
209
+ - Labels, descriptions, and icons are provided for more detailed budget segments, aiding in identifying specific budget areas and their purposes.
210
+
211
+ **Category**
212
+ - **Description**: Categorizes transactions or allocations into broader groups like compensation, benefits, or non-headcount expenses.
213
+ - **Values**:
214
+ - Paths like `atlas/headcount/CompensationAndBenefits/` and `atlas/non-headcount/` help segregate financial data into meaningful categories for analysis.
215
+
216
+ **Wallet**
217
+ - **Description**: Tracks transactions or balances associated with specific blockchain wallet addresses.
218
+ - **Values**:
219
+ - Each path, like `atlas/0xbe8e3e3618f7474f8cb1d074a26affef007e98fb/`, corresponds to a unique wallet address, enabling financial tracking at the wallet level.
220
+
221
+ **Project**
222
+ - **Description**: Represents different projects or initiatives within the MakerDAO ecosystem.
223
+ - **Values**:
224
+ - Paths such as `atlas/Flip Flap Flop Delegate LLC/` and `atlas/Feedblack Loops LLC/` designate various projects, facilitating project-specific financial analysis and reporting.
225
+
226
+ **Report**
227
+ - **Description**: Used for accessing specific financial reports, typically segmented by time (e.g., monthly, quarterly).
228
+ - **Values**:
229
+ - Paths like `atlas/Delegates/null/2021/11/` represent report segments, often organized by date, allowing users to access financial information for specific time periods.
230
+
231
+ **TransactionType**
232
+ - **Description**: Differentiates between various types of transactions within the MakerDAO ecosystem. This dimension helps in analyzing transaction flows, such as internal transfers, governance actions, or external payments.
233
+ - **Values**:
234
+ - A path like `atlas/Internal Transaction/` signifies a specific category of transaction, in this case, internal transactions within the organization. This allows for a focused analysis of internal fund movements or operational transactions.
235
+
236
+ **PriceData**
237
+ - **Description**: Provides access to historical price data for different cryptocurrencies, facilitating financial analysis and market trend observations. This dimension is crucial for tracking the day-to-day or historical price movements of tokens like MKR, DAI, etc.
238
+ - **Values**:
239
+ - Paths such as `atlas/price-data/mkr-usd/day-average/` offer access to daily average prices of MKR in USD, enabling detailed analysis of MKR's price performance over time. This can be invaluable for financial reporting, investment analysis, or economic research within the MakerDAO ecosystem.
240
+ </details>
241
+
242
+ ### Currency
243
+
244
+ To specify the currency in your analytics queries, use the following approach:
245
+
246
+ 1. Setting the Currency: Specify the currency as either "DAI" or "MKR" in the currency field of your filter object, depending on which currency's data you wish to analyze.
247
+
248
+ 2. Query Example:
249
+
250
+ ```graphql
251
+ query Analytics($filter: AnalyticsFilter) {
252
+ analytics(filter: $filter) {
253
+ series {
254
+ period
255
+ start
256
+ end
257
+ rows {
258
+ dimensions {
259
+ name
260
+ path
261
+ }
262
+ metric
263
+ unit
264
+ value
265
+ sum
266
+ }
267
+ }
268
+ }
269
+ }
270
+
271
+ ```
272
+
273
+ With filters for MKR:
274
+
275
+ ```graphql
276
+ {
277
+ "filter": {
278
+ "start": "2023-01-01",
279
+ "end": "2024-01-01",
280
+ "granularity": "total",
281
+ "metrics": ["Budget"],
282
+ "dimensions": [{"name": "budget", "select": "atlas", "lod": 3}],
283
+ "currency": "MKR"
284
+ }
285
+ }
286
+ ```
287
+ This query will return budget data in MKR for the specified time frame and dimension.
288
+
289
+ 3. Consistency in Currency Specification: It's essential to be consistent in specifying the currency for each query. If your analysis involves comparing data across both DAI and MKR, ensure that separate queries are made for each currency and the results are appropriately labeled and distinguished.
290
+
291
+ 4. Impact of Currency Choice: The choice of currency can significantly impact the insights derived from the analytics. While DAI provides a stable measure for financial planning and tracking, MKR offers insights into governance and decision-making aspects of the ecosystem.
292
+
293
+ By appropriately specifying the currency in your queries, you can tailor the financial analysis to suit the specific needs of your investigation, whether it be transactional stability with DAI or governance dynamics with MKR.
294
+
295
+ ### Examples of Filter Configurations
296
+
297
+ 1. Analyzing MKR Budgets for a Specific Period:
298
+
299
+ ```graphql
300
+ {
301
+ "filter": {
302
+ "start": "2023-01-01",
303
+ "end": "2024-01-01",
304
+ "granularity": "total",
305
+ "metrics": ["Budget"],
306
+ "dimensions": [
307
+ {
308
+ "name": "budget",
309
+ "select": "atlas",
310
+ "lod": 3
311
+ }
312
+ ],
313
+ "currency": "MKR"
314
+ }
315
+ }
316
+ ```
317
+ This configuration fetches total MKR budget data for the entire year of 2023, focusing on the 'budget' dimension with a specific level of detail.
318
+
319
+ 2. Comprehensive Yearly Financial Analysis in DAI:
320
+
321
+ ```graphql
322
+ {
323
+ "filter": {
324
+ "start": "2023-01-01",
325
+ "end": "2023-12-31",
326
+ "granularity": "annual",
327
+ "metrics": ["Actuals", "Forecast"],
328
+ "dimensions": [
329
+ {
330
+ "name": "category",
331
+ "select": "atlas",
332
+ "lod": 2
333
+ }
334
+ ],
335
+ "currency": "DAI"
336
+ }
337
+ }
338
+
339
+ ```
340
+ This filter setup is designed to provide an annual overview of actuals and forecast data across all categories in DAI for the year 2023.
341
+
342
+ These examples demonstrate how to construct a complete filter object for different types of financial analysis. By properly defining each parameter, users can ensure accurate and relevant data retrieval from the analytics engine.
343
+
344
+ ### Multicurrency Series
345
+
346
+ #### Overview
347
+
348
+ The `multiCurrencySeries` is a new feature introduced to the MakerDAO Analytics Engine, which significantly enhances the engine's capabilities by allowing for currency conversions within the data analytics process. This addition enables users to view financial data in multiple currencies, making the analytics engine a powerful tool for international financial analysis and reporting.
349
+
350
+ #### Functionality
351
+
352
+ **Currency Conversion**: The `multiCurrencySeries` enables the conversion of financial data from the base series currency (such as MKR) into another specified currency (like DAI).
353
+
354
+ The conversion is based on the available price change metrics in the analytics engine. To see all available price change metrics in the engine, use the metricsfield in the query to get a list:
355
+
356
+ ```graphql
357
+ "metrics": [
358
+ "Actuals",
359
+ "Budget",
360
+ "Contributors",
361
+ "DailyDaiPriceChange",
362
+ "DailyEthPriceChange",
363
+ "DailyMkrPriceChange",
364
+ "DailyUsdcPriceChange",
365
+ "DailyUsdpPriceChange",
366
+ "Forecast",
367
+ "PaymentsOffChainIncluded",
368
+ "PaymentsOnChain",
369
+ "ProtocolNetOutflow"
370
+ ],
371
+ ```
372
+
373
+ So far the engine covers the below price change metrics.
374
+
375
+ ```graphql
376
+ "DailyDaiPriceChange",
377
+ "DailyEthPriceChange",
378
+ "DailyMkrPriceChange",
379
+ "DailyUsdcPriceChange",
380
+ "DailyUsdpPriceChange",
381
+ ```
382
+
383
+ In the future, there could become more metrics available for different purposes, such as Monthly`currency` PriceChange. These can be used in the `multiCurrencySeries` to get the required data.
384
+
385
+ **Flexibility**: Users can now request and analyze financial data in different currencies, providing flexibility for international stakeholders who operate in various monetary units.
386
+
387
+ #### How it works
388
+
389
+ 1. Base Series Currency: Initially, the analytics engine aggregates data in the base currency of the series. For example, budget numbers might be originally calculated in MKR.
390
+
391
+ 2. Conversion Request: Through the multiCurrencySeries, a user can request these figures to be converted into another currency, such as DAI.
392
+
393
+ 3. Conversion Mechanism: The engine utilizes the daily average exchange rates to convert the data from the base currency to the target currency.
394
+
395
+ 4. Data Retrieval: The converted data is then retrieved as part of the analytics query, allowing users to analyze financials directly in the currency of their choice.
396
+
397
+ #### Query Structure
398
+
399
+ The query structure for fetching multicurrency data is similar to the standard analytics query, with the addition of the `multicurrencySeries` field and relevant subfields for specifying the conversion criteria.
400
+
401
+ ```graphql
402
+ query MultiCurrencySeries($filter: MultiCurrencyConversions) {
403
+ analytics {
404
+ multiCurrencySeries(filter: $filter) {
405
+ period
406
+ start
407
+ end
408
+ rows {
409
+ dimensions {
410
+ name
411
+ path
412
+ }
413
+ metric
414
+ unit
415
+ value
416
+ sum
417
+ }
418
+ }
419
+ }
420
+ }
421
+
422
+ // Variables
423
+ {
424
+ "filter": {
425
+ "start": "2023-10-01",
426
+ "end": "2024-01-01",
427
+ "granularity": "monthly",
428
+ "metrics": [
429
+ "Budget"
430
+ ],
431
+ "dimensions": [
432
+ {
433
+ "name": "budget",
434
+ "select": "atlas",
435
+ "lod": 1
436
+ }
437
+ ],
438
+ "currency": "DAI",
439
+ "conversions": [
440
+ {
441
+ "metric": "DailyMkrPriceChange",
442
+ "sourceCurrency": "MKR"
443
+ }
444
+ ]
445
+ }
446
+ }
447
+
448
+ ```
449
+
450
+ **Example Use Case**
451
+
452
+ - **Budget Analysis in Different Currencies**: A user can analyze the MakerDAO budget in both MKR and DAI, viewing how the budget figures translate between the governance token and the stablecoin. This can be particularly useful for reports that need to present financial data in a currency that is more widely used or understood by the audience.
453
+
454
+ #### Writing Queries
455
+
456
+ Writing queries in the analytics engine involves constructing structured requests to retrieve specific data. Here’s a step-by-step guide to help you write a basic query.
457
+
458
+ **Step 1: Understand Your Data Requirements**
459
+
460
+ Before writing a query, clearly define what data you need. Determine the metrics, time period, granularity, dimensions, and currency relevant to your analysis.
461
+
462
+ **Step 2: Open Your GraphQL Interface**
463
+
464
+ Access the analytics engine through a GraphQL interface, like Apollo Studio or another GraphQL client.
465
+
466
+ **Step 3: Start with the Query Structure**
467
+
468
+ Every query begins with the keyword query, followed by an optional name, and the main query field. In our case, it’s `Analytics`:
469
+
470
+ ```graphql
471
+ query MyAnalyticsQuery {
472
+ analytics {
473
+ series(filter: $filter)
474
+ ...
475
+ }
476
+ }
477
+
478
+ ```
479
+
480
+ **Step 4: Define the Filter Object**
481
+
482
+ The `filter` object is crucial and must be complete. It includes parameters like start, end, granularity, metrics, dimensions, and currency. Define this object according to your data requirements:
483
+
484
+ ```graphql
485
+ {
486
+ "filter": {
487
+ "start": "2023-01-01",
488
+ "end": "2023-12-31",
489
+ "granularity": "monthly",
490
+ "metrics": [
491
+ "Budget",
492
+ "Actuals"
493
+ ],
494
+ "dimensions": [
495
+ {
496
+ "name": "budget",
497
+ "select": "atlas",
498
+ "lod": 1
499
+ }
500
+ ],
501
+ "currency": "DAI"
502
+ }
503
+ }
504
+ ```
505
+
506
+ **Step 5: Specify the Data to Retrieve**
507
+
508
+ In the body of the `analytics` field, specify what data you want to retrieve. This typically includes fields like `series`,`period`,`start`,`end`,`rows` , and any sub-fields under `rows` such as `metric` , `value` , `unit` , `sum` , and `dimensions`. For example:
509
+
510
+ ```graphql
511
+ query MyAnalyticsQuery($filter: AnalyticsFilter) {
512
+ analytics {
513
+ series(filter: $filter) {
514
+ period
515
+ start
516
+ end
517
+ rows {
518
+ dimensions {
519
+ name
520
+ path
521
+ label
522
+ description
523
+ icon
524
+ }
525
+ metric
526
+ unit
527
+ value
528
+ sum
529
+ }
530
+ }
531
+ }
532
+ }
533
+
534
+ ```
535
+
536
+ **Step 6: Execute the Query**
537
+
538
+ Once you have constructed the query, execute it in your GraphQL interface. Ensure that the filter object is passed correctly as a variable. In most interfaces, there’s a separate section or panel where you can define these variables.
539
+
540
+ **Step 7: Review the Results**
541
+
542
+ After executing the query, review the results to ensure they align with your expectations. If the results are not as expected, revisit your query to check for any errors or adjustments needed in the filter parameters.
543
+
544
+ **Step 8: Iterate and Refine**
545
+
546
+ Query writing is often an iterative process. Based on the initial results, you might need to refine your query for more precise data or broader insights.
547
+
548
+ By following these steps, you can effectively write and execute queries in the analytics engine, tailoring the data retrieval to your specific analytical needs.
549
+
550
+ ### Query Examples
551
+
552
+ Example 1: Fetching Total MakerDAO Actual Expenses and Budget for 2023
553
+
554
+ ```graphql
555
+ query Analytics($filter: AnalyticsFilter) {
556
+ analytics {
557
+ series(filter: $filter) {
558
+ period
559
+ start
560
+ end
561
+ rows {
562
+ dimensions {
563
+ name
564
+ path
565
+ }
566
+ metric
567
+ unit
568
+ value
569
+ sum
570
+ }
571
+ }
572
+ }
573
+ }
574
+
575
+ // Filter
576
+ {
577
+ "filter": {
578
+ "start": "2023-01-01",
579
+ "end": "2024-01-31",
580
+ "granularity": "total",
581
+ "metrics": [
582
+ "Budget",
583
+ "Actuals"
584
+ ],
585
+ "dimensions": [
586
+ {
587
+ "name": "budget",
588
+ "select": "atlas",
589
+ "lod": 1
590
+ }
591
+ ],
592
+ "currency": "DAI"
593
+ }
594
+ }
595
+ ```
596
+
597
+ Explanation
598
+
599
+ - This query fetches the total actual expenses and budget for MakerDAO for the entire year of 2023.
600
+ - The granularity is set to "total" to aggregate data across the whole year.
601
+ metrics include "Actuals" and "Budget" to get both actual spendings and budgeted amounts.
602
+ - The currency is set to "DAI" to ensure all financial data is in the DAI format.
603
+
604
+ Modification for Custom Use Cases
605
+
606
+ - To modify this for a different time period, adjust the start and end dates.
607
+ - For a different currency, change the currency field to "MKR" or another supported currency.
608
+
609
+ Example 2: Fetching total actuals and budget for the SES Core Unit for the year of 2023.
610
+
611
+ ```graphql
612
+ query Analytics($filter: AnalyticsFilter) {
613
+ analytics {
614
+ series(filter: $filter) {
615
+ period
616
+ start
617
+ end
618
+ rows {
619
+ dimensions {
620
+ name
621
+ path
622
+ }
623
+ metric
624
+ unit
625
+ value
626
+ sum
627
+ }
628
+ }
629
+ }
630
+ }
631
+
632
+ // filter
633
+ {
634
+ "filter": {
635
+ "start": "2023-01-01",
636
+ "end": "2024-01-31",
637
+ "granularity": "total",
638
+ "metrics": [
639
+ "Budget",
640
+ "Actuals"
641
+ ],
642
+ "dimensions": [
643
+ {
644
+ "name": "budget",
645
+ "select": "atlas/legacy/core-units/SES-001",
646
+ "lod": 4
647
+ }
648
+ ],
649
+ "currency": "DAI"
650
+ }
651
+ }
652
+ ```
@@ -0,0 +1,3 @@
1
+ # Processors
2
+
3
+ See the Analytics Processor documentation for a thorough walkthrough of using the analytics system inside of a reactor processor to track metrics around document model operations.
@@ -0,0 +1,8 @@
1
+ {
2
+ "label": "Work with Data",
3
+ "position": 5,
4
+ "link": {
5
+ "type": "generated-index",
6
+ "description": "Learn how to work with data in Powerhouse."
7
+ }
8
+ }
@@ -0,0 +1,3 @@
1
+ # Front-end Integration Tutorial
2
+
3
+ Renown SDK & reactor integration into Vanilla js. front end with To-Do List
@@ -0,0 +1,18 @@
1
+ # Introducing Fusion
2
+
3
+ Fusion is a public platform for publishing your organizational data.
4
+ With the help of dashboards, modules & widgets, Fusion helps organizations to structure and summarize data to make informed decisions.
5
+ The first implementation of Fusion is live for the [Sky ecosystem.](https://fusion.sky.money)
6
+
7
+ Fusion acts as the front end that seamlessly makes use of the data you have been collecting, structuring and redirecting with Connect & Switchboard. Although Fusion is not the only way you can launch a front end, it is our recommended host app for visualizing Powerhouse data.
8
+
9
+ ## Core Features of Fusion
10
+
11
+ #### Publish Data to a Public Collaboration Platform
12
+ Data which your organization is collecting in the Powerhouse native apps such as Connect & Switchboard or other data streams will be turned into actionable & verifiable insights with Fusion. Fusion is intended as a public collaboration platform to harvest feedback on organizational data, milestones and projects, among others.
13
+
14
+ #### Verifiability and Auditing of Organizational Data
15
+ With the help of Renown & Connect, a verification trail can be reviewed on the collaborative documents running in Fusion & Connect. Progress, ownership and status of different key initiatives can be tracked via the public dashboard of Fusion.
16
+
17
+ ### Getting Started with Fusion
18
+ As we're expanding the feature scope of Fusion gradually beyond the Sky Ecosystem, we're welcoming new business partners to discuss their organizational needs via our [Discord server](https://discord.com/invite/h7GKvqDyDP)