├── .dockerignore ├── .editorconfig ├── .env ├── .eslintrc.js ├── .github └── workflows │ ├── create-release.yml │ ├── deploy-node-network.yml │ ├── deploy-playground.yml │ ├── joystream-apps-docker.yml │ ├── joystream-cli.yml │ ├── joystream-node-docker-dev.yml │ ├── joystream-node-docker-publish.yml │ ├── joystream-node-docker.yml │ ├── joystream-node.yml │ ├── joystream-types.yml │ ├── lint-typescript.yml │ ├── metadata-protobuf.yml │ ├── query-node.yml │ ├── run-network-tests.yml │ └── storage-node.yml ├── .gitignore ├── .pipelines └── deploy-node-network-inputs.json ├── .prettierrc.js ├── .yarnclean ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── RUNTIME-CONTRIBUTING.md ├── analyses ├── bench │ ├── .gitignore │ ├── Cargo.toml │ └── src │ │ ├── common.rs │ │ ├── construct.rs │ │ ├── core.rs │ │ ├── generator.rs │ │ ├── main.rs │ │ ├── plots.rs │ │ ├── simple_trie.rs │ │ ├── state_sizes.rs │ │ ├── tempdb.rs │ │ ├── trie.rs │ │ └── trie_series.rs └── fee-analysis │ ├── .gitignore │ ├── README.md │ ├── analysis_cli │ ├── __main__.py │ ├── analysis.py │ ├── config.json │ ├── constants.py │ └── parser.py │ ├── main_notebook.ipynb │ └── requirements.txt ├── bin ├── inspect │ ├── Cargo.toml │ └── src │ │ ├── cli.rs │ │ ├── command.rs │ │ └── lib.rs ├── node │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── main.rs │ ├── build.rs │ ├── src │ │ ├── benchmarking.rs │ │ ├── chain_spec │ │ │ ├── argo_bridge_config.rs │ │ │ ├── content_config.rs │ │ │ ├── council_config.rs │ │ │ ├── forum_config.rs │ │ │ ├── initial_balances.rs │ │ │ ├── mod.rs │ │ │ ├── project_token_config.rs │ │ │ └── storage_config.rs │ │ ├── cli.rs │ │ ├── command.rs │ │ ├── lib.rs │ │ ├── node_executor.rs │ │ ├── node_rpc.rs │ │ └── service.rs │ └── validator-node-banner.svg ├── overrides │ ├── Cargo.toml │ └── src │ │ └── lib.rs └── utils │ ├── call-sizes │ ├── Cargo.toml │ └── src │ │ └── main.rs │ ├── chain-spec-builder │ ├── Cargo.toml │ ├── build.rs │ └── src │ │ └── main.rs │ └── session-keys │ ├── Cargo.toml │ └── src │ └── main.rs ├── chain-metadata.json ├── cli ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── README.md ├── bin │ ├── run │ └── run.cmd ├── codegen.yml ├── examples │ ├── content │ │ ├── ChannelPayoutsPayload.json │ │ ├── ChannelPayoutsVector.json │ │ ├── CreateApp.json │ │ ├── CreateCategory.json │ │ ├── CreateChannel.json │ │ ├── CreateVideo.json │ │ ├── ModerationPermissionsByLevel.json │ │ ├── UpdateApp.json │ │ ├── UpdateCategory.json │ │ ├── UpdateChannel.json │ │ ├── UpdateVideo.json │ │ ├── avatar-photo-1.png │ │ ├── avatar-photo-2.png │ │ ├── cover-photo-1.png │ │ ├── cover-photo-2.png │ │ ├── subtitle-en-1.srt │ │ ├── subtitle-en-2.srt │ │ ├── subtitle-fr-1.srt │ │ ├── subtitle-fr-2.srt │ │ └── video.mp4 │ └── working-groups │ │ ├── CreateOpening.json │ │ └── UpdateMetadata.json ├── package.json ├── scripts │ ├── content-test.sh │ ├── forum-test.sh │ ├── membership-test.sh │ └── working-groups-test.sh ├── src │ ├── @types │ │ ├── @ffprobe-installer │ │ │ └── ffprobe │ │ │ │ └── index.d.ts │ │ ├── inquirer-datepicker-prompt │ │ │ └── index.d.ts │ │ ├── ipfs-http-client │ │ │ └── index.d.ts │ │ └── ipfs-only-hash │ │ │ └── index.d.ts │ ├── Api.ts │ ├── Consts.ts │ ├── ExitCodes.ts │ ├── QueryNodeApi.ts │ ├── Types.ts │ ├── base │ │ ├── AccountsCommandBase.ts │ │ ├── AdvancedTransactionsCommandBase.ts │ │ ├── ApiCommandBase.ts │ │ ├── AppCommandBase.ts │ │ ├── ContentDirectoryCommandBase.ts │ │ ├── DefaultCommandBase.ts │ │ ├── FeeProfileCommandBase.ts │ │ ├── ForumCommandBase.ts │ │ ├── MembershipsCommandBase.ts │ │ ├── ProtobufMessageCommandBase.ts │ │ ├── SignOfflineCommandBase.ts │ │ ├── StakingCommandBase.ts │ │ ├── StateAwareCommandBase.ts │ │ ├── UploadCommandBase.ts │ │ ├── WorkingGroupCommandBase.ts │ │ └── WorkingGroupsCommandBase.ts │ ├── commands │ │ ├── account │ │ │ ├── create.ts │ │ │ ├── export.ts │ │ │ ├── forget.ts │ │ │ ├── import.ts │ │ │ ├── info.ts │ │ │ ├── list.ts │ │ │ └── transferTokens.ts │ │ ├── advanced-transactions │ │ │ ├── constructSetCodeCall.ts │ │ │ ├── constructTxCall.ts │ │ │ ├── constructUnsignedTx.ts │ │ │ ├── constructUnsignedTxApproveMs.ts │ │ │ ├── constructUnsignedTxFinalApproveMs.ts │ │ │ ├── constructUnsignedTxInitiateMs.ts │ │ │ └── constructWrappedTxCall.ts │ │ ├── api │ │ │ ├── getQueryNodeEndpoint.ts │ │ │ ├── getUri.ts │ │ │ ├── inspect.ts │ │ │ ├── setQueryNodeEndpoint.ts │ │ │ └── setUri.ts │ │ ├── apps │ │ │ ├── createApp.ts │ │ │ └── updateApp.ts │ │ ├── content │ │ │ ├── addCuratorToGroup.ts │ │ │ ├── channel.ts │ │ │ ├── channelPayoutProof.ts │ │ │ ├── channelPayoutProofAtByteOffset.ts │ │ │ ├── channelPayoutsPayloadHeader.ts │ │ │ ├── channels.ts │ │ │ ├── claimChannelReward.ts │ │ │ ├── createChannel.ts │ │ │ ├── createCuratorGroup.ts │ │ │ ├── createVideo.ts │ │ │ ├── createVideoCategory.ts │ │ │ ├── curatorGroup.ts │ │ │ ├── curatorGroups.ts │ │ │ ├── deleteChannel.ts │ │ │ ├── deleteChannelAssetsAsModerator.ts │ │ │ ├── deleteVideo.ts │ │ │ ├── deleteVideoAssetsAsModerator.ts │ │ │ ├── directChannelPayment.ts │ │ │ ├── generateChannelPayoutsCommitment.ts │ │ │ ├── generateChannelPayoutsPayload.ts │ │ │ ├── getPayoutsOnchainCommitment.ts │ │ │ ├── removeChannelAssets.ts │ │ │ ├── removeCuratorFromGroup.ts │ │ │ ├── reuploadAssets.ts │ │ │ ├── setChannelVisibilityAsModerator.ts │ │ │ ├── setCuratorGroupStatus.ts │ │ │ ├── setVideoVisibilityAsModerator.ts │ │ │ ├── updateChannel.ts │ │ │ ├── updateChannelPayoutsProposal.ts │ │ │ ├── updateChannelStateBloatBond.ts │ │ │ ├── updateCuratorGroupPermissions.ts │ │ │ ├── updateVideo.ts │ │ │ ├── updateVideoStateBloatBond.ts │ │ │ ├── video.ts │ │ │ └── videos.ts │ │ ├── council │ │ │ └── fundBudget.ts │ │ ├── fee-profile │ │ │ ├── addForumPost.ts │ │ │ ├── addVideoComment.ts │ │ │ ├── buyMembership.ts │ │ │ ├── createChannel.ts │ │ │ ├── createForumThread.ts │ │ │ ├── createVideo.ts │ │ │ ├── deleteChannel.ts │ │ │ ├── deleteForumPost.ts │ │ │ ├── deleteForumThread.ts │ │ │ └── deleteVideo.ts │ │ ├── forum │ │ │ ├── addPost.ts │ │ │ ├── categories.ts │ │ │ ├── category.ts │ │ │ ├── createCategory.ts │ │ │ ├── createThread.ts │ │ │ ├── deleteCategory.ts │ │ │ ├── moderatePost.ts │ │ │ ├── moderateThread.ts │ │ │ ├── moveThread.ts │ │ │ ├── posts.ts │ │ │ ├── setStickiedThreads.ts │ │ │ ├── threads.ts │ │ │ ├── updateCategoryArchivalStatus.ts │ │ │ └── updateCategoryModeratorStatus.ts │ │ ├── membership │ │ │ ├── addStakingAccount.ts │ │ │ ├── buy.ts │ │ │ ├── details.ts │ │ │ ├── memberRemark.ts │ │ │ ├── update.ts │ │ │ └── updateAccounts.ts │ │ ├── sign-offline │ │ │ └── signUnsignedTx.ts │ │ ├── staking │ │ │ └── validate.ts │ │ ├── util │ │ │ ├── decodeMessage.ts │ │ │ ├── encodeMessage.ts │ │ │ └── messageStructure.ts │ │ └── working-groups │ │ │ ├── application.ts │ │ │ ├── apply.ts │ │ │ ├── cancelOpening.ts │ │ │ ├── createOpening.ts │ │ │ ├── decreaseWorkerStake.ts │ │ │ ├── evictWorker.ts │ │ │ ├── fillOpening.ts │ │ │ ├── increaseStake.ts │ │ │ ├── leaveRole.ts │ │ │ ├── opening.ts │ │ │ ├── openings.ts │ │ │ ├── overview.ts │ │ │ ├── removeUpcomingOpening.ts │ │ │ ├── setDefaultGroup.ts │ │ │ ├── slashWorker.ts │ │ │ ├── updateGroupMetadata.ts │ │ │ ├── updateRewardAccount.ts │ │ │ ├── updateRoleAccount.ts │ │ │ ├── updateWorkerReward.ts │ │ │ └── verifyValidator.ts │ ├── graphql │ │ └── queries │ │ │ ├── content.graphql │ │ │ ├── membership.graphql │ │ │ ├── storage.graphql │ │ │ └── workingGroups.graphql │ ├── helpers │ │ ├── InputOutput.ts │ │ ├── JsonSchemaPrompt.ts │ │ ├── display.ts │ │ ├── promptOptions.ts │ │ ├── prompting.ts │ │ ├── serialization.ts │ │ └── validation.ts │ ├── index.ts │ ├── schemas │ │ ├── ContentDirectory.ts │ │ ├── WorkingGroups.ts │ │ └── json │ │ │ └── Assets.schema.json │ └── validators │ │ └── common.ts ├── test │ ├── commands │ │ └── council │ │ │ └── info.test.ts │ ├── mocha.opts │ └── tsconfig.json └── tsconfig.json ├── colossus.Dockerfile ├── devops ├── .eslintrc.js ├── ansible │ ├── .gitignore │ ├── ansible.cfg │ ├── build-code.yml │ ├── build-joystream-node-docker.yml │ ├── create-joystream-node-ami-playbook.yml │ ├── deploy-full-node-playbook.yml │ ├── deploy-network.yml │ ├── deploy-playground-playbook.yml │ ├── deploy-rpc.yml │ ├── fetch-binaries.yml │ ├── group_vars │ │ └── all │ ├── install-tools.yml │ ├── library │ │ ├── authority_accounts.py │ │ └── update_chainspec_name_id_boot_nodes.py │ ├── requirements.yml │ ├── roles │ │ ├── bootnodes │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ └── joystream-node.service.j2 │ │ ├── common │ │ │ └── tasks │ │ │ │ ├── build-apps.yml │ │ │ │ ├── build-binaries.yml │ │ │ │ ├── create-chain-config.yml │ │ │ │ ├── fetch-binaries.yml │ │ │ │ ├── generate-node-keys.yml │ │ │ │ ├── generate-session-keys.yml │ │ │ │ ├── get-code-git.yml │ │ │ │ ├── get-code-local.yml │ │ │ │ ├── install-tools.yml │ │ │ │ └── push-binaries.yml │ │ ├── node │ │ │ └── templates │ │ │ │ └── joystream-node.service.j2 │ │ ├── rpc │ │ │ ├── tasks │ │ │ │ └── main.yml │ │ │ └── templates │ │ │ │ ├── Caddyfile.j2 │ │ │ │ └── joystream-node.service.j2 │ │ └── validators │ │ │ ├── tasks │ │ │ └── main.yml │ │ │ └── templates │ │ │ └── joystream-node.service.j2 │ └── templates │ │ └── Playground-Caddyfile.j2 ├── aws │ ├── .gitignore │ ├── README.md │ ├── ansible.cfg │ ├── cloudformation │ │ ├── network.yml │ │ └── single-instance.yml │ ├── common.sh │ ├── deploy-infra.sample.cfg │ ├── deploy-infra.sh │ ├── deploy-playground.sample.cfg │ ├── deploy-playground.sh │ ├── deploy-single-node.sample.cfg │ ├── deploy-single-node.sh │ └── destroy-stack.sh ├── eslint-config │ ├── index.js │ └── package.json ├── extrinsic-ordering │ ├── filter.sh │ └── tx-ordering.yml ├── frame-weight-template.hbs ├── git-hooks │ ├── pre-commit │ └── pre-push ├── joystream-pallet-weight-template.hbs ├── kubernetes │ ├── .gitignore │ ├── HOWTO.md │ ├── argus │ │ ├── .gitignore │ │ ├── Pulumi.yaml │ │ ├── README.md │ │ ├── docker_dummy │ │ │ └── Dockerfile │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── kind-cluster.yaml │ ├── node-network │ │ ├── .gitignore │ │ ├── Pulumi.yaml │ │ ├── README.md │ │ ├── configMap.ts │ │ ├── index.ts │ │ ├── ingress.yaml │ │ ├── json_modify.py │ │ ├── nfsVolume.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ ├── utils.ts │ │ └── validator.ts │ ├── orion │ │ ├── .gitignore │ │ ├── Pulumi.yaml │ │ ├── README.md │ │ ├── index.ts │ │ ├── mongo.ts │ │ ├── package.json │ │ └── tsconfig.json │ ├── pulumi-common │ │ ├── caddy.ts │ │ ├── configMap.ts │ │ ├── database.ts │ │ ├── index.ts │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── volume.ts │ ├── query-node │ │ ├── .gitignore │ │ ├── Pulumi.yaml │ │ ├── README.md │ │ ├── configMap.ts │ │ ├── docker_dummy │ │ │ └── Dockerfile │ │ ├── index.ts │ │ ├── indexerDeployment.ts │ │ ├── ingress.yaml │ │ ├── package.json │ │ ├── processorDeployment.ts │ │ ├── s3Helpers.ts │ │ └── tsconfig.json │ └── storage-node │ │ ├── .gitignore │ │ ├── Pulumi.yaml │ │ ├── README.md │ │ ├── docker_dummy │ │ └── Dockerfile │ │ ├── index.ts │ │ ├── package.json │ │ └── tsconfig.json ├── prettier-config │ ├── index.js │ └── package.json └── vscode │ └── settings.json ├── distributor-node.Dockerfile ├── distributor-node ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── README.md ├── bin │ ├── run │ └── run.cmd ├── client │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ │ ├── FILES │ │ └── VERSION │ ├── api.ts │ ├── base.ts │ ├── common.ts │ ├── configuration.ts │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── config.yml ├── docs │ ├── api │ │ ├── operator │ │ │ └── index.md │ │ ├── public │ │ │ └── index.md │ │ └── templates │ │ │ └── main.dot │ ├── commands │ │ ├── dev.md │ │ ├── help.md │ │ ├── index.md │ │ ├── leader.md │ │ ├── node.md │ │ ├── operator.md │ │ └── start.md │ ├── node │ │ └── index.md │ └── schema │ │ ├── definition-properties-directories-properties-assets.md │ │ ├── definition-properties-directories-properties-cachestate.md │ │ ├── definition-properties-directories.md │ │ ├── definition-properties-distributed-buckets-ids-items.md │ │ ├── definition-properties-distributed-buckets-ids.md │ │ ├── definition-properties-endpoints-properties-joystreamnodews.md │ │ ├── definition-properties-endpoints-properties-querynode.md │ │ ├── definition-properties-endpoints-properties-storagesquid.md │ │ ├── definition-properties-endpoints.md │ │ ├── definition-properties-id.md │ │ ├── definition-properties-intervals-properties-cachecleanup.md │ │ ├── definition-properties-intervals-properties-checkstoragenoderesponsetimes.md │ │ ├── definition-properties-intervals-properties-savecachestate.md │ │ ├── definition-properties-intervals.md │ │ ├── definition-properties-keys-items-oneof-json-backup-file-properties-keyfile.md │ │ ├── definition-properties-keys-items-oneof-json-backup-file.md │ │ ├── definition-properties-keys-items-oneof-mnemonic-phrase-properties-mnemonic.md │ │ ├── definition-properties-keys-items-oneof-mnemonic-phrase-properties-type.md │ │ ├── definition-properties-keys-items-oneof-mnemonic-phrase.md │ │ ├── definition-properties-keys-items-oneof-substrate-uri-properties-suri.md │ │ ├── definition-properties-keys-items-oneof-substrate-uri-properties-type.md │ │ ├── definition-properties-keys-items-oneof-substrate-uri.md │ │ ├── definition-properties-keys-items.md │ │ ├── definition-properties-keys.md │ │ ├── definition-properties-limits-properties-dataobjectsourcebyobjectidttl.md │ │ ├── definition-properties-limits-properties-maxcacheditemsize.md │ │ ├── definition-properties-limits-properties-maxconcurrentoutboundconnections.md │ │ ├── definition-properties-limits-properties-maxconcurrentstoragenodedownloads.md │ │ ├── definition-properties-limits-properties-outboundrequeststimeoutms.md │ │ ├── definition-properties-limits-properties-pendingdownloadtimeoutsec.md │ │ ├── definition-properties-limits-properties-querynodecachettl.md │ │ ├── definition-properties-limits-properties-storage.md │ │ ├── definition-properties-limits.md │ │ ├── definition-properties-logs-properties-console-logging-options.md │ │ ├── definition-properties-logs-properties-elasticsearch-logging-options-properties-auth-properties-password.md │ │ ├── definition-properties-logs-properties-elasticsearch-logging-options-properties-auth-properties-username.md │ │ ├── definition-properties-logs-properties-elasticsearch-logging-options-properties-auth.md │ │ ├── definition-properties-logs-properties-elasticsearch-logging-options-properties-endpoint.md │ │ ├── definition-properties-logs-properties-elasticsearch-logging-options-properties-indexprefix.md │ │ ├── definition-properties-logs-properties-elasticsearch-logging-options.md │ │ ├── definition-properties-logs-properties-file-logging-options-properties-archive.md │ │ ├── definition-properties-logs-properties-file-logging-options-properties-frequency.md │ │ ├── definition-properties-logs-properties-file-logging-options-properties-level.md │ │ ├── definition-properties-logs-properties-file-logging-options-properties-maxfiles.md │ │ ├── definition-properties-logs-properties-file-logging-options-properties-maxsize.md │ │ ├── definition-properties-logs-properties-file-logging-options-properties-path.md │ │ ├── definition-properties-logs-properties-file-logging-options.md │ │ ├── definition-properties-logs.md │ │ ├── definition-properties-operatorapi-properties-hmacsecret.md │ │ ├── definition-properties-operatorapi-properties-port.md │ │ ├── definition-properties-operatorapi.md │ │ ├── definition-properties-publicapi-properties-port.md │ │ ├── definition-properties-publicapi.md │ │ ├── definition-properties-workerid.md │ │ └── definition.md ├── openapitools.json ├── package.json ├── scripts │ ├── data │ │ ├── family-metadata.json │ │ └── operator-metadata.json │ ├── init-bucket.sh │ └── test-commands.sh ├── src │ ├── @types │ │ ├── @elastic │ │ │ └── esc-winston-format │ │ │ │ └── index.d.ts │ │ └── js-image-generator │ │ │ └── index.d.ts │ ├── api-spec │ │ ├── operator.yml │ │ └── public.yml │ ├── app │ │ └── index.ts │ ├── command-base │ │ ├── ExitCodes.ts │ │ ├── accounts.ts │ │ ├── api.ts │ │ ├── default.ts │ │ └── node.ts │ ├── commands │ │ ├── leader │ │ │ ├── cancel-invitation.ts │ │ │ ├── create-bucket-family.ts │ │ │ ├── create-bucket.ts │ │ │ ├── delete-bucket-family.ts │ │ │ ├── delete-bucket.ts │ │ │ ├── invite-bucket-operator.ts │ │ │ ├── remove-bucket-operator.ts │ │ │ ├── set-bucket-family-metadata.ts │ │ │ ├── set-buckets-per-bag-limit.ts │ │ │ ├── update-bag.ts │ │ │ ├── update-bucket-mode.ts │ │ │ ├── update-bucket-status.ts │ │ │ └── update-dynamic-bag-policy.ts │ │ ├── node │ │ │ ├── set-buckets.ts │ │ │ ├── set-worker.ts │ │ │ ├── shutdown.ts │ │ │ ├── start-public-api.ts │ │ │ └── stop-public-api.ts │ │ ├── operator │ │ │ ├── accept-invitation.ts │ │ │ └── set-metadata.ts │ │ └── start.ts │ ├── index.ts │ ├── schemas │ │ ├── configSchema.ts │ │ ├── familyMetadataSchema.ts │ │ ├── index.ts │ │ ├── operatorMetadataSchema.ts │ │ ├── scripts │ │ │ ├── generateConfigDoc.ts │ │ │ └── generateTypes.ts │ │ └── utils.ts │ ├── services │ │ ├── cache │ │ │ └── StateCacheService.ts │ │ ├── content │ │ │ ├── ContentService.ts │ │ │ ├── FSPromise.ts │ │ │ └── FileContinuousReadStream.ts │ │ ├── crypto │ │ │ └── ContentHash.ts │ │ ├── httpApi │ │ │ ├── HttpApiBase.ts │ │ │ ├── OperatorApiService.ts │ │ │ ├── PublicApiService.ts │ │ │ └── controllers │ │ │ │ ├── operator.ts │ │ │ │ └── public.ts │ │ ├── logging │ │ │ ├── LoggingService.ts │ │ │ └── index.ts │ │ ├── networking │ │ │ ├── NetworkingService.ts │ │ │ ├── PendingDownload.ts │ │ │ ├── index.ts │ │ │ ├── query-node │ │ │ │ ├── api.ts │ │ │ │ ├── codegen.yml │ │ │ │ ├── queries │ │ │ │ │ └── queries.graphql │ │ │ │ └── schema.graphql │ │ │ ├── runtime │ │ │ │ └── api.ts │ │ │ └── storage-node │ │ │ │ └── api.ts │ │ ├── parsers │ │ │ ├── BagIdParserService.ts │ │ │ ├── BucketIdParserService.ts │ │ │ ├── ConfigParserService.ts │ │ │ └── errors.ts │ │ └── validation │ │ │ └── ValidationService.ts │ └── types │ │ ├── app.ts │ │ ├── common.ts │ │ ├── config.ts │ │ ├── content.ts │ │ ├── index.ts │ │ ├── operatorApi.ts │ │ └── publicApi.ts └── tsconfig.json ├── docker-compose-no-bind-volumes.yml ├── docker-compose.elasticsearch.yml ├── docker-compose.storage-squid.yml ├── docker-compose.yml ├── entrypoints ├── distributor.sh ├── graphql-server.sh └── storage.sh ├── eslint-local-rules.js ├── joy-mainnet.json ├── joystream-node.Dockerfile ├── joystreamjs ├── .eslintrc.js ├── .gitignore ├── CHANGELOG.md ├── README.md ├── package.json ├── src │ ├── content │ │ ├── channelPayouts.ts │ │ └── index.ts │ └── utils │ │ ├── InputOutput.ts │ │ ├── index.ts │ │ ├── schemas │ │ └── json │ │ │ ├── ChannelPayoutsPayload.schema.json │ │ │ └── ChannelPayoutsVector.schema.json │ │ └── serialization.ts ├── tsconfig.cjs.json ├── tsconfig.esm.json ├── tsconfig.json └── typings │ ├── ChannelPayoutsPayload.schema.d.ts │ └── ChannelPayoutsVector.schema.d.ts ├── metadata-protobuf ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── README.md ├── doc-appendix.md ├── doc │ └── index.md ├── generate-md-doc.sh ├── package.json ├── proto │ ├── App.proto │ ├── Bounty.proto │ ├── Channel.proto │ ├── ChannelPayouts.proto │ ├── Council.proto │ ├── Forum.proto │ ├── Membership.proto │ ├── Metaprotocol.proto │ ├── Person.proto │ ├── ProposalsDiscussion.proto │ ├── Series.proto │ ├── Storage.proto │ ├── Token.proto │ ├── Video.proto │ └── WorkingGroups.proto ├── scripts │ ├── compile.ts │ └── tsconfig.json ├── src │ ├── KnownLicenses.json │ ├── consts.ts │ ├── index.ts │ ├── json │ │ └── index.ts │ ├── licenses.ts │ ├── types.ts │ └── utils.ts ├── test │ ├── channel.ts │ ├── forum-tags.ts │ ├── license-codes.ts │ ├── tsconfig.json │ └── video.ts └── tsconfig.json ├── opentelemetry ├── .env ├── .gitignore ├── index.ts ├── instrumentations │ ├── default.ts │ ├── distributor-node.ts │ ├── index.ts │ └── storage-node.ts ├── package.json └── tsconfig.json ├── package.json ├── postgres.conf ├── query-node.Dockerfile ├── query-node ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── README.md ├── benchmark.sh ├── build.sh ├── chain-metadata │ ├── 1001.json │ ├── 2001.json │ ├── 2002.json │ ├── 2003.json │ └── 2004.json ├── codegen │ ├── package.json │ └── yarn.lock ├── graphql-server-tsconfig.json ├── kill.sh ├── manifest.yml ├── mappings │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .prettierignore │ ├── .prettierrc.js │ ├── package.json │ ├── src │ │ ├── bootstrap-data │ │ │ ├── data │ │ │ │ ├── membershipConfig.json │ │ │ │ └── workingGroups.json │ │ │ ├── index.ts │ │ │ └── types.ts │ │ ├── bootstrap.ts │ │ ├── bounty.ts │ │ ├── common.ts │ │ ├── content │ │ │ ├── app.ts │ │ │ ├── channel.ts │ │ │ ├── commentAndReaction.ts │ │ │ ├── curatorGroup.ts │ │ │ ├── index.ts │ │ │ ├── nft.ts │ │ │ ├── utils.ts │ │ │ ├── video.ts │ │ │ └── videoCategory.ts │ │ ├── council.ts │ │ ├── derivedPropertiesManager │ │ │ ├── applications │ │ │ │ ├── activeVideoCounters.ts │ │ │ │ ├── index.ts │ │ │ │ └── videoNftCollectors.ts │ │ │ ├── classes.ts │ │ │ ├── index.ts │ │ │ └── interfaces.ts │ │ ├── forum.ts │ │ ├── index.ts │ │ ├── joystreamUtility.ts │ │ ├── membership.ts │ │ ├── proposals.ts │ │ ├── proposalsDiscussion.ts │ │ ├── queryTemplates.ts │ │ ├── scheduler.ts │ │ ├── storage │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── utils.ts │ │ ├── system.ts │ │ ├── temporaryConstants.ts │ │ └── workingGroups.ts │ └── tsconfig.json ├── package.json ├── reset-processor.sh ├── schemas │ ├── app.graphql │ ├── bounty.graphql │ ├── bountyEvents.graphql │ ├── common.graphql │ ├── content.graphql │ ├── contentEvents.graphql │ ├── contentNft.graphql │ ├── contentNftEvents.graphql │ ├── council.graphql │ ├── councilEvents.graphql │ ├── forum.graphql │ ├── forumEvents.graphql │ ├── membership.graphql │ ├── membershipEvents.graphql │ ├── metaprotocolEvents.graphql │ ├── proposalDiscussion.graphql │ ├── proposalDiscussionEvents.graphql │ ├── proposals.graphql │ ├── proposalsEvents.graphql │ ├── storage.graphql │ ├── workingGroups.graphql │ └── workingGroupsEvents.graphql └── start.sh ├── runtime-modules ├── argo-bridge │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── errors.rs │ │ ├── events.rs │ │ ├── lib.rs │ │ ├── tests │ │ ├── mock.rs │ │ └── mod.rs │ │ ├── types.rs │ │ └── weights.rs ├── bounty │ ├── Cargo.toml │ └── src │ │ ├── actors.rs │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── stages.rs │ │ ├── tests │ │ ├── fixtures.rs │ │ ├── mocks.rs │ │ └── mod.rs │ │ └── weights.rs ├── common │ ├── Cargo.toml │ └── src │ │ ├── bloat_bond.rs │ │ ├── costs.rs │ │ ├── council.rs │ │ ├── currency.rs │ │ ├── lib.rs │ │ ├── locks.rs │ │ ├── membership.rs │ │ ├── merkle_tree │ │ ├── helpers.rs │ │ └── mod.rs │ │ ├── no_panic.rs │ │ ├── numerical.rs │ │ ├── origin.rs │ │ ├── storage.rs │ │ └── working_group.rs ├── constitution │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── tests │ │ ├── mocks.rs │ │ └── mod.rs │ │ └── weights.rs ├── content │ ├── Cargo.toml │ └── src │ │ ├── benchmarks │ │ ├── benchmarking.rs │ │ └── mod.rs │ │ ├── errors.rs │ │ ├── lib.rs │ │ ├── migrations.rs │ │ ├── nft │ │ ├── mod.rs │ │ └── types.rs │ │ ├── permissions │ │ ├── curator_group.rs │ │ └── mod.rs │ │ ├── tests │ │ ├── channels.rs │ │ ├── creator_tokens.rs │ │ ├── creator_tokens │ │ │ ├── activate_amm.rs │ │ │ ├── claim_patronage_credit.rs │ │ │ ├── deactivate_amm.rs │ │ │ ├── deissue.rs │ │ │ ├── finalize_creator_token_sale.rs │ │ │ ├── finalize_revenue_split.rs │ │ │ ├── init_token_sale.rs │ │ │ ├── issue.rs │ │ │ ├── issue_revenue_split.rs │ │ │ ├── issuer_transfer.rs │ │ │ ├── make_permissionless.rs │ │ │ ├── reduce_patronage_rate.rs │ │ │ └── update_upcoming_sale.rs │ │ ├── curators.rs │ │ ├── fixtures.rs │ │ ├── merkle.rs │ │ ├── metaprotocol.rs │ │ ├── mock.rs │ │ ├── mod.rs │ │ ├── nft.rs │ │ ├── nft │ │ │ ├── accept_incoming_offer.rs │ │ │ ├── buy_nft.rs │ │ │ ├── cancel_buy_now.rs │ │ │ ├── cancel_nft_auction.rs │ │ │ ├── cancel_offer.rs │ │ │ ├── cancel_open_auction_bid.rs │ │ │ ├── claim_won_english_auction.rs │ │ │ ├── destroy_nft.rs │ │ │ ├── issue_nft.rs │ │ │ ├── make_bid.rs │ │ │ ├── offer_nft.rs │ │ │ ├── pick_open_auction_winner.rs │ │ │ ├── sell_nft.rs │ │ │ ├── sling_nft_back.rs │ │ │ ├── start_nft_auction.rs │ │ │ ├── update_buy_now.rs │ │ │ └── update_nft_limit.rs │ │ ├── transfers.rs │ │ └── videos.rs │ │ ├── types.rs │ │ └── weights.rs ├── council │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── forum │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── membership │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── tests │ │ ├── fixtures.rs │ │ ├── mock.rs │ │ └── mod.rs │ │ └── weights.rs ├── project-token │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── errors.rs │ │ ├── events.rs │ │ ├── lib.rs │ │ ├── tests │ │ ├── amm.rs │ │ ├── canonical.rs │ │ ├── fixtures.rs │ │ ├── mock.rs │ │ ├── mod.rs │ │ ├── patronage.rs │ │ ├── sale.rs │ │ ├── split.rs │ │ ├── test_utils.rs │ │ └── transfer.rs │ │ ├── traits.rs │ │ ├── types.rs │ │ ├── utils.rs │ │ └── weights.rs ├── proposals │ ├── codex │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── benchmarking.rs │ │ │ ├── lib.rs │ │ │ ├── tests │ │ │ ├── mock.rs │ │ │ └── mod.rs │ │ │ ├── types.rs │ │ │ └── weights.rs │ ├── discussion │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── benchmarking.rs │ │ │ ├── lib.rs │ │ │ ├── tests │ │ │ ├── mock.rs │ │ │ └── mod.rs │ │ │ ├── types.rs │ │ │ └── weights.rs │ └── engine │ │ ├── Cargo.toml │ │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── tests │ │ ├── mock │ │ │ ├── mod.rs │ │ │ └── proposals.rs │ │ └── mod.rs │ │ ├── types │ │ ├── mod.rs │ │ └── proposal_statuses.rs │ │ └── weights.rs ├── referendum │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── mock.rs │ │ ├── tests.rs │ │ └── weights.rs ├── staking-handler │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── mock.rs │ │ └── test.rs ├── storage │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── tests │ │ ├── fixtures.rs │ │ ├── mocks.rs │ │ └── mod.rs │ │ └── weights.rs ├── support │ └── derive-fixture │ │ ├── Cargo.toml │ │ └── src │ │ └── lib.rs ├── utility │ ├── Cargo.toml │ └── src │ │ ├── benchmarking.rs │ │ ├── lib.rs │ │ ├── tests │ │ ├── mocks.rs │ │ └── mod.rs │ │ └── weights.rs └── working-group │ ├── Cargo.toml │ └── src │ ├── benchmarking.rs │ ├── checks.rs │ ├── errors.rs │ ├── lib.rs │ ├── tests │ ├── fixtures.rs │ ├── hiring_workflow.rs │ ├── mock.rs │ └── mod.rs │ ├── types.rs │ └── weights.rs ├── runtime ├── CHANGELOG.md ├── Cargo.toml ├── README.md ├── build.rs ├── runtime-banner.svg └── src │ ├── constants.rs │ ├── integration │ ├── content_directory.rs │ ├── mod.rs │ ├── proposals │ │ ├── council_manager.rs │ │ ├── mod.rs │ │ └── proposal_encoder.rs │ └── transactions.rs │ ├── lib.rs │ ├── primitives.rs │ ├── proposals_configuration │ ├── defaults.rs │ ├── mod.rs │ ├── playground.rs │ ├── staging.rs │ └── testing.rs │ ├── runtime_api.rs │ ├── tests │ ├── fee_tests.rs │ ├── handle_fees.rs │ ├── locks.rs │ ├── mod.rs │ └── proposals_integration │ │ ├── mod.rs │ │ └── working_group_proposals.rs │ ├── utils.rs │ ├── voter_bags.rs │ └── weights │ ├── block_weights.rs │ ├── extrinsic_weights.rs │ ├── frame_system.rs │ ├── mod.rs │ ├── pallet_babe.rs │ ├── pallet_bags_list.rs │ ├── pallet_balances.rs │ ├── pallet_election_provider_multi_phase.rs │ ├── pallet_election_provider_support_benchmarking.rs │ ├── pallet_grandpa.rs │ ├── pallet_im_online.rs │ ├── pallet_multisig.rs │ ├── pallet_proxy.rs │ ├── pallet_session.rs │ ├── pallet_staking.rs │ ├── pallet_timestamp.rs │ ├── pallet_vesting.rs │ ├── rocksdb_weights.rs │ └── substrate_utility.rs ├── scripts ├── cargo-build-with-benchmarking.sh ├── cargo-build.sh ├── cargo-checks-with-benchmarking.sh ├── cargo-checks.sh ├── cargo-test-all.sh ├── compute-runtime-blob-hash.sh ├── features.sh ├── fetch-chain-metadata.sh ├── fetch-chain-spec-version.sh ├── generate-weights.sh ├── lint-typescript.sh ├── run-dev-chain.sh ├── runtime-code-shasum.sh ├── runtime-code-tarball.sh ├── save-storage-squid-schema.sh ├── save-to-docker-images.sh ├── try-runtime-upgrade.sh └── verify-chain-metadata.sh ├── setup.sh ├── start-elasticsearch-stack.sh ├── start-multistorage.sh ├── start-orion.sh ├── start.sh ├── storage-node ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── README.md ├── bin │ ├── run │ └── run.cmd ├── client │ ├── .openapi-generator-ignore │ ├── .openapi-generator │ │ ├── FILES │ │ └── VERSION │ ├── api.ts │ ├── base.ts │ ├── common.ts │ ├── configuration.ts │ ├── index.ts │ ├── package.json │ └── tsconfig.json ├── openapitools.json ├── package.json ├── scripts │ ├── init-dev-bucket.sh │ ├── init-for-cli.sh │ ├── operatorMetadata.json │ └── run-all-commands.sh ├── src │ ├── api-spec │ │ └── openapi.yaml │ ├── command-base │ │ ├── ApiCommandBase.ts │ │ ├── CustomFlags.ts │ │ ├── ExitCodes.ts │ │ └── LeaderCommandBase.ts │ ├── commands │ │ ├── archive.ts │ │ ├── leader │ │ │ ├── cancel-invite.ts │ │ │ ├── copy-bags.ts │ │ │ ├── create-bucket.ts │ │ │ ├── delete-bucket.ts │ │ │ ├── empty-bucket.ts │ │ │ ├── invite-operator.ts │ │ │ ├── remove-operator.ts │ │ │ ├── set-bucket-limits.ts │ │ │ ├── set-global-uploading-status.ts │ │ │ ├── set-replication.ts │ │ │ ├── update-bag-limit.ts │ │ │ ├── update-bags.ts │ │ │ ├── update-blacklist.ts │ │ │ ├── update-bucket-status.ts │ │ │ ├── update-data-fee.ts │ │ │ ├── update-data-object-bloat-bond.ts │ │ │ ├── update-dynamic-bag-policy.ts │ │ │ └── update-voucher-limits.ts │ │ ├── operator │ │ │ ├── accept-invitation.ts │ │ │ └── set-metadata.ts │ │ ├── server.ts │ │ └── util │ │ │ ├── cleanup.ts │ │ │ ├── fetch-bucket.ts │ │ │ ├── multihash.ts │ │ │ ├── search-archives.ts │ │ │ └── verify-bag-id.ts │ ├── index.ts │ └── services │ │ ├── archive │ │ ├── ArchiveService.ts │ │ ├── compression.ts │ │ ├── stats.ts │ │ ├── tasks.ts │ │ └── tracking.ts │ │ ├── caching │ │ ├── localDataObjects.ts │ │ ├── newUploads.ts │ │ └── tokenNonceKeeper.ts │ │ ├── helpers │ │ ├── bagTypes.ts │ │ ├── bagsUpdate.ts │ │ ├── fileInfo.ts │ │ ├── filesystem.ts │ │ ├── hashing.ts │ │ ├── stdout.ts │ │ └── storageSize.ts │ │ ├── logger.ts │ │ ├── metadata │ │ ├── generateTypes.ts │ │ ├── schemas │ │ │ ├── index.ts │ │ │ ├── operatorMetadataSchema.ts │ │ │ ├── schemas.ts │ │ │ └── types.ts │ │ └── validationService.ts │ │ ├── multer-storage │ │ └── disk.ts │ │ ├── processing │ │ └── workingProcess.ts │ │ ├── queryNode │ │ ├── api.ts │ │ ├── codegen.yml │ │ ├── queries │ │ │ └── queries.graphql │ │ └── schema.graphql │ │ ├── runtime │ │ ├── accounts.ts │ │ ├── api.ts │ │ ├── extrinsics.ts │ │ └── queries.ts │ │ ├── s3 │ │ ├── AwsConnectionHandler.ts │ │ └── IConnectionHandler.ts │ │ ├── sync │ │ ├── acceptPendingObjects.ts │ │ ├── cleanupService.ts │ │ ├── storageObligations.ts │ │ ├── synchronizer.ts │ │ └── tasks.ts │ │ └── webApi │ │ ├── app.ts │ │ ├── controllers │ │ ├── common.ts │ │ ├── filesApi.ts │ │ └── stateApi.ts │ │ └── types │ │ └── index.ts └── tsconfig.json ├── tests └── network-tests │ ├── .env │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── ColossusApi.ts │ ├── LICENSE │ ├── codegen.yml │ ├── get-host-ip.sh │ ├── package.json │ ├── run-flow.sh │ ├── run-node-docker.sh │ ├── run-runtime-upgrade-tests.sh │ ├── run-test-node.sh │ ├── run-test-scenario.sh │ ├── run-tests.sh │ ├── src │ ├── Api.ts │ ├── ArgusApi.ts │ ├── Debugger.ts │ ├── Fixture.ts │ ├── Flow.ts │ ├── InvertedPromise.ts │ ├── Job.ts │ ├── JobManager.ts │ ├── QueryNodeApi.ts │ ├── Resources.ts │ ├── Scenario.ts │ ├── cli │ │ ├── base.ts │ │ ├── distributor.ts │ │ ├── joystream.ts │ │ ├── storage.ts │ │ └── utils.ts │ ├── consts.ts │ ├── fixtures │ │ ├── content │ │ │ ├── activeVideoCounters.ts │ │ │ ├── channelPayouts │ │ │ │ ├── ClaimChannelRewardFixture.ts │ │ │ │ ├── DirectChannelPaymentHappyCaseFixture.ts │ │ │ │ ├── DirectChannelPaymentWithInvalidRewardAccountFixture.ts │ │ │ │ ├── UpdateChannelPayoutsProposalFixture.ts │ │ │ │ ├── WithdrawChannelRewardFixture.ts │ │ │ │ └── index.ts │ │ │ ├── collaboratorAndCurator │ │ │ │ ├── addCuratorsToCuratorGroupFixture.ts │ │ │ │ ├── index.ts │ │ │ │ ├── updateChannelCollaboratorsFixture.ts │ │ │ │ └── utils.ts │ │ │ ├── commentAndReaction │ │ │ │ ├── BanOrUnbanMemberFixture.ts │ │ │ │ ├── CreateCommentsFixture.ts │ │ │ │ ├── DeleteCommentsFixture.ts │ │ │ │ ├── EditCommentsFixture.ts │ │ │ │ ├── EnableOrDiasbleVideoReactionsFixture.ts │ │ │ │ ├── ModerateCommentsFixture.ts │ │ │ │ ├── PinOrUnpinCommentsFixture.ts │ │ │ │ ├── ReactToCommentsFixture.ts │ │ │ │ ├── ReactToVideosFixture.ts │ │ │ │ └── index.ts │ │ │ ├── contentTemplates.ts │ │ │ ├── createChannelsAndVideos.ts │ │ │ ├── createContentStructure.ts │ │ │ ├── createCuratorGroupFixture.ts │ │ │ ├── createMembersAndCurators.ts │ │ │ ├── curatorModeration │ │ │ │ ├── DeleteChannelAssetByModerator.ts │ │ │ │ └── DeleteVideoAssetsByModerator.ts │ │ │ ├── deleteChannelWithVideos.ts │ │ │ ├── index.ts │ │ │ └── nft │ │ │ │ ├── auctionCancelations.ts │ │ │ │ ├── auctionWhitelist.ts │ │ │ │ ├── buyNow.ts │ │ │ │ ├── collectors.ts │ │ │ │ ├── createVideoWithBuyNow.ts │ │ │ │ ├── createVideoWithNft.ts │ │ │ │ ├── directOffer.ts │ │ │ │ ├── englishAuction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── openAuction.ts │ │ │ │ ├── placeBidsInAuction.ts │ │ │ │ ├── updateBuyNowPrice.ts │ │ │ │ ├── updateVideoForNftCreation.ts │ │ │ │ └── utils.ts │ │ ├── council │ │ │ ├── ElectCouncilFixture.ts │ │ │ ├── FundCouncilBudgetFixture.ts │ │ │ ├── NotEnoughCandidatesFixture.ts │ │ │ ├── NotEnoughCandidatesWithVotesFixture.ts │ │ │ ├── announceCandidacyFixture.ts │ │ │ ├── common.ts │ │ │ └── index.ts │ │ ├── forum │ │ │ ├── AddPostsFixture.ts │ │ │ ├── CreateCategoriesFixture.ts │ │ │ ├── CreateThreadsFixture.ts │ │ │ ├── DeletePostsFixture.ts │ │ │ ├── DeleteThreadsFixture.ts │ │ │ ├── InitializeForumFixture.ts │ │ │ ├── ModeratePostsFixture.ts │ │ │ ├── ModerateThreadsFixture.ts │ │ │ ├── MoveThreadsFixture.ts │ │ │ ├── RemarkModeratePostsFixture.ts │ │ │ ├── RemoveCategoriesFixture.ts │ │ │ ├── SetStickyThreadsFixture.ts │ │ │ ├── UpdateCategoriesStatusFixture.ts │ │ │ ├── UpdateCategoryModeratorsFixture.ts │ │ │ ├── UpdatePostsTextFixture.ts │ │ │ ├── UpdateThreadsMetadataFixture.ts │ │ │ ├── WithForumWorkersFixture.ts │ │ │ └── index.ts │ │ ├── membership │ │ │ ├── AddStakingAccountsHappyCaseFixture.ts │ │ │ ├── BuyMembershipHappyCaseFixture.ts │ │ │ ├── BuyMembershipWithInsufficienFundsFixture.ts │ │ │ ├── GiftMembershipHappyCaseFixture.ts │ │ │ ├── InviteMembersHappyCaseFixture.ts │ │ │ ├── RemoveStakingAccountsHappyCaseFixture.ts │ │ │ ├── TransferInvitesHappyCaseFixture.ts │ │ │ ├── UpdateAccountsHappyCaseFixture.ts │ │ │ ├── UpdateProfileHappyCaseFixture.ts │ │ │ ├── UpdateVerificationStatusFixture.ts │ │ │ ├── VerifyValidatorMembershipFixture.ts │ │ │ ├── WithMembershipWorkersFixture.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── proposals │ │ │ ├── AllProposalsOutcomesFixture.ts │ │ │ ├── CancelProposalsFixture.ts │ │ │ ├── CreateProposalsFixture.ts │ │ │ ├── DecideOnProposalStatusFixture.ts │ │ │ ├── ExpireProposalsFixture.ts │ │ │ ├── PassProposalFixture.ts │ │ │ ├── VoteOnProposalsFixture.ts │ │ │ └── index.ts │ │ ├── proposalsDiscussion │ │ │ ├── ChangeThreadsModeFixture.ts │ │ │ ├── CreatePostsFixture.ts │ │ │ ├── DeletePostsFixture.ts │ │ │ ├── UpdatePostsFixture.ts │ │ │ └── index.ts │ │ ├── referendum │ │ │ ├── blackListVoteFixture.ts │ │ │ ├── index.ts │ │ │ └── voteFixture.ts │ │ ├── staking │ │ │ ├── BondingRestrictedFixture.ts │ │ │ ├── BondingSucceedsFixture.ts │ │ │ ├── ClaimingPayoutStakersSucceedsFixture.ts │ │ │ ├── NominatingSucceedsFixture.ts │ │ │ ├── ValidatingSucceedsFixture.ts │ │ │ └── index.ts │ │ ├── storage │ │ │ ├── CopyBagsFixture.ts │ │ │ ├── EmptyBucketFixture.ts │ │ │ ├── GenerateChannelAssetsFixture.ts │ │ │ ├── SetReplicationRateFixture.ts │ │ │ └── utils.ts │ │ └── workingGroups │ │ │ ├── ApplyOnOpeningsHappyCaseFixture.ts │ │ │ ├── BaseWorkingGroupFixture.ts │ │ │ ├── CancelOpeningsFixture.ts │ │ │ ├── CreateOpeningsFixture.ts │ │ │ ├── CreateUpcomingOpeningsFixture.ts │ │ │ ├── DecreaseWorkerStakesFixture.ts │ │ │ ├── FillOpeningsFixture.ts │ │ │ ├── FundWorkingGroupBudgetFixture.ts │ │ │ ├── HireWorkersFixture.ts │ │ │ ├── IncreaseWorkerStakesFixture.ts │ │ │ ├── LeaveRoleFixture.ts │ │ │ ├── RemoveUpcomingOpeningsFixture.ts │ │ │ ├── SlashWorkerStakesFixture.ts │ │ │ ├── SpendBudgetFixture.ts │ │ │ ├── TerminateWorkersFixture.ts │ │ │ ├── UpdateGroupStatusFixture.ts │ │ │ ├── UpdateWorkerRewardAccountsFixture.ts │ │ │ ├── UpdateWorkerRewardAmountsFixture.ts │ │ │ ├── UpdateWorkerRoleAccountsFixture.ts │ │ │ ├── VestedSpendFromBudgetFixture.ts │ │ │ ├── WithdrawApplicationsFixture.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ ├── flows │ │ ├── clis │ │ │ ├── channelsAndVideos.ts │ │ │ ├── initDistributionBucket.ts │ │ │ └── initStorageBucket.ts │ │ ├── content │ │ │ ├── activeVideoCounters.ts │ │ │ ├── collaboratorAndCuratorPermissions.ts │ │ │ ├── commentsAndReactions.ts │ │ │ ├── createApp.ts │ │ │ ├── createAppActions.ts │ │ │ ├── curatorModerationActions.ts │ │ │ ├── directChannelPayment.ts │ │ │ ├── nftAuctionAndOffers.ts │ │ │ ├── updateApp.ts │ │ │ ├── videoCategories.ts │ │ │ └── videoSubtitles.ts │ │ ├── council │ │ │ ├── elect.ts │ │ │ ├── electOnlyIfNoElected.ts │ │ │ ├── electWithBlacklist.ts │ │ │ └── failToElect.ts │ │ ├── faucet │ │ │ └── initFaucet.ts │ │ ├── forum │ │ │ ├── categories.ts │ │ │ ├── moderation.ts │ │ │ ├── multiplePostDeletionsBug.ts │ │ │ ├── posts.ts │ │ │ ├── threadTags.ts │ │ │ └── threads.ts │ │ ├── membership │ │ │ ├── buyingMemberships.ts │ │ │ ├── giftingMemberships.ts │ │ │ ├── invitingMembers.ts │ │ │ ├── managingStakingAccounts.ts │ │ │ ├── transferringInvites.ts │ │ │ ├── updateValidatorVerifications.ts │ │ │ ├── updateVerificationStatus.ts │ │ │ ├── updatingAccounts.ts │ │ │ └── updatingProfile.ts │ │ ├── proposals │ │ │ ├── cancellingProposal.ts │ │ │ ├── channelPayouts.ts │ │ │ ├── exactExecutionBlock.ts │ │ │ ├── expireProposal.ts │ │ │ ├── index.ts │ │ │ ├── runtimeUpgradeProposal.ts │ │ │ └── vetoProposal.ts │ │ ├── proposalsDiscussion │ │ │ └── index.ts │ │ ├── staking │ │ │ └── failToBond.ts │ │ ├── storage │ │ │ ├── copyAndEmptyBuckets.ts │ │ │ ├── initDistribution.ts │ │ │ ├── initStorage.ts │ │ │ ├── setReplicationRate.ts │ │ │ ├── storageCleanup.ts │ │ │ └── storageSync.ts │ │ ├── utils.ts │ │ └── working-groups │ │ │ ├── groupBudget.ts │ │ │ ├── groupStatus.ts │ │ │ ├── leadOpening.ts │ │ │ ├── openingsAndApplications.ts │ │ │ ├── terminateLeads.ts │ │ │ ├── upcomingOpenings.ts │ │ │ └── workerActions.ts │ ├── graphql │ │ └── queries │ │ │ ├── app.graphql │ │ │ ├── content.graphql │ │ │ ├── contentEvents.graphql │ │ │ ├── contentNftEvents.graphql │ │ │ ├── council.graphql │ │ │ ├── forum.graphql │ │ │ ├── forumEvents.graphql │ │ │ ├── membership.graphql │ │ │ ├── membershipEvents.graphql │ │ │ ├── metaprotocolEvents.graphql │ │ │ ├── proposals.graphql │ │ │ ├── proposalsDiscussion.graphql │ │ │ ├── proposalsDiscussionEvents.graphql │ │ │ ├── proposalsEvents.graphql │ │ │ ├── storage.graphql │ │ │ ├── workingGroups.graphql │ │ │ └── workingGroupsEvents.graphql │ ├── misc │ │ ├── createCategoriesFixture.ts │ │ ├── createChannelsAsMemberFixture.ts │ │ ├── createVideosAsMemberFixture.ts │ │ ├── forkOffChecks.ts │ │ ├── postRuntimeUpgrade.ts │ │ ├── preRuntimeUpgrade.ts │ │ ├── updateAllWorkerRoleAccountsFlow.ts │ │ └── updateWorkerAccountsFixture.ts │ ├── scenarios │ │ ├── app.ts │ │ ├── bonding.ts │ │ ├── cli.ts │ │ ├── content-directory.ts │ │ ├── council.ts │ │ ├── flow.ts │ │ ├── forum.ts │ │ ├── forumPostDeletionsBug.ts │ │ ├── full.ts │ │ ├── initStorageAndDistribution.ts │ │ ├── memberships.ts │ │ ├── postRuntimeUpgrade.ts │ │ ├── preRuntimeUpgrade.ts │ │ ├── proposals.ts │ │ ├── proposalsDiscussion.ts │ │ ├── runtimeUpgrade.ts │ │ ├── setupFaucet.ts │ │ ├── setupNewChain.ts │ │ ├── setupNewChainMultiStorage.ts │ │ ├── storage.ts │ │ └── workingGroups.ts │ ├── sender.ts │ ├── types.ts │ └── utils.ts │ ├── start-storage.sh │ ├── test-setup-new-chain.sh │ └── tsconfig.json ├── tsconfig.json ├── types ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .prettierignore ├── CHANGELOG.md ├── README.md ├── package.json ├── src │ ├── augment │ │ ├── augment-api-consts.ts │ │ ├── augment-api-errors.ts │ │ ├── augment-api-events.ts │ │ ├── augment-api-query.ts │ │ ├── augment-api-rpc.ts │ │ ├── augment-api-runtime.ts │ │ ├── augment-api-tx.ts │ │ ├── augment-api.ts │ │ ├── augment-types.ts │ │ ├── lookup.ts │ │ ├── registry.ts │ │ └── types-lookup.ts │ ├── index.ts │ └── primitives.ts ├── tsconfig-eslint.json ├── tsconfig.cjs.json ├── tsconfig.esm.json └── tsconfig.json ├── utils └── api-scripts │ ├── .gitignore │ ├── README.md │ ├── dev-init-storage.sh │ ├── package.json │ ├── scripts │ ├── example.js │ └── test-transfer.js │ ├── src │ ├── address-format.ts │ ├── buy-membership.ts │ ├── fork-off.ts │ ├── get-chain-metadata.ts │ ├── get-wasm-from-chain.ts │ ├── get-wasm-from-proposal.ts │ ├── gift-membership.ts │ ├── helpers │ │ ├── extrinsics.ts │ │ └── runtimeVersion.js │ ├── initialize-worker.ts │ ├── inspect-wasm-runtime-version.js │ ├── script.ts │ └── status.ts │ └── tsconfig.json └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-node-network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/deploy-node-network.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-playground.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/deploy-playground.yml -------------------------------------------------------------------------------- /.github/workflows/joystream-apps-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/joystream-apps-docker.yml -------------------------------------------------------------------------------- /.github/workflows/joystream-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/joystream-cli.yml -------------------------------------------------------------------------------- /.github/workflows/joystream-node-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/joystream-node-docker.yml -------------------------------------------------------------------------------- /.github/workflows/joystream-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/joystream-node.yml -------------------------------------------------------------------------------- /.github/workflows/joystream-types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/joystream-types.yml -------------------------------------------------------------------------------- /.github/workflows/lint-typescript.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/lint-typescript.yml -------------------------------------------------------------------------------- /.github/workflows/metadata-protobuf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/metadata-protobuf.yml -------------------------------------------------------------------------------- /.github/workflows/query-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/query-node.yml -------------------------------------------------------------------------------- /.github/workflows/run-network-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/run-network-tests.yml -------------------------------------------------------------------------------- /.github/workflows/storage-node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.github/workflows/storage-node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/deploy-node-network-inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/.pipelines/deploy-node-network-inputs.json -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('@joystream/prettier-config'), 3 | } 4 | -------------------------------------------------------------------------------- /.yarnclean: -------------------------------------------------------------------------------- 1 | @types/react-native 2 | @polkadot/ts/node_modules 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/README.md -------------------------------------------------------------------------------- /RUNTIME-CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/RUNTIME-CONTRIBUTING.md -------------------------------------------------------------------------------- /analyses/bench/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | -------------------------------------------------------------------------------- /analyses/bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/Cargo.toml -------------------------------------------------------------------------------- /analyses/bench/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/common.rs -------------------------------------------------------------------------------- /analyses/bench/src/construct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/construct.rs -------------------------------------------------------------------------------- /analyses/bench/src/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/core.rs -------------------------------------------------------------------------------- /analyses/bench/src/generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/generator.rs -------------------------------------------------------------------------------- /analyses/bench/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/main.rs -------------------------------------------------------------------------------- /analyses/bench/src/plots.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/plots.rs -------------------------------------------------------------------------------- /analyses/bench/src/simple_trie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/simple_trie.rs -------------------------------------------------------------------------------- /analyses/bench/src/state_sizes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/state_sizes.rs -------------------------------------------------------------------------------- /analyses/bench/src/tempdb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/tempdb.rs -------------------------------------------------------------------------------- /analyses/bench/src/trie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/trie.rs -------------------------------------------------------------------------------- /analyses/bench/src/trie_series.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/bench/src/trie_series.rs -------------------------------------------------------------------------------- /analyses/fee-analysis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/fee-analysis/.gitignore -------------------------------------------------------------------------------- /analyses/fee-analysis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/fee-analysis/README.md -------------------------------------------------------------------------------- /analyses/fee-analysis/analysis_cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/fee-analysis/analysis_cli/__main__.py -------------------------------------------------------------------------------- /analyses/fee-analysis/analysis_cli/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/fee-analysis/analysis_cli/analysis.py -------------------------------------------------------------------------------- /analyses/fee-analysis/analysis_cli/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/fee-analysis/analysis_cli/config.json -------------------------------------------------------------------------------- /analyses/fee-analysis/analysis_cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/fee-analysis/analysis_cli/parser.py -------------------------------------------------------------------------------- /analyses/fee-analysis/main_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/fee-analysis/main_notebook.ipynb -------------------------------------------------------------------------------- /analyses/fee-analysis/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/analyses/fee-analysis/requirements.txt -------------------------------------------------------------------------------- /bin/inspect/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/inspect/Cargo.toml -------------------------------------------------------------------------------- /bin/inspect/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/inspect/src/cli.rs -------------------------------------------------------------------------------- /bin/inspect/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/inspect/src/command.rs -------------------------------------------------------------------------------- /bin/inspect/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/inspect/src/lib.rs -------------------------------------------------------------------------------- /bin/node/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/Cargo.toml -------------------------------------------------------------------------------- /bin/node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/LICENSE -------------------------------------------------------------------------------- /bin/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/README.md -------------------------------------------------------------------------------- /bin/node/bin/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/bin/main.rs -------------------------------------------------------------------------------- /bin/node/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/build.rs -------------------------------------------------------------------------------- /bin/node/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/benchmarking.rs -------------------------------------------------------------------------------- /bin/node/src/chain_spec/argo_bridge_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/chain_spec/argo_bridge_config.rs -------------------------------------------------------------------------------- /bin/node/src/chain_spec/content_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/chain_spec/content_config.rs -------------------------------------------------------------------------------- /bin/node/src/chain_spec/council_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/chain_spec/council_config.rs -------------------------------------------------------------------------------- /bin/node/src/chain_spec/forum_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/chain_spec/forum_config.rs -------------------------------------------------------------------------------- /bin/node/src/chain_spec/initial_balances.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/chain_spec/initial_balances.rs -------------------------------------------------------------------------------- /bin/node/src/chain_spec/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/chain_spec/mod.rs -------------------------------------------------------------------------------- /bin/node/src/chain_spec/storage_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/chain_spec/storage_config.rs -------------------------------------------------------------------------------- /bin/node/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/cli.rs -------------------------------------------------------------------------------- /bin/node/src/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/command.rs -------------------------------------------------------------------------------- /bin/node/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/lib.rs -------------------------------------------------------------------------------- /bin/node/src/node_executor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/node_executor.rs -------------------------------------------------------------------------------- /bin/node/src/node_rpc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/node_rpc.rs -------------------------------------------------------------------------------- /bin/node/src/service.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/src/service.rs -------------------------------------------------------------------------------- /bin/node/validator-node-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/node/validator-node-banner.svg -------------------------------------------------------------------------------- /bin/overrides/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/overrides/Cargo.toml -------------------------------------------------------------------------------- /bin/overrides/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/overrides/src/lib.rs -------------------------------------------------------------------------------- /bin/utils/call-sizes/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/utils/call-sizes/Cargo.toml -------------------------------------------------------------------------------- /bin/utils/call-sizes/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/utils/call-sizes/src/main.rs -------------------------------------------------------------------------------- /bin/utils/chain-spec-builder/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/utils/chain-spec-builder/Cargo.toml -------------------------------------------------------------------------------- /bin/utils/chain-spec-builder/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/utils/chain-spec-builder/build.rs -------------------------------------------------------------------------------- /bin/utils/chain-spec-builder/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/utils/chain-spec-builder/src/main.rs -------------------------------------------------------------------------------- /bin/utils/session-keys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/utils/session-keys/Cargo.toml -------------------------------------------------------------------------------- /bin/utils/session-keys/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/bin/utils/session-keys/src/main.rs -------------------------------------------------------------------------------- /chain-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/chain-metadata.json -------------------------------------------------------------------------------- /cli/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/.eslintignore -------------------------------------------------------------------------------- /cli/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/.eslintrc.js -------------------------------------------------------------------------------- /cli/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/.gitignore -------------------------------------------------------------------------------- /cli/.prettierignore: -------------------------------------------------------------------------------- 1 | /lib/ 2 | .nyc_output 3 | /examples 4 | -------------------------------------------------------------------------------- /cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/README.md -------------------------------------------------------------------------------- /cli/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/bin/run -------------------------------------------------------------------------------- /cli/bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /cli/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/codegen.yml -------------------------------------------------------------------------------- /cli/examples/content/ChannelPayoutsVector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/ChannelPayoutsVector.json -------------------------------------------------------------------------------- /cli/examples/content/CreateApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/CreateApp.json -------------------------------------------------------------------------------- /cli/examples/content/CreateCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/CreateCategory.json -------------------------------------------------------------------------------- /cli/examples/content/CreateChannel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/CreateChannel.json -------------------------------------------------------------------------------- /cli/examples/content/CreateVideo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/CreateVideo.json -------------------------------------------------------------------------------- /cli/examples/content/UpdateApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/UpdateApp.json -------------------------------------------------------------------------------- /cli/examples/content/UpdateCategory.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Science" 3 | } 4 | -------------------------------------------------------------------------------- /cli/examples/content/UpdateChannel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/UpdateChannel.json -------------------------------------------------------------------------------- /cli/examples/content/UpdateVideo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/UpdateVideo.json -------------------------------------------------------------------------------- /cli/examples/content/avatar-photo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/avatar-photo-1.png -------------------------------------------------------------------------------- /cli/examples/content/avatar-photo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/avatar-photo-2.png -------------------------------------------------------------------------------- /cli/examples/content/cover-photo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/cover-photo-1.png -------------------------------------------------------------------------------- /cli/examples/content/cover-photo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/cover-photo-2.png -------------------------------------------------------------------------------- /cli/examples/content/subtitle-en-1.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/subtitle-en-1.srt -------------------------------------------------------------------------------- /cli/examples/content/subtitle-en-2.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/subtitle-en-2.srt -------------------------------------------------------------------------------- /cli/examples/content/subtitle-fr-1.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/subtitle-fr-1.srt -------------------------------------------------------------------------------- /cli/examples/content/subtitle-fr-2.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/subtitle-fr-2.srt -------------------------------------------------------------------------------- /cli/examples/content/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/content/video.mp4 -------------------------------------------------------------------------------- /cli/examples/working-groups/CreateOpening.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/examples/working-groups/CreateOpening.json -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/scripts/content-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/scripts/content-test.sh -------------------------------------------------------------------------------- /cli/scripts/forum-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/scripts/forum-test.sh -------------------------------------------------------------------------------- /cli/scripts/membership-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/scripts/membership-test.sh -------------------------------------------------------------------------------- /cli/scripts/working-groups-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/scripts/working-groups-test.sh -------------------------------------------------------------------------------- /cli/src/@types/inquirer-datepicker-prompt/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'inquirer-datepicker-prompt' 2 | -------------------------------------------------------------------------------- /cli/src/@types/ipfs-http-client/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'ipfs-http-client' 2 | -------------------------------------------------------------------------------- /cli/src/@types/ipfs-only-hash/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'ipfs-only-hash' 2 | -------------------------------------------------------------------------------- /cli/src/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/Api.ts -------------------------------------------------------------------------------- /cli/src/Consts.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_DATE_FORMAT = 'YYYY-MM-DD HH:mm:ss' 2 | -------------------------------------------------------------------------------- /cli/src/ExitCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/ExitCodes.ts -------------------------------------------------------------------------------- /cli/src/QueryNodeApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/QueryNodeApi.ts -------------------------------------------------------------------------------- /cli/src/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/Types.ts -------------------------------------------------------------------------------- /cli/src/base/AccountsCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/AccountsCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/ApiCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/ApiCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/AppCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/AppCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/ContentDirectoryCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/ContentDirectoryCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/DefaultCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/DefaultCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/FeeProfileCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/FeeProfileCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/ForumCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/ForumCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/MembershipsCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/MembershipsCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/ProtobufMessageCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/ProtobufMessageCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/SignOfflineCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/SignOfflineCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/StakingCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/StakingCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/StateAwareCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/StateAwareCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/UploadCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/UploadCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/WorkingGroupCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/WorkingGroupCommandBase.ts -------------------------------------------------------------------------------- /cli/src/base/WorkingGroupsCommandBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/base/WorkingGroupsCommandBase.ts -------------------------------------------------------------------------------- /cli/src/commands/account/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/account/create.ts -------------------------------------------------------------------------------- /cli/src/commands/account/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/account/export.ts -------------------------------------------------------------------------------- /cli/src/commands/account/forget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/account/forget.ts -------------------------------------------------------------------------------- /cli/src/commands/account/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/account/import.ts -------------------------------------------------------------------------------- /cli/src/commands/account/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/account/info.ts -------------------------------------------------------------------------------- /cli/src/commands/account/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/account/list.ts -------------------------------------------------------------------------------- /cli/src/commands/account/transferTokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/account/transferTokens.ts -------------------------------------------------------------------------------- /cli/src/commands/api/getQueryNodeEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/api/getQueryNodeEndpoint.ts -------------------------------------------------------------------------------- /cli/src/commands/api/getUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/api/getUri.ts -------------------------------------------------------------------------------- /cli/src/commands/api/inspect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/api/inspect.ts -------------------------------------------------------------------------------- /cli/src/commands/api/setQueryNodeEndpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/api/setQueryNodeEndpoint.ts -------------------------------------------------------------------------------- /cli/src/commands/api/setUri.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/api/setUri.ts -------------------------------------------------------------------------------- /cli/src/commands/apps/createApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/apps/createApp.ts -------------------------------------------------------------------------------- /cli/src/commands/apps/updateApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/apps/updateApp.ts -------------------------------------------------------------------------------- /cli/src/commands/content/addCuratorToGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/addCuratorToGroup.ts -------------------------------------------------------------------------------- /cli/src/commands/content/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/channel.ts -------------------------------------------------------------------------------- /cli/src/commands/content/channelPayoutProof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/channelPayoutProof.ts -------------------------------------------------------------------------------- /cli/src/commands/content/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/channels.ts -------------------------------------------------------------------------------- /cli/src/commands/content/claimChannelReward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/claimChannelReward.ts -------------------------------------------------------------------------------- /cli/src/commands/content/createChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/createChannel.ts -------------------------------------------------------------------------------- /cli/src/commands/content/createCuratorGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/createCuratorGroup.ts -------------------------------------------------------------------------------- /cli/src/commands/content/createVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/createVideo.ts -------------------------------------------------------------------------------- /cli/src/commands/content/curatorGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/curatorGroup.ts -------------------------------------------------------------------------------- /cli/src/commands/content/curatorGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/curatorGroups.ts -------------------------------------------------------------------------------- /cli/src/commands/content/deleteChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/deleteChannel.ts -------------------------------------------------------------------------------- /cli/src/commands/content/deleteVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/deleteVideo.ts -------------------------------------------------------------------------------- /cli/src/commands/content/reuploadAssets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/reuploadAssets.ts -------------------------------------------------------------------------------- /cli/src/commands/content/updateChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/updateChannel.ts -------------------------------------------------------------------------------- /cli/src/commands/content/updateVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/updateVideo.ts -------------------------------------------------------------------------------- /cli/src/commands/content/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/video.ts -------------------------------------------------------------------------------- /cli/src/commands/content/videos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/content/videos.ts -------------------------------------------------------------------------------- /cli/src/commands/council/fundBudget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/council/fundBudget.ts -------------------------------------------------------------------------------- /cli/src/commands/fee-profile/addForumPost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/fee-profile/addForumPost.ts -------------------------------------------------------------------------------- /cli/src/commands/fee-profile/buyMembership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/fee-profile/buyMembership.ts -------------------------------------------------------------------------------- /cli/src/commands/fee-profile/createChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/fee-profile/createChannel.ts -------------------------------------------------------------------------------- /cli/src/commands/fee-profile/createVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/fee-profile/createVideo.ts -------------------------------------------------------------------------------- /cli/src/commands/fee-profile/deleteChannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/fee-profile/deleteChannel.ts -------------------------------------------------------------------------------- /cli/src/commands/fee-profile/deleteVideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/fee-profile/deleteVideo.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/addPost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/addPost.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/categories.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/category.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/createCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/createCategory.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/createThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/createThread.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/deleteCategory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/deleteCategory.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/moderatePost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/moderatePost.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/moderateThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/moderateThread.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/moveThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/moveThread.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/posts.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/setStickiedThreads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/setStickiedThreads.ts -------------------------------------------------------------------------------- /cli/src/commands/forum/threads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/forum/threads.ts -------------------------------------------------------------------------------- /cli/src/commands/membership/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/membership/buy.ts -------------------------------------------------------------------------------- /cli/src/commands/membership/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/membership/details.ts -------------------------------------------------------------------------------- /cli/src/commands/membership/memberRemark.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/membership/memberRemark.ts -------------------------------------------------------------------------------- /cli/src/commands/membership/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/membership/update.ts -------------------------------------------------------------------------------- /cli/src/commands/membership/updateAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/membership/updateAccounts.ts -------------------------------------------------------------------------------- /cli/src/commands/staking/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/staking/validate.ts -------------------------------------------------------------------------------- /cli/src/commands/util/decodeMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/util/decodeMessage.ts -------------------------------------------------------------------------------- /cli/src/commands/util/encodeMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/util/encodeMessage.ts -------------------------------------------------------------------------------- /cli/src/commands/util/messageStructure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/util/messageStructure.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/application.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/apply.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/evictWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/evictWorker.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/fillOpening.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/fillOpening.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/leaveRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/leaveRole.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/opening.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/opening.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/openings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/openings.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/overview.ts -------------------------------------------------------------------------------- /cli/src/commands/working-groups/slashWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/commands/working-groups/slashWorker.ts -------------------------------------------------------------------------------- /cli/src/graphql/queries/content.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/graphql/queries/content.graphql -------------------------------------------------------------------------------- /cli/src/graphql/queries/membership.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/graphql/queries/membership.graphql -------------------------------------------------------------------------------- /cli/src/graphql/queries/storage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/graphql/queries/storage.graphql -------------------------------------------------------------------------------- /cli/src/graphql/queries/workingGroups.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/graphql/queries/workingGroups.graphql -------------------------------------------------------------------------------- /cli/src/helpers/InputOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/helpers/InputOutput.ts -------------------------------------------------------------------------------- /cli/src/helpers/JsonSchemaPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/helpers/JsonSchemaPrompt.ts -------------------------------------------------------------------------------- /cli/src/helpers/display.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/helpers/display.ts -------------------------------------------------------------------------------- /cli/src/helpers/promptOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/helpers/promptOptions.ts -------------------------------------------------------------------------------- /cli/src/helpers/prompting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/helpers/prompting.ts -------------------------------------------------------------------------------- /cli/src/helpers/serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/helpers/serialization.ts -------------------------------------------------------------------------------- /cli/src/helpers/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/helpers/validation.ts -------------------------------------------------------------------------------- /cli/src/index.ts: -------------------------------------------------------------------------------- 1 | export { run } from '@oclif/command' 2 | -------------------------------------------------------------------------------- /cli/src/schemas/ContentDirectory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/schemas/ContentDirectory.ts -------------------------------------------------------------------------------- /cli/src/schemas/WorkingGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/schemas/WorkingGroups.ts -------------------------------------------------------------------------------- /cli/src/schemas/json/Assets.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/schemas/json/Assets.schema.json -------------------------------------------------------------------------------- /cli/src/validators/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/src/validators/common.ts -------------------------------------------------------------------------------- /cli/test/commands/council/info.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/test/commands/council/info.test.ts -------------------------------------------------------------------------------- /cli/test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/test/mocha.opts -------------------------------------------------------------------------------- /cli/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/test/tsconfig.json -------------------------------------------------------------------------------- /cli/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/cli/tsconfig.json -------------------------------------------------------------------------------- /colossus.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/colossus.Dockerfile -------------------------------------------------------------------------------- /devops/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/.eslintrc.js -------------------------------------------------------------------------------- /devops/ansible/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/.gitignore -------------------------------------------------------------------------------- /devops/ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/ansible.cfg -------------------------------------------------------------------------------- /devops/ansible/build-code.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/build-code.yml -------------------------------------------------------------------------------- /devops/ansible/build-joystream-node-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/build-joystream-node-docker.yml -------------------------------------------------------------------------------- /devops/ansible/deploy-full-node-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/deploy-full-node-playbook.yml -------------------------------------------------------------------------------- /devops/ansible/deploy-network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/deploy-network.yml -------------------------------------------------------------------------------- /devops/ansible/deploy-playground-playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/deploy-playground-playbook.yml -------------------------------------------------------------------------------- /devops/ansible/deploy-rpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/deploy-rpc.yml -------------------------------------------------------------------------------- /devops/ansible/fetch-binaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/fetch-binaries.yml -------------------------------------------------------------------------------- /devops/ansible/group_vars/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/group_vars/all -------------------------------------------------------------------------------- /devops/ansible/install-tools.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/install-tools.yml -------------------------------------------------------------------------------- /devops/ansible/library/authority_accounts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/library/authority_accounts.py -------------------------------------------------------------------------------- /devops/ansible/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/requirements.yml -------------------------------------------------------------------------------- /devops/ansible/roles/bootnodes/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/roles/bootnodes/tasks/main.yml -------------------------------------------------------------------------------- /devops/ansible/roles/rpc/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/roles/rpc/tasks/main.yml -------------------------------------------------------------------------------- /devops/ansible/roles/validators/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/ansible/roles/validators/tasks/main.yml -------------------------------------------------------------------------------- /devops/aws/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/.gitignore -------------------------------------------------------------------------------- /devops/aws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/README.md -------------------------------------------------------------------------------- /devops/aws/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/ansible.cfg -------------------------------------------------------------------------------- /devops/aws/cloudformation/network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/cloudformation/network.yml -------------------------------------------------------------------------------- /devops/aws/cloudformation/single-instance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/cloudformation/single-instance.yml -------------------------------------------------------------------------------- /devops/aws/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/common.sh -------------------------------------------------------------------------------- /devops/aws/deploy-infra.sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/deploy-infra.sample.cfg -------------------------------------------------------------------------------- /devops/aws/deploy-infra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/deploy-infra.sh -------------------------------------------------------------------------------- /devops/aws/deploy-playground.sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/deploy-playground.sample.cfg -------------------------------------------------------------------------------- /devops/aws/deploy-playground.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/deploy-playground.sh -------------------------------------------------------------------------------- /devops/aws/deploy-single-node.sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/deploy-single-node.sample.cfg -------------------------------------------------------------------------------- /devops/aws/deploy-single-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/deploy-single-node.sh -------------------------------------------------------------------------------- /devops/aws/destroy-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/aws/destroy-stack.sh -------------------------------------------------------------------------------- /devops/eslint-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/eslint-config/index.js -------------------------------------------------------------------------------- /devops/eslint-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/eslint-config/package.json -------------------------------------------------------------------------------- /devops/extrinsic-ordering/filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/extrinsic-ordering/filter.sh -------------------------------------------------------------------------------- /devops/extrinsic-ordering/tx-ordering.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/extrinsic-ordering/tx-ordering.yml -------------------------------------------------------------------------------- /devops/frame-weight-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/frame-weight-template.hbs -------------------------------------------------------------------------------- /devops/git-hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/git-hooks/pre-commit -------------------------------------------------------------------------------- /devops/git-hooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/git-hooks/pre-push -------------------------------------------------------------------------------- /devops/joystream-pallet-weight-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/joystream-pallet-weight-template.hbs -------------------------------------------------------------------------------- /devops/kubernetes/.gitignore: -------------------------------------------------------------------------------- 1 | kubeconfig 2 | 3 | -------------------------------------------------------------------------------- /devops/kubernetes/HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/HOWTO.md -------------------------------------------------------------------------------- /devops/kubernetes/argus/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /node_modules/ 3 | kubeconfig* 4 | package-lock.json 5 | Pulumi.*.yaml 6 | -------------------------------------------------------------------------------- /devops/kubernetes/argus/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/argus/Pulumi.yaml -------------------------------------------------------------------------------- /devops/kubernetes/argus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/argus/README.md -------------------------------------------------------------------------------- /devops/kubernetes/argus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/argus/index.ts -------------------------------------------------------------------------------- /devops/kubernetes/argus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/argus/package.json -------------------------------------------------------------------------------- /devops/kubernetes/argus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/argus/tsconfig.json -------------------------------------------------------------------------------- /devops/kubernetes/kind-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/kind-cluster.yaml -------------------------------------------------------------------------------- /devops/kubernetes/node-network/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/.gitignore -------------------------------------------------------------------------------- /devops/kubernetes/node-network/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/Pulumi.yaml -------------------------------------------------------------------------------- /devops/kubernetes/node-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/README.md -------------------------------------------------------------------------------- /devops/kubernetes/node-network/configMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/configMap.ts -------------------------------------------------------------------------------- /devops/kubernetes/node-network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/index.ts -------------------------------------------------------------------------------- /devops/kubernetes/node-network/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/ingress.yaml -------------------------------------------------------------------------------- /devops/kubernetes/node-network/json_modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/json_modify.py -------------------------------------------------------------------------------- /devops/kubernetes/node-network/nfsVolume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/nfsVolume.ts -------------------------------------------------------------------------------- /devops/kubernetes/node-network/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/package.json -------------------------------------------------------------------------------- /devops/kubernetes/node-network/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/tsconfig.json -------------------------------------------------------------------------------- /devops/kubernetes/node-network/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/utils.ts -------------------------------------------------------------------------------- /devops/kubernetes/node-network/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/node-network/validator.ts -------------------------------------------------------------------------------- /devops/kubernetes/orion/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /node_modules/ 3 | kubeconfig* 4 | package-lock.json 5 | Pulumi.*.yaml 6 | -------------------------------------------------------------------------------- /devops/kubernetes/orion/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/orion/Pulumi.yaml -------------------------------------------------------------------------------- /devops/kubernetes/orion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/orion/README.md -------------------------------------------------------------------------------- /devops/kubernetes/orion/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/orion/index.ts -------------------------------------------------------------------------------- /devops/kubernetes/orion/mongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/orion/mongo.ts -------------------------------------------------------------------------------- /devops/kubernetes/orion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/orion/package.json -------------------------------------------------------------------------------- /devops/kubernetes/orion/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/orion/tsconfig.json -------------------------------------------------------------------------------- /devops/kubernetes/pulumi-common/caddy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/pulumi-common/caddy.ts -------------------------------------------------------------------------------- /devops/kubernetes/pulumi-common/configMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/pulumi-common/configMap.ts -------------------------------------------------------------------------------- /devops/kubernetes/pulumi-common/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/pulumi-common/database.ts -------------------------------------------------------------------------------- /devops/kubernetes/pulumi-common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/pulumi-common/index.ts -------------------------------------------------------------------------------- /devops/kubernetes/pulumi-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/pulumi-common/package.json -------------------------------------------------------------------------------- /devops/kubernetes/pulumi-common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/pulumi-common/tsconfig.json -------------------------------------------------------------------------------- /devops/kubernetes/pulumi-common/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/pulumi-common/volume.ts -------------------------------------------------------------------------------- /devops/kubernetes/query-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/.gitignore -------------------------------------------------------------------------------- /devops/kubernetes/query-node/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/Pulumi.yaml -------------------------------------------------------------------------------- /devops/kubernetes/query-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/README.md -------------------------------------------------------------------------------- /devops/kubernetes/query-node/configMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/configMap.ts -------------------------------------------------------------------------------- /devops/kubernetes/query-node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/index.ts -------------------------------------------------------------------------------- /devops/kubernetes/query-node/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/ingress.yaml -------------------------------------------------------------------------------- /devops/kubernetes/query-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/package.json -------------------------------------------------------------------------------- /devops/kubernetes/query-node/s3Helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/s3Helpers.ts -------------------------------------------------------------------------------- /devops/kubernetes/query-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/query-node/tsconfig.json -------------------------------------------------------------------------------- /devops/kubernetes/storage-node/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /node_modules/ 3 | kubeconfig* 4 | package-lock.json 5 | Pulumi.*.yaml 6 | -------------------------------------------------------------------------------- /devops/kubernetes/storage-node/Pulumi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/storage-node/Pulumi.yaml -------------------------------------------------------------------------------- /devops/kubernetes/storage-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/storage-node/README.md -------------------------------------------------------------------------------- /devops/kubernetes/storage-node/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/storage-node/index.ts -------------------------------------------------------------------------------- /devops/kubernetes/storage-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/storage-node/package.json -------------------------------------------------------------------------------- /devops/kubernetes/storage-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/kubernetes/storage-node/tsconfig.json -------------------------------------------------------------------------------- /devops/prettier-config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/prettier-config/index.js -------------------------------------------------------------------------------- /devops/prettier-config/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/prettier-config/package.json -------------------------------------------------------------------------------- /devops/vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/devops/vscode/settings.json -------------------------------------------------------------------------------- /distributor-node.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node.Dockerfile -------------------------------------------------------------------------------- /distributor-node/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/.eslintignore -------------------------------------------------------------------------------- /distributor-node/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/.eslintrc.js -------------------------------------------------------------------------------- /distributor-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/.gitignore -------------------------------------------------------------------------------- /distributor-node/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/.prettierignore -------------------------------------------------------------------------------- /distributor-node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/CHANGELOG.md -------------------------------------------------------------------------------- /distributor-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/README.md -------------------------------------------------------------------------------- /distributor-node/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/bin/run -------------------------------------------------------------------------------- /distributor-node/bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /distributor-node/client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.1 -------------------------------------------------------------------------------- /distributor-node/client/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/client/api.ts -------------------------------------------------------------------------------- /distributor-node/client/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/client/base.ts -------------------------------------------------------------------------------- /distributor-node/client/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/client/common.ts -------------------------------------------------------------------------------- /distributor-node/client/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/client/configuration.ts -------------------------------------------------------------------------------- /distributor-node/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/client/index.ts -------------------------------------------------------------------------------- /distributor-node/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/client/package.json -------------------------------------------------------------------------------- /distributor-node/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/client/tsconfig.json -------------------------------------------------------------------------------- /distributor-node/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/config.yml -------------------------------------------------------------------------------- /distributor-node/docs/api/operator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/api/operator/index.md -------------------------------------------------------------------------------- /distributor-node/docs/api/public/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/api/public/index.md -------------------------------------------------------------------------------- /distributor-node/docs/api/templates/main.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/api/templates/main.dot -------------------------------------------------------------------------------- /distributor-node/docs/commands/dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/commands/dev.md -------------------------------------------------------------------------------- /distributor-node/docs/commands/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/commands/help.md -------------------------------------------------------------------------------- /distributor-node/docs/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/commands/index.md -------------------------------------------------------------------------------- /distributor-node/docs/commands/leader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/commands/leader.md -------------------------------------------------------------------------------- /distributor-node/docs/commands/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/commands/node.md -------------------------------------------------------------------------------- /distributor-node/docs/commands/operator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/commands/operator.md -------------------------------------------------------------------------------- /distributor-node/docs/commands/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/commands/start.md -------------------------------------------------------------------------------- /distributor-node/docs/node/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/node/index.md -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition-properties-directories-properties-assets.md: -------------------------------------------------------------------------------- 1 | ## assets Type 2 | 3 | `string` 4 | -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition-properties-directories-properties-cachestate.md: -------------------------------------------------------------------------------- 1 | ## cacheState Type 2 | 3 | `string` 4 | -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition-properties-keys-items-oneof-json-backup-file-properties-keyfile.md: -------------------------------------------------------------------------------- 1 | ## keyfile Type 2 | 3 | `string` 4 | -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition-properties-keys-items-oneof-mnemonic-phrase-properties-mnemonic.md: -------------------------------------------------------------------------------- 1 | ## mnemonic Type 2 | 3 | `string` 4 | -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition-properties-keys-items-oneof-substrate-uri-properties-suri.md: -------------------------------------------------------------------------------- 1 | ## suri Type 2 | 3 | `string` 4 | -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition-properties-logs-properties-file-logging-options-properties-archive.md: -------------------------------------------------------------------------------- 1 | ## archive Type 2 | 3 | `boolean` 4 | -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition-properties-logs-properties-file-logging-options-properties-path.md: -------------------------------------------------------------------------------- 1 | ## path Type 2 | 3 | `string` 4 | -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition-properties-operatorapi-properties-hmacsecret.md: -------------------------------------------------------------------------------- 1 | ## hmacSecret Type 2 | 3 | `string` 4 | -------------------------------------------------------------------------------- /distributor-node/docs/schema/definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/docs/schema/definition.md -------------------------------------------------------------------------------- /distributor-node/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/openapitools.json -------------------------------------------------------------------------------- /distributor-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/package.json -------------------------------------------------------------------------------- /distributor-node/scripts/init-bucket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/scripts/init-bucket.sh -------------------------------------------------------------------------------- /distributor-node/scripts/test-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/scripts/test-commands.sh -------------------------------------------------------------------------------- /distributor-node/src/@types/@elastic/esc-winston-format/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@elastic/ecs-winston-format' 2 | -------------------------------------------------------------------------------- /distributor-node/src/@types/js-image-generator/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'js-image-generator' 2 | -------------------------------------------------------------------------------- /distributor-node/src/api-spec/operator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/api-spec/operator.yml -------------------------------------------------------------------------------- /distributor-node/src/api-spec/public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/api-spec/public.yml -------------------------------------------------------------------------------- /distributor-node/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/app/index.ts -------------------------------------------------------------------------------- /distributor-node/src/command-base/ExitCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/command-base/ExitCodes.ts -------------------------------------------------------------------------------- /distributor-node/src/command-base/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/command-base/accounts.ts -------------------------------------------------------------------------------- /distributor-node/src/command-base/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/command-base/api.ts -------------------------------------------------------------------------------- /distributor-node/src/command-base/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/command-base/default.ts -------------------------------------------------------------------------------- /distributor-node/src/command-base/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/command-base/node.ts -------------------------------------------------------------------------------- /distributor-node/src/commands/node/shutdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/commands/node/shutdown.ts -------------------------------------------------------------------------------- /distributor-node/src/commands/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/commands/start.ts -------------------------------------------------------------------------------- /distributor-node/src/index.ts: -------------------------------------------------------------------------------- 1 | export { run } from '@oclif/command' 2 | -------------------------------------------------------------------------------- /distributor-node/src/schemas/configSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/schemas/configSchema.ts -------------------------------------------------------------------------------- /distributor-node/src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/schemas/index.ts -------------------------------------------------------------------------------- /distributor-node/src/schemas/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/schemas/utils.ts -------------------------------------------------------------------------------- /distributor-node/src/services/logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/services/logging/index.ts -------------------------------------------------------------------------------- /distributor-node/src/types/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/types/app.ts -------------------------------------------------------------------------------- /distributor-node/src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/types/common.ts -------------------------------------------------------------------------------- /distributor-node/src/types/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/types/config.ts -------------------------------------------------------------------------------- /distributor-node/src/types/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/types/content.ts -------------------------------------------------------------------------------- /distributor-node/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/types/index.ts -------------------------------------------------------------------------------- /distributor-node/src/types/operatorApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/types/operatorApi.ts -------------------------------------------------------------------------------- /distributor-node/src/types/publicApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/src/types/publicApi.ts -------------------------------------------------------------------------------- /distributor-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/distributor-node/tsconfig.json -------------------------------------------------------------------------------- /docker-compose-no-bind-volumes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/docker-compose-no-bind-volumes.yml -------------------------------------------------------------------------------- /docker-compose.elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/docker-compose.elasticsearch.yml -------------------------------------------------------------------------------- /docker-compose.storage-squid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/docker-compose.storage-squid.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoints/distributor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/entrypoints/distributor.sh -------------------------------------------------------------------------------- /entrypoints/graphql-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/entrypoints/graphql-server.sh -------------------------------------------------------------------------------- /entrypoints/storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/entrypoints/storage.sh -------------------------------------------------------------------------------- /eslint-local-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/eslint-local-rules.js -------------------------------------------------------------------------------- /joy-mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joy-mainnet.json -------------------------------------------------------------------------------- /joystream-node.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystream-node.Dockerfile -------------------------------------------------------------------------------- /joystreamjs/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/.eslintrc.js -------------------------------------------------------------------------------- /joystreamjs/.gitignore: -------------------------------------------------------------------------------- 1 | /lib 2 | node_modules 3 | -------------------------------------------------------------------------------- /joystreamjs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/CHANGELOG.md -------------------------------------------------------------------------------- /joystreamjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/README.md -------------------------------------------------------------------------------- /joystreamjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/package.json -------------------------------------------------------------------------------- /joystreamjs/src/content/channelPayouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/src/content/channelPayouts.ts -------------------------------------------------------------------------------- /joystreamjs/src/content/index.ts: -------------------------------------------------------------------------------- 1 | export * from './channelPayouts' 2 | -------------------------------------------------------------------------------- /joystreamjs/src/utils/InputOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/src/utils/InputOutput.ts -------------------------------------------------------------------------------- /joystreamjs/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/src/utils/index.ts -------------------------------------------------------------------------------- /joystreamjs/src/utils/serialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/src/utils/serialization.ts -------------------------------------------------------------------------------- /joystreamjs/tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/tsconfig.cjs.json -------------------------------------------------------------------------------- /joystreamjs/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/tsconfig.esm.json -------------------------------------------------------------------------------- /joystreamjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/joystreamjs/tsconfig.json -------------------------------------------------------------------------------- /metadata-protobuf/.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | proto/ 3 | compiled/ 4 | .eslintrc.js 5 | -------------------------------------------------------------------------------- /metadata-protobuf/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/.eslintrc.js -------------------------------------------------------------------------------- /metadata-protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/.gitignore -------------------------------------------------------------------------------- /metadata-protobuf/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/.prettierignore -------------------------------------------------------------------------------- /metadata-protobuf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/README.md -------------------------------------------------------------------------------- /metadata-protobuf/doc-appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/doc-appendix.md -------------------------------------------------------------------------------- /metadata-protobuf/doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/doc/index.md -------------------------------------------------------------------------------- /metadata-protobuf/generate-md-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/generate-md-doc.sh -------------------------------------------------------------------------------- /metadata-protobuf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/package.json -------------------------------------------------------------------------------- /metadata-protobuf/proto/App.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/App.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Bounty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Bounty.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Channel.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/ChannelPayouts.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/ChannelPayouts.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Council.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Council.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Forum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Forum.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Membership.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Membership.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Metaprotocol.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Metaprotocol.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Person.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Person.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Series.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Series.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Storage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Storage.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Token.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Token.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/Video.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/Video.proto -------------------------------------------------------------------------------- /metadata-protobuf/proto/WorkingGroups.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/proto/WorkingGroups.proto -------------------------------------------------------------------------------- /metadata-protobuf/scripts/compile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/scripts/compile.ts -------------------------------------------------------------------------------- /metadata-protobuf/scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/scripts/tsconfig.json -------------------------------------------------------------------------------- /metadata-protobuf/src/KnownLicenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/src/KnownLicenses.json -------------------------------------------------------------------------------- /metadata-protobuf/src/consts.ts: -------------------------------------------------------------------------------- 1 | export const MAX_TAGS_PER_FORUM_THREAD = 5 2 | -------------------------------------------------------------------------------- /metadata-protobuf/src/index.ts: -------------------------------------------------------------------------------- 1 | // protobuf message constructors 2 | export * from '../compiled' 3 | -------------------------------------------------------------------------------- /metadata-protobuf/src/json/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/src/json/index.ts -------------------------------------------------------------------------------- /metadata-protobuf/src/licenses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/src/licenses.ts -------------------------------------------------------------------------------- /metadata-protobuf/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/src/types.ts -------------------------------------------------------------------------------- /metadata-protobuf/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/src/utils.ts -------------------------------------------------------------------------------- /metadata-protobuf/test/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/test/channel.ts -------------------------------------------------------------------------------- /metadata-protobuf/test/forum-tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/test/forum-tags.ts -------------------------------------------------------------------------------- /metadata-protobuf/test/license-codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/test/license-codes.ts -------------------------------------------------------------------------------- /metadata-protobuf/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/test/tsconfig.json -------------------------------------------------------------------------------- /metadata-protobuf/test/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/test/video.ts -------------------------------------------------------------------------------- /metadata-protobuf/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/metadata-protobuf/tsconfig.json -------------------------------------------------------------------------------- /opentelemetry/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/opentelemetry/.env -------------------------------------------------------------------------------- /opentelemetry/.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | node_modules 3 | -------------------------------------------------------------------------------- /opentelemetry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/opentelemetry/index.ts -------------------------------------------------------------------------------- /opentelemetry/instrumentations/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/opentelemetry/instrumentations/default.ts -------------------------------------------------------------------------------- /opentelemetry/instrumentations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/opentelemetry/instrumentations/index.ts -------------------------------------------------------------------------------- /opentelemetry/instrumentations/storage-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/opentelemetry/instrumentations/storage-node.ts -------------------------------------------------------------------------------- /opentelemetry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/opentelemetry/package.json -------------------------------------------------------------------------------- /opentelemetry/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/opentelemetry/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/package.json -------------------------------------------------------------------------------- /postgres.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/postgres.conf -------------------------------------------------------------------------------- /query-node.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node.Dockerfile -------------------------------------------------------------------------------- /query-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/.gitignore -------------------------------------------------------------------------------- /query-node/.prettierignore: -------------------------------------------------------------------------------- 1 | chain-metadata/ 2 | -------------------------------------------------------------------------------- /query-node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/CHANGELOG.md -------------------------------------------------------------------------------- /query-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/README.md -------------------------------------------------------------------------------- /query-node/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/benchmark.sh -------------------------------------------------------------------------------- /query-node/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/build.sh -------------------------------------------------------------------------------- /query-node/chain-metadata/1001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/chain-metadata/1001.json -------------------------------------------------------------------------------- /query-node/chain-metadata/2001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/chain-metadata/2001.json -------------------------------------------------------------------------------- /query-node/chain-metadata/2002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/chain-metadata/2002.json -------------------------------------------------------------------------------- /query-node/chain-metadata/2003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/chain-metadata/2003.json -------------------------------------------------------------------------------- /query-node/chain-metadata/2004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/chain-metadata/2004.json -------------------------------------------------------------------------------- /query-node/codegen/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/codegen/package.json -------------------------------------------------------------------------------- /query-node/codegen/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/codegen/yarn.lock -------------------------------------------------------------------------------- /query-node/graphql-server-tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/graphql-server-tsconfig.json -------------------------------------------------------------------------------- /query-node/kill.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/kill.sh -------------------------------------------------------------------------------- /query-node/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/manifest.yml -------------------------------------------------------------------------------- /query-node/mappings/.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | generated 3 | src/bounty.ts 4 | -------------------------------------------------------------------------------- /query-node/mappings/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/.eslintrc.js -------------------------------------------------------------------------------- /query-node/mappings/.prettierignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | generated 3 | -------------------------------------------------------------------------------- /query-node/mappings/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | ...require('@joystream/prettier-config'), 3 | } 4 | -------------------------------------------------------------------------------- /query-node/mappings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/package.json -------------------------------------------------------------------------------- /query-node/mappings/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/bootstrap.ts -------------------------------------------------------------------------------- /query-node/mappings/src/bounty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/bounty.ts -------------------------------------------------------------------------------- /query-node/mappings/src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/common.ts -------------------------------------------------------------------------------- /query-node/mappings/src/content/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/content/app.ts -------------------------------------------------------------------------------- /query-node/mappings/src/content/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/content/channel.ts -------------------------------------------------------------------------------- /query-node/mappings/src/content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/content/index.ts -------------------------------------------------------------------------------- /query-node/mappings/src/content/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/content/nft.ts -------------------------------------------------------------------------------- /query-node/mappings/src/content/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/content/utils.ts -------------------------------------------------------------------------------- /query-node/mappings/src/content/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/content/video.ts -------------------------------------------------------------------------------- /query-node/mappings/src/council.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/council.ts -------------------------------------------------------------------------------- /query-node/mappings/src/forum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/forum.ts -------------------------------------------------------------------------------- /query-node/mappings/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/index.ts -------------------------------------------------------------------------------- /query-node/mappings/src/joystreamUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/joystreamUtility.ts -------------------------------------------------------------------------------- /query-node/mappings/src/membership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/membership.ts -------------------------------------------------------------------------------- /query-node/mappings/src/proposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/proposals.ts -------------------------------------------------------------------------------- /query-node/mappings/src/proposalsDiscussion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/proposalsDiscussion.ts -------------------------------------------------------------------------------- /query-node/mappings/src/queryTemplates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/queryTemplates.ts -------------------------------------------------------------------------------- /query-node/mappings/src/scheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/scheduler.ts -------------------------------------------------------------------------------- /query-node/mappings/src/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/storage/index.ts -------------------------------------------------------------------------------- /query-node/mappings/src/storage/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/storage/metadata.ts -------------------------------------------------------------------------------- /query-node/mappings/src/storage/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/storage/utils.ts -------------------------------------------------------------------------------- /query-node/mappings/src/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/system.ts -------------------------------------------------------------------------------- /query-node/mappings/src/temporaryConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/temporaryConstants.ts -------------------------------------------------------------------------------- /query-node/mappings/src/workingGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/src/workingGroups.ts -------------------------------------------------------------------------------- /query-node/mappings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/mappings/tsconfig.json -------------------------------------------------------------------------------- /query-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/package.json -------------------------------------------------------------------------------- /query-node/reset-processor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/reset-processor.sh -------------------------------------------------------------------------------- /query-node/schemas/app.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/app.graphql -------------------------------------------------------------------------------- /query-node/schemas/bounty.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/bounty.graphql -------------------------------------------------------------------------------- /query-node/schemas/bountyEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/bountyEvents.graphql -------------------------------------------------------------------------------- /query-node/schemas/common.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/common.graphql -------------------------------------------------------------------------------- /query-node/schemas/content.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/content.graphql -------------------------------------------------------------------------------- /query-node/schemas/contentEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/contentEvents.graphql -------------------------------------------------------------------------------- /query-node/schemas/contentNft.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/contentNft.graphql -------------------------------------------------------------------------------- /query-node/schemas/contentNftEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/contentNftEvents.graphql -------------------------------------------------------------------------------- /query-node/schemas/council.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/council.graphql -------------------------------------------------------------------------------- /query-node/schemas/councilEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/councilEvents.graphql -------------------------------------------------------------------------------- /query-node/schemas/forum.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/forum.graphql -------------------------------------------------------------------------------- /query-node/schemas/forumEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/forumEvents.graphql -------------------------------------------------------------------------------- /query-node/schemas/membership.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/membership.graphql -------------------------------------------------------------------------------- /query-node/schemas/membershipEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/membershipEvents.graphql -------------------------------------------------------------------------------- /query-node/schemas/metaprotocolEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/metaprotocolEvents.graphql -------------------------------------------------------------------------------- /query-node/schemas/proposalDiscussion.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/proposalDiscussion.graphql -------------------------------------------------------------------------------- /query-node/schemas/proposals.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/proposals.graphql -------------------------------------------------------------------------------- /query-node/schemas/proposalsEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/proposalsEvents.graphql -------------------------------------------------------------------------------- /query-node/schemas/storage.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/storage.graphql -------------------------------------------------------------------------------- /query-node/schemas/workingGroups.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/workingGroups.graphql -------------------------------------------------------------------------------- /query-node/schemas/workingGroupsEvents.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/schemas/workingGroupsEvents.graphql -------------------------------------------------------------------------------- /query-node/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/query-node/start.sh -------------------------------------------------------------------------------- /runtime-modules/argo-bridge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/argo-bridge/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/argo-bridge/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/argo-bridge/src/errors.rs -------------------------------------------------------------------------------- /runtime-modules/argo-bridge/src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/argo-bridge/src/events.rs -------------------------------------------------------------------------------- /runtime-modules/argo-bridge/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/argo-bridge/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/argo-bridge/src/tests/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/argo-bridge/src/tests/mock.rs -------------------------------------------------------------------------------- /runtime-modules/argo-bridge/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/argo-bridge/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/argo-bridge/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/argo-bridge/src/types.rs -------------------------------------------------------------------------------- /runtime-modules/argo-bridge/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/argo-bridge/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/bounty/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/bounty/src/actors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/src/actors.rs -------------------------------------------------------------------------------- /runtime-modules/bounty/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/src/benchmarking.rs -------------------------------------------------------------------------------- /runtime-modules/bounty/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/bounty/src/stages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/src/stages.rs -------------------------------------------------------------------------------- /runtime-modules/bounty/src/tests/fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/src/tests/fixtures.rs -------------------------------------------------------------------------------- /runtime-modules/bounty/src/tests/mocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/src/tests/mocks.rs -------------------------------------------------------------------------------- /runtime-modules/bounty/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/bounty/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/bounty/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/common/src/bloat_bond.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/bloat_bond.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/costs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/costs.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/council.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/council.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/currency.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/currency.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/locks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/locks.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/membership.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/membership.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/merkle_tree/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/merkle_tree/mod.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/no_panic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/no_panic.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/numerical.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/numerical.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/origin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/origin.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/storage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/storage.rs -------------------------------------------------------------------------------- /runtime-modules/common/src/working_group.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/common/src/working_group.rs -------------------------------------------------------------------------------- /runtime-modules/constitution/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/constitution/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/constitution/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/constitution/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/constitution/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/constitution/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/constitution/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/constitution/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/content/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/content/src/benchmarks/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/benchmarks/mod.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/errors.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/migrations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/migrations.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/nft/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/nft/mod.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/nft/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/nft/types.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/permissions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/permissions/mod.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/channels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/channels.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/curators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/curators.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/fixtures.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/merkle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/merkle.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/mock.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/nft.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/nft.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/transfers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/transfers.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/tests/videos.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/tests/videos.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/types.rs -------------------------------------------------------------------------------- /runtime-modules/content/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/content/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/council/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/council/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/council/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/council/src/benchmarking.rs -------------------------------------------------------------------------------- /runtime-modules/council/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/council/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/council/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/council/src/mock.rs -------------------------------------------------------------------------------- /runtime-modules/council/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/council/src/tests.rs -------------------------------------------------------------------------------- /runtime-modules/council/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/council/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/forum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/forum/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/forum/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/forum/src/benchmarking.rs -------------------------------------------------------------------------------- /runtime-modules/forum/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/forum/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/forum/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/forum/src/mock.rs -------------------------------------------------------------------------------- /runtime-modules/forum/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/forum/src/tests.rs -------------------------------------------------------------------------------- /runtime-modules/forum/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/forum/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/membership/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/membership/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/membership/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/membership/src/benchmarking.rs -------------------------------------------------------------------------------- /runtime-modules/membership/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/membership/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/membership/src/tests/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/membership/src/tests/mock.rs -------------------------------------------------------------------------------- /runtime-modules/membership/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/membership/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/membership/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/membership/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/project-token/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/errors.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/src/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/events.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/src/tests/amm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/tests/amm.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/traits.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/types.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/utils.rs -------------------------------------------------------------------------------- /runtime-modules/project-token/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/project-token/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/proposals/codex/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/proposals/codex/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/proposals/codex/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/proposals/codex/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/proposals/codex/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/proposals/codex/src/types.rs -------------------------------------------------------------------------------- /runtime-modules/proposals/codex/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/proposals/codex/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/proposals/engine/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/proposals/engine/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/proposals/engine/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/proposals/engine/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/referendum/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/referendum/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/referendum/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/referendum/src/benchmarking.rs -------------------------------------------------------------------------------- /runtime-modules/referendum/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/referendum/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/referendum/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/referendum/src/mock.rs -------------------------------------------------------------------------------- /runtime-modules/referendum/src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/referendum/src/tests.rs -------------------------------------------------------------------------------- /runtime-modules/referendum/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/referendum/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/staking-handler/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/staking-handler/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/staking-handler/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/staking-handler/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/staking-handler/src/mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/staking-handler/src/mock.rs -------------------------------------------------------------------------------- /runtime-modules/staking-handler/src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/staking-handler/src/test.rs -------------------------------------------------------------------------------- /runtime-modules/storage/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/storage/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/storage/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/storage/src/benchmarking.rs -------------------------------------------------------------------------------- /runtime-modules/storage/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/storage/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/storage/src/tests/fixtures.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/storage/src/tests/fixtures.rs -------------------------------------------------------------------------------- /runtime-modules/storage/src/tests/mocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/storage/src/tests/mocks.rs -------------------------------------------------------------------------------- /runtime-modules/storage/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/storage/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/storage/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/storage/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/utility/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/utility/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/utility/src/benchmarking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/utility/src/benchmarking.rs -------------------------------------------------------------------------------- /runtime-modules/utility/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/utility/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/utility/src/tests/mocks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/utility/src/tests/mocks.rs -------------------------------------------------------------------------------- /runtime-modules/utility/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/utility/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/utility/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/utility/src/weights.rs -------------------------------------------------------------------------------- /runtime-modules/working-group/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/working-group/Cargo.toml -------------------------------------------------------------------------------- /runtime-modules/working-group/src/checks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/working-group/src/checks.rs -------------------------------------------------------------------------------- /runtime-modules/working-group/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/working-group/src/errors.rs -------------------------------------------------------------------------------- /runtime-modules/working-group/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/working-group/src/lib.rs -------------------------------------------------------------------------------- /runtime-modules/working-group/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/working-group/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime-modules/working-group/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/working-group/src/types.rs -------------------------------------------------------------------------------- /runtime-modules/working-group/src/weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime-modules/working-group/src/weights.rs -------------------------------------------------------------------------------- /runtime/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/CHANGELOG.md -------------------------------------------------------------------------------- /runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/Cargo.toml -------------------------------------------------------------------------------- /runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/README.md -------------------------------------------------------------------------------- /runtime/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/build.rs -------------------------------------------------------------------------------- /runtime/runtime-banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/runtime-banner.svg -------------------------------------------------------------------------------- /runtime/src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/constants.rs -------------------------------------------------------------------------------- /runtime/src/integration/content_directory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/integration/content_directory.rs -------------------------------------------------------------------------------- /runtime/src/integration/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/integration/mod.rs -------------------------------------------------------------------------------- /runtime/src/integration/proposals/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/integration/proposals/mod.rs -------------------------------------------------------------------------------- /runtime/src/integration/transactions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/integration/transactions.rs -------------------------------------------------------------------------------- /runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/lib.rs -------------------------------------------------------------------------------- /runtime/src/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/primitives.rs -------------------------------------------------------------------------------- /runtime/src/proposals_configuration/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/proposals_configuration/mod.rs -------------------------------------------------------------------------------- /runtime/src/proposals_configuration/staging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/proposals_configuration/staging.rs -------------------------------------------------------------------------------- /runtime/src/proposals_configuration/testing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/proposals_configuration/testing.rs -------------------------------------------------------------------------------- /runtime/src/runtime_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/runtime_api.rs -------------------------------------------------------------------------------- /runtime/src/tests/fee_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/tests/fee_tests.rs -------------------------------------------------------------------------------- /runtime/src/tests/handle_fees.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/tests/handle_fees.rs -------------------------------------------------------------------------------- /runtime/src/tests/locks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/tests/locks.rs -------------------------------------------------------------------------------- /runtime/src/tests/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/tests/mod.rs -------------------------------------------------------------------------------- /runtime/src/tests/proposals_integration/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/tests/proposals_integration/mod.rs -------------------------------------------------------------------------------- /runtime/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/utils.rs -------------------------------------------------------------------------------- /runtime/src/voter_bags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/voter_bags.rs -------------------------------------------------------------------------------- /runtime/src/weights/block_weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/block_weights.rs -------------------------------------------------------------------------------- /runtime/src/weights/extrinsic_weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/extrinsic_weights.rs -------------------------------------------------------------------------------- /runtime/src/weights/frame_system.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/frame_system.rs -------------------------------------------------------------------------------- /runtime/src/weights/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/mod.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_babe.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_babe.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_bags_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_bags_list.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_balances.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_balances.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_grandpa.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_grandpa.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_im_online.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_im_online.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_multisig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_multisig.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_proxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_proxy.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_session.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_staking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_staking.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_timestamp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_timestamp.rs -------------------------------------------------------------------------------- /runtime/src/weights/pallet_vesting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/pallet_vesting.rs -------------------------------------------------------------------------------- /runtime/src/weights/rocksdb_weights.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/rocksdb_weights.rs -------------------------------------------------------------------------------- /runtime/src/weights/substrate_utility.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/runtime/src/weights/substrate_utility.rs -------------------------------------------------------------------------------- /scripts/cargo-build-with-benchmarking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/cargo-build-with-benchmarking.sh -------------------------------------------------------------------------------- /scripts/cargo-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/cargo-build.sh -------------------------------------------------------------------------------- /scripts/cargo-checks-with-benchmarking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/cargo-checks-with-benchmarking.sh -------------------------------------------------------------------------------- /scripts/cargo-checks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/cargo-checks.sh -------------------------------------------------------------------------------- /scripts/cargo-test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/cargo-test-all.sh -------------------------------------------------------------------------------- /scripts/compute-runtime-blob-hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/compute-runtime-blob-hash.sh -------------------------------------------------------------------------------- /scripts/features.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/features.sh -------------------------------------------------------------------------------- /scripts/fetch-chain-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/fetch-chain-metadata.sh -------------------------------------------------------------------------------- /scripts/fetch-chain-spec-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/fetch-chain-spec-version.sh -------------------------------------------------------------------------------- /scripts/generate-weights.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/generate-weights.sh -------------------------------------------------------------------------------- /scripts/lint-typescript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/lint-typescript.sh -------------------------------------------------------------------------------- /scripts/run-dev-chain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/run-dev-chain.sh -------------------------------------------------------------------------------- /scripts/runtime-code-shasum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/runtime-code-shasum.sh -------------------------------------------------------------------------------- /scripts/runtime-code-tarball.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/runtime-code-tarball.sh -------------------------------------------------------------------------------- /scripts/save-storage-squid-schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/save-storage-squid-schema.sh -------------------------------------------------------------------------------- /scripts/save-to-docker-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/save-to-docker-images.sh -------------------------------------------------------------------------------- /scripts/try-runtime-upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/try-runtime-upgrade.sh -------------------------------------------------------------------------------- /scripts/verify-chain-metadata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/scripts/verify-chain-metadata.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/setup.sh -------------------------------------------------------------------------------- /start-elasticsearch-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/start-elasticsearch-stack.sh -------------------------------------------------------------------------------- /start-multistorage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/start-multistorage.sh -------------------------------------------------------------------------------- /start-orion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/start-orion.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/start.sh -------------------------------------------------------------------------------- /storage-node/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/.eslintignore -------------------------------------------------------------------------------- /storage-node/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/.eslintrc.js -------------------------------------------------------------------------------- /storage-node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/.gitignore -------------------------------------------------------------------------------- /storage-node/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/.prettierignore -------------------------------------------------------------------------------- /storage-node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/CHANGELOG.md -------------------------------------------------------------------------------- /storage-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/README.md -------------------------------------------------------------------------------- /storage-node/bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/bin/run -------------------------------------------------------------------------------- /storage-node/bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /storage-node/client/.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/.openapi-generator-ignore -------------------------------------------------------------------------------- /storage-node/client/.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/.openapi-generator/FILES -------------------------------------------------------------------------------- /storage-node/client/.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.0.1 -------------------------------------------------------------------------------- /storage-node/client/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/api.ts -------------------------------------------------------------------------------- /storage-node/client/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/base.ts -------------------------------------------------------------------------------- /storage-node/client/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/common.ts -------------------------------------------------------------------------------- /storage-node/client/configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/configuration.ts -------------------------------------------------------------------------------- /storage-node/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/index.ts -------------------------------------------------------------------------------- /storage-node/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/package.json -------------------------------------------------------------------------------- /storage-node/client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/client/tsconfig.json -------------------------------------------------------------------------------- /storage-node/openapitools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/openapitools.json -------------------------------------------------------------------------------- /storage-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/package.json -------------------------------------------------------------------------------- /storage-node/scripts/init-dev-bucket.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/scripts/init-dev-bucket.sh -------------------------------------------------------------------------------- /storage-node/scripts/init-for-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/scripts/init-for-cli.sh -------------------------------------------------------------------------------- /storage-node/scripts/operatorMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/scripts/operatorMetadata.json -------------------------------------------------------------------------------- /storage-node/scripts/run-all-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/scripts/run-all-commands.sh -------------------------------------------------------------------------------- /storage-node/src/api-spec/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/api-spec/openapi.yaml -------------------------------------------------------------------------------- /storage-node/src/command-base/CustomFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/command-base/CustomFlags.ts -------------------------------------------------------------------------------- /storage-node/src/command-base/ExitCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/command-base/ExitCodes.ts -------------------------------------------------------------------------------- /storage-node/src/commands/archive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/commands/archive.ts -------------------------------------------------------------------------------- /storage-node/src/commands/leader/copy-bags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/commands/leader/copy-bags.ts -------------------------------------------------------------------------------- /storage-node/src/commands/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/commands/server.ts -------------------------------------------------------------------------------- /storage-node/src/commands/util/cleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/commands/util/cleanup.ts -------------------------------------------------------------------------------- /storage-node/src/commands/util/multihash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/commands/util/multihash.ts -------------------------------------------------------------------------------- /storage-node/src/index.ts: -------------------------------------------------------------------------------- 1 | export { run } from '@oclif/command' 2 | -------------------------------------------------------------------------------- /storage-node/src/services/archive/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/archive/stats.ts -------------------------------------------------------------------------------- /storage-node/src/services/archive/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/archive/tasks.ts -------------------------------------------------------------------------------- /storage-node/src/services/helpers/hashing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/helpers/hashing.ts -------------------------------------------------------------------------------- /storage-node/src/services/helpers/stdout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/helpers/stdout.ts -------------------------------------------------------------------------------- /storage-node/src/services/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/logger.ts -------------------------------------------------------------------------------- /storage-node/src/services/queryNode/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/queryNode/api.ts -------------------------------------------------------------------------------- /storage-node/src/services/runtime/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/runtime/api.ts -------------------------------------------------------------------------------- /storage-node/src/services/runtime/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/runtime/queries.ts -------------------------------------------------------------------------------- /storage-node/src/services/sync/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/sync/tasks.ts -------------------------------------------------------------------------------- /storage-node/src/services/webApi/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/src/services/webApi/app.ts -------------------------------------------------------------------------------- /storage-node/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/storage-node/tsconfig.json -------------------------------------------------------------------------------- /tests/network-tests/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/.env -------------------------------------------------------------------------------- /tests/network-tests/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/.eslintrc.js -------------------------------------------------------------------------------- /tests/network-tests/.gitignore: -------------------------------------------------------------------------------- 1 | output.json 2 | data/ 3 | **/generated/* 4 | -------------------------------------------------------------------------------- /tests/network-tests/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/.prettierignore -------------------------------------------------------------------------------- /tests/network-tests/ColossusApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/ColossusApi.ts -------------------------------------------------------------------------------- /tests/network-tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/LICENSE -------------------------------------------------------------------------------- /tests/network-tests/codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/codegen.yml -------------------------------------------------------------------------------- /tests/network-tests/get-host-ip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/get-host-ip.sh -------------------------------------------------------------------------------- /tests/network-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/package.json -------------------------------------------------------------------------------- /tests/network-tests/run-flow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/run-flow.sh -------------------------------------------------------------------------------- /tests/network-tests/run-node-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/run-node-docker.sh -------------------------------------------------------------------------------- /tests/network-tests/run-test-node.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/run-test-node.sh -------------------------------------------------------------------------------- /tests/network-tests/run-test-scenario.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/run-test-scenario.sh -------------------------------------------------------------------------------- /tests/network-tests/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/run-tests.sh -------------------------------------------------------------------------------- /tests/network-tests/src/Api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/Api.ts -------------------------------------------------------------------------------- /tests/network-tests/src/ArgusApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/ArgusApi.ts -------------------------------------------------------------------------------- /tests/network-tests/src/Debugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/Debugger.ts -------------------------------------------------------------------------------- /tests/network-tests/src/Fixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/Fixture.ts -------------------------------------------------------------------------------- /tests/network-tests/src/Flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/Flow.ts -------------------------------------------------------------------------------- /tests/network-tests/src/InvertedPromise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/InvertedPromise.ts -------------------------------------------------------------------------------- /tests/network-tests/src/Job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/Job.ts -------------------------------------------------------------------------------- /tests/network-tests/src/JobManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/JobManager.ts -------------------------------------------------------------------------------- /tests/network-tests/src/QueryNodeApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/QueryNodeApi.ts -------------------------------------------------------------------------------- /tests/network-tests/src/Resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/Resources.ts -------------------------------------------------------------------------------- /tests/network-tests/src/Scenario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/Scenario.ts -------------------------------------------------------------------------------- /tests/network-tests/src/cli/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/cli/base.ts -------------------------------------------------------------------------------- /tests/network-tests/src/cli/distributor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/cli/distributor.ts -------------------------------------------------------------------------------- /tests/network-tests/src/cli/joystream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/cli/joystream.ts -------------------------------------------------------------------------------- /tests/network-tests/src/cli/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/cli/storage.ts -------------------------------------------------------------------------------- /tests/network-tests/src/cli/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/cli/utils.ts -------------------------------------------------------------------------------- /tests/network-tests/src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/consts.ts -------------------------------------------------------------------------------- /tests/network-tests/src/flows/forum/posts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/flows/forum/posts.ts -------------------------------------------------------------------------------- /tests/network-tests/src/flows/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/flows/utils.ts -------------------------------------------------------------------------------- /tests/network-tests/src/scenarios/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/scenarios/app.ts -------------------------------------------------------------------------------- /tests/network-tests/src/scenarios/bonding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/scenarios/bonding.ts -------------------------------------------------------------------------------- /tests/network-tests/src/scenarios/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/scenarios/cli.ts -------------------------------------------------------------------------------- /tests/network-tests/src/scenarios/council.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/scenarios/council.ts -------------------------------------------------------------------------------- /tests/network-tests/src/scenarios/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/scenarios/flow.ts -------------------------------------------------------------------------------- /tests/network-tests/src/scenarios/forum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/scenarios/forum.ts -------------------------------------------------------------------------------- /tests/network-tests/src/scenarios/full.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/scenarios/full.ts -------------------------------------------------------------------------------- /tests/network-tests/src/scenarios/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/scenarios/storage.ts -------------------------------------------------------------------------------- /tests/network-tests/src/sender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/sender.ts -------------------------------------------------------------------------------- /tests/network-tests/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/types.ts -------------------------------------------------------------------------------- /tests/network-tests/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/src/utils.ts -------------------------------------------------------------------------------- /tests/network-tests/start-storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/start-storage.sh -------------------------------------------------------------------------------- /tests/network-tests/test-setup-new-chain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/test-setup-new-chain.sh -------------------------------------------------------------------------------- /tests/network-tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tests/network-tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/.eslintignore -------------------------------------------------------------------------------- /types/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/.eslintrc.js -------------------------------------------------------------------------------- /types/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/.gitignore -------------------------------------------------------------------------------- /types/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/.npmignore -------------------------------------------------------------------------------- /types/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/.prettierignore -------------------------------------------------------------------------------- /types/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/CHANGELOG.md -------------------------------------------------------------------------------- /types/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/README.md -------------------------------------------------------------------------------- /types/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/package.json -------------------------------------------------------------------------------- /types/src/augment/augment-api-consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-api-consts.ts -------------------------------------------------------------------------------- /types/src/augment/augment-api-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-api-errors.ts -------------------------------------------------------------------------------- /types/src/augment/augment-api-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-api-events.ts -------------------------------------------------------------------------------- /types/src/augment/augment-api-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-api-query.ts -------------------------------------------------------------------------------- /types/src/augment/augment-api-rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-api-rpc.ts -------------------------------------------------------------------------------- /types/src/augment/augment-api-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-api-runtime.ts -------------------------------------------------------------------------------- /types/src/augment/augment-api-tx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-api-tx.ts -------------------------------------------------------------------------------- /types/src/augment/augment-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-api.ts -------------------------------------------------------------------------------- /types/src/augment/augment-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/augment-types.ts -------------------------------------------------------------------------------- /types/src/augment/lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/lookup.ts -------------------------------------------------------------------------------- /types/src/augment/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/registry.ts -------------------------------------------------------------------------------- /types/src/augment/types-lookup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/augment/types-lookup.ts -------------------------------------------------------------------------------- /types/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/index.ts -------------------------------------------------------------------------------- /types/src/primitives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/src/primitives.ts -------------------------------------------------------------------------------- /types/tsconfig-eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/tsconfig-eslint.json -------------------------------------------------------------------------------- /types/tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/tsconfig.cjs.json -------------------------------------------------------------------------------- /types/tsconfig.esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/tsconfig.esm.json -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/types/tsconfig.json -------------------------------------------------------------------------------- /utils/api-scripts/.gitignore: -------------------------------------------------------------------------------- 1 | output.wasm 2 | -------------------------------------------------------------------------------- /utils/api-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/README.md -------------------------------------------------------------------------------- /utils/api-scripts/dev-init-storage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/dev-init-storage.sh -------------------------------------------------------------------------------- /utils/api-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/package.json -------------------------------------------------------------------------------- /utils/api-scripts/scripts/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/scripts/example.js -------------------------------------------------------------------------------- /utils/api-scripts/scripts/test-transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/scripts/test-transfer.js -------------------------------------------------------------------------------- /utils/api-scripts/src/address-format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/address-format.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/buy-membership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/buy-membership.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/fork-off.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/fork-off.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/get-chain-metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/get-chain-metadata.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/get-wasm-from-chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/get-wasm-from-chain.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/gift-membership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/gift-membership.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/helpers/extrinsics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/helpers/extrinsics.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/initialize-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/initialize-worker.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/script.ts -------------------------------------------------------------------------------- /utils/api-scripts/src/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/src/status.ts -------------------------------------------------------------------------------- /utils/api-scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/utils/api-scripts/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Joystream/joystream/HEAD/yarn.lock --------------------------------------------------------------------------------