├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-ideas.md └── workflows │ ├── update-dev.yaml │ ├── update-prod.yaml │ ├── update-qa.yaml │ ├── update-stage.yaml │ ├── update-uat.yaml │ └── validate-migrations.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── backend ├── .dockerignore ├── .env.example ├── .gitignore ├── Dockerfile ├── Dockerfile.kube ├── Dockerfile.local ├── Dockerfile.test ├── Jenkinsfile ├── Jenkinsfile-stage ├── Makefile ├── README.md ├── chain.js ├── flow.json ├── go.mod ├── go.sum ├── main │ ├── cadence │ │ ├── contracts │ │ │ ├── CommunityVoting.cdc │ │ │ ├── ExampleNFT.cdc │ │ │ ├── MetadataViews.cdc │ │ │ └── NonFungibleToken.cdc │ │ ├── float │ │ │ ├── FLOAT.cdc │ │ │ ├── FLOATVerifiers.cdc │ │ │ ├── GrantedAccountAccess.cdc │ │ │ ├── scripts │ │ │ │ ├── get_float_ids.cdc │ │ │ │ └── owns_specific_float.cdc │ │ │ └── transactions │ │ │ │ ├── create_event.cdc │ │ │ │ └── create_group.cdc │ │ ├── nba │ │ │ ├── MarketTopshot.cdc │ │ │ ├── TopShot.cdc │ │ │ ├── TopShotLocking.cdc │ │ │ └── transactions │ │ │ │ └── admin │ │ │ │ ├── add_play_to_set.cdc │ │ │ │ ├── create_play.cdc │ │ │ │ ├── create_set.cdc │ │ │ │ └── mint_moment.cdc │ │ ├── scripts │ │ │ ├── custom │ │ │ │ ├── get_nba_topshot_kings.cdc │ │ │ │ ├── get_nba_topshot_pistons.cdc │ │ │ │ ├── get_nba_topshot_trailblazers.cdc │ │ │ │ ├── get_nfl_all_day_legendary.cdc │ │ │ │ ├── get_topshot_metadata.cdc │ │ │ │ └── scripts.json │ │ │ ├── get_balance.cdc │ │ │ ├── get_example_nft_ids.cdc │ │ │ ├── get_nfts_ids.cdc │ │ │ ├── get_total_balance.cdc │ │ │ └── validate_signature.cdc │ │ └── transactions │ │ │ ├── cast_vote.cdc │ │ │ ├── create_collection.cdc │ │ │ ├── create_community.cdc │ │ │ ├── create_proposal.cdc │ │ │ ├── mint_nft.cdc │ │ │ ├── setup_account_nfts.cdc │ │ │ ├── setup_account_to_receive_royalty.cdc │ │ │ ├── setup_flow_token_account.cdc │ │ │ ├── transfer_nft.cdc │ │ │ ├── update_community.cdc │ │ │ ├── update_membership.cdc │ │ │ └── update_proposal.cdc │ ├── constants │ │ ├── admin-allowlist-dev.json │ │ ├── admin-allowlist-staging.json │ │ ├── admin-allowlist-test.json │ │ ├── admin-allowlist.json │ │ ├── community-blocklist-dev.json │ │ ├── community-blocklist-staging.json │ │ ├── community-blocklist-test.json │ │ └── community-blocklist.json │ ├── main.go │ ├── middleware │ │ ├── cors.go │ │ └── logger.go │ ├── models │ │ ├── balance.go │ │ ├── community.go │ │ ├── community_users.go │ │ ├── list.go │ │ ├── proposal.go │ │ ├── proposal_results.go │ │ ├── strategy.go │ │ └── vote.go │ ├── package.json │ ├── server │ │ ├── app.go │ │ ├── controllers.go │ │ ├── helpers.go │ │ └── routes.go │ ├── shared │ │ ├── flow.go │ │ ├── ipfs.go │ │ ├── structs.go │ │ └── voucher.go │ └── strategies │ │ ├── balance_of_nfts.go │ │ ├── custom_script.go │ │ ├── float_nfts.go │ │ ├── one_address_one_vote.go │ │ ├── staked_token_weighted_default.go │ │ ├── token_weighted_default.go │ │ └── total_token_weighted_default.go ├── migrations │ ├── 000001_init_db.down.sql │ ├── 000001_init_db.up.sql │ ├── 000002_add_balances_table.down.sql │ ├── 000002_add_balances_table.up.sql │ ├── 000003_add_cancelled_status_to_proposals.down.sql │ ├── 000003_add_cancelled_status_to_proposals.up.sql │ ├── 000004_alter_balances_table.down.sql │ ├── 000004_alter_balances_table.up.sql │ ├── 000005_remove_balance_from_votes_table.down.sql │ ├── 000005_remove_balance_from_votes_table.up.sql │ ├── 000006_add_staked_token_strategy.down.sql │ ├── 000006_add_staked_token_strategy.up.sql │ ├── 000007_alter_signature_columns_to_jsonb.down.sql │ ├── 000007_alter_signature_columns_to_jsonb.up.sql │ ├── 000008_remove_description_to_body.down.sql │ ├── 000008_remove_description_to_body.up.sql │ ├── 000009_create_user_communities_table.down.sql │ ├── 000009_create_user_communities_table.up.sql │ ├── 000010_add_community_fields.down.sql │ ├── 000010_add_community_fields.up.sql │ ├── 000011_create_lists_table.down.sql │ ├── 000011_create_lists_table.up.sql │ ├── 000012_convert_proposal_choices_to_jsonb.down.sql │ ├── 000012_convert_proposal_choices_to_jsonb.up.sql │ ├── 000013_add_community_categories_and_toc.down.sql │ ├── 000013_add_community_categories_and_toc.up.sql │ ├── 000014_add_one_address_strategy.down.sql │ ├── 000014_add_one_address_strategy.up.sql │ ├── 000015_remove_token_weighted_capped.down.sql │ ├── 000015_remove_token_weighted_capped.up.sql │ ├── 000016_add_community_contract.down.sql │ ├── 000016_add_community_contract.up.sql │ ├── 000017_add_nfts_table.down.sql │ ├── 000017_add_nfts_table.up.sql │ ├── 000018_alter_communities_table.down.sql │ ├── 000018_alter_communities_table.up.sql │ ├── 000019_add_achievements_table.down.sql │ ├── 000019_add_achievements_table.up.sql │ ├── 000020_add_achievements_details_column.down.sql │ ├── 000020_add_achievements_details_column.up.sql │ ├── 000021_add_balance_of_nfts.down.sql │ ├── 000021_add_balance_of_nfts.up.sql │ ├── 000022_update_flow_community.down.sql │ ├── 000022_update_flow_community.up.sql │ ├── 000023_alter_proposals_table.down.sql │ ├── 000023_alter_proposals_table.up.sql │ ├── 000024_change_strategy_flow_community.down.sql │ ├── 000024_change_strategy_flow_community.up.sql │ ├── 000025_rename_achievements_sequence.down.sql │ ├── 000025_rename_achievements_sequence.up.sql │ ├── 000026_update_voting_strategy_desc.down.sql │ ├── 000026_update_voting_strategy_desc.up.sql │ ├── 000027_alter_communities_table.down.sql │ ├── 000027_alter_communities_table.up.sql │ ├── 000028_update_voting_strategies_table.down.sql │ ├── 000028_update_voting_strategies_table.up.sql │ ├── 000029_update_voting_strategies_one_addr_one_vote.down.sql │ ├── 000029_update_voting_strategies_one_addr_one_vote.up.sql │ ├── 000030_alter_proposal__weight_threshold.down.sql │ ├── 000030_alter_proposal__weight_threshold.up.sql │ ├── 000031_remove_one_address_one_vote_strats.down.sql │ ├── 000031_remove_one_address_one_vote_strats.up.sql │ ├── 000032_add_float_nft_strat.down.sql │ ├── 000032_add_float_nft_strat.up.sql │ ├── 000033_alter_votes_table.down.sql │ ├── 000033_alter_votes_table.up.sql │ ├── 000034_alter_communities_table.down.sql │ ├── 000034_alter_communities_table.up.sql │ ├── 000035_add_voucher_column.down.sql │ ├── 000035_add_voucher_column.up.sql │ ├── 000036_drop_user_achievements_table.down.sql │ ├── 000036_drop_user_achievements_table.up.sql │ ├── 000037_update_community_catergory.down.sql │ ├── 000037_update_community_catergory.up.sql │ ├── 000038_drop_dup_threshold_communities_table.down.sql │ ├── 000038_drop_dup_threshold_communities_table.up.sql │ ├── 000039_add_custom_script_strategy.down.sql │ ├── 000039_add_custom_script_strategy.up.sql │ ├── 000040_add_tigram_extension.down.sql │ ├── 000040_add_tigram_extension.up.sql │ ├── 000041_increase_vote_message_max_length.down.sql │ ├── 000041_increase_vote_message_max_length.up.sql │ ├── 000042_add_staked_token_strategy.up.sql │ └── 000042_add_total_token_strategy.down.sql ├── package.json ├── scripts │ └── check_duplicate_migrations.js ├── tests │ ├── community_test.go │ ├── community_user_test.go │ ├── flow.json │ ├── leaderboard_test.go │ ├── list_test.go │ ├── main_test.go │ ├── proposal_test.go │ ├── strategies_test.go │ ├── test_utils │ │ ├── community_user_utils.go │ │ ├── community_utils.go │ │ ├── factory.go │ │ ├── leaderboard_utils.go │ │ ├── list_utils.go │ │ ├── proposal_utils.go │ │ ├── strategy_utils.go │ │ ├── test_utils.go │ │ └── vote_utils.go │ └── vote_test.go └── yarn.lock └── frontend ├── .gitignore ├── Dockerfile ├── Dockerfile.stage ├── README.md ├── deploy └── nginx.conf ├── package.json ├── packages ├── client │ ├── .env.example │ ├── .eslintignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── api.md │ ├── craco.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public │ │ ├── Footer-heart.png │ │ ├── cast.jpg │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo.ico │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.js │ │ ├── App.sass │ │ ├── api │ │ ├── community.js │ │ ├── communityCategory.js │ │ ├── communityUsers.js │ │ ├── constants.js │ │ ├── file.js │ │ ├── proposals.js │ │ └── votingStrategies.js │ │ ├── assets │ │ ├── Flip_Default.png │ │ ├── miquela.png │ │ ├── people-toast.png │ │ └── star-single.png │ │ ├── components │ │ ├── ActionButton.js │ │ ├── AddButton.js │ │ ├── BrowseButton.js │ │ ├── Community │ │ │ ├── CommunitiesPresenter.js │ │ │ ├── CommunityCard │ │ │ │ ├── CommunityCard.js │ │ │ │ ├── NameAndBody.js │ │ │ │ ├── PillsWithStatus.js │ │ │ │ └── index.js │ │ │ ├── CommunityEditorDetails │ │ │ │ ├── AddressForm.js │ │ │ │ ├── CommunityEditorDetails.js │ │ │ │ ├── FormConfig.js │ │ │ │ ├── FormFields.js │ │ │ │ ├── MembersEditor.js │ │ │ │ └── index.js │ │ │ ├── CommunityEditorLinks │ │ │ │ ├── CommunityEditorLinks.js │ │ │ │ ├── FormConfig.js │ │ │ │ ├── FormFields.js │ │ │ │ ├── LinksForm.js │ │ │ │ └── index.js │ │ │ ├── CommunityEditorProfile │ │ │ │ ├── CommunityEditorProfile.js │ │ │ │ ├── FormConfig.js │ │ │ │ ├── FormFields.js │ │ │ │ ├── ImageCropModal.js │ │ │ │ ├── ProfileForm.js │ │ │ │ ├── Slider.js │ │ │ │ └── index.js │ │ │ ├── CommunityPropsAndVoting.js │ │ │ ├── JoinCommunityButton.js │ │ │ ├── ProposalThresholdEditor │ │ │ │ ├── FormConfig.js │ │ │ │ ├── ProposalThresholdEditor.js │ │ │ │ ├── ThresholdForm.js │ │ │ │ └── index.js │ │ │ ├── StrategyEditorModal │ │ │ │ ├── CustomScriptSelector.js │ │ │ │ ├── FormConfig.js │ │ │ │ ├── StrategyInformationForm.js │ │ │ │ ├── StrategySelector.js │ │ │ │ └── index.js │ │ │ ├── StrategySelectorForm.js │ │ │ ├── StrategySelectorInput.js │ │ │ └── hooks │ │ │ │ └── useFlowAddrValidator.js │ │ ├── CommunityAbout.js │ │ ├── CommunityCreate │ │ │ ├── FormConfig.js │ │ │ ├── StartSteps.js │ │ │ ├── StepFour.js │ │ │ ├── StepOne │ │ │ │ ├── StepOne.js │ │ │ │ └── index.js │ │ │ ├── StepThree.js │ │ │ ├── StepTwo.js │ │ │ └── index.js │ │ ├── CommunityHeader.js │ │ ├── CommunityLinks.js │ │ ├── CommunityMembersList.js │ │ ├── CommunityProposalList.js │ │ ├── CommunityProposals.js │ │ ├── CommunityPulse.js │ │ ├── Dropdown.js │ │ ├── Dropdown.test.js │ │ ├── FadeIn.js │ │ ├── FadeInOut.js │ │ ├── FilterPill.js │ │ ├── FlipsContainer │ │ │ ├── FlipCardBody.js │ │ │ ├── FlipCardFooter.js │ │ │ ├── FlipCardHeader.js │ │ │ ├── FlipsCard.js │ │ │ ├── FlipsList.js │ │ │ ├── index.js │ │ │ └── index.module.scss │ │ ├── Header.js │ │ ├── HomeFooter.js │ │ ├── HomeHeader.js │ │ ├── Input.js │ │ ├── Label.js │ │ ├── LeaderBoard.js │ │ ├── Loader.js │ │ ├── Message.js │ │ ├── ModalAboutItem.js │ │ ├── Popover.js │ │ ├── Proposal │ │ │ ├── BackButton.js │ │ │ ├── CancelProposalModalConfirmation.js │ │ │ ├── HeaderNavigation.js │ │ │ ├── ProposalStatus.js │ │ │ ├── ShareDropdown.js │ │ │ ├── VoteOptions │ │ │ │ ├── ButtonChoice.js │ │ │ │ ├── ImageBasedOptions.js │ │ │ │ ├── TextBasedOptions.js │ │ │ │ ├── VoteHeader.js │ │ │ │ ├── VoteOptions.js │ │ │ │ └── index.js │ │ │ ├── getStatus.js │ │ │ └── index.js │ │ ├── ProposalCard │ │ │ ├── DesktopCard.js │ │ │ ├── MobileTabletCard.js │ │ │ ├── ProposalCardBody.js │ │ │ ├── ProposalCardContent.js │ │ │ ├── ProposalCardFooter.js │ │ │ ├── ProposalCardHeader.js │ │ │ ├── ProposalCardHeader.test.js │ │ │ ├── __snapshots__ │ │ │ │ └── ProposalHeader.test.js.snap │ │ │ └── index.js │ │ ├── ProposalCreate │ │ │ ├── FormConfig.js │ │ │ ├── StepOne │ │ │ │ ├── ChoiceOptionCreator.js │ │ │ │ ├── ImageChoiceUploader.js │ │ │ │ ├── ImageChoices.js │ │ │ │ ├── TextBasedChoices.js │ │ │ │ └── index.js │ │ │ ├── StepThree.js │ │ │ ├── StepTwo │ │ │ │ ├── StepTwo.js │ │ │ │ ├── TimeIntervals.js │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── ProposalInformation.test.js │ │ ├── ProposalInformation │ │ │ ├── AvatarBloquies.js │ │ │ ├── BlockieWithAddress.js │ │ │ ├── CommunityName.js │ │ │ ├── InfoBlock.js │ │ │ ├── Information.js │ │ │ ├── ProposalInformation.js │ │ │ ├── Results.js │ │ │ ├── ResultsPanel.js │ │ │ └── index.js │ │ ├── SideNavbar.js │ │ ├── StatusLabel.js │ │ ├── StatusPill.js │ │ ├── StepByStep │ │ │ ├── NexStepButton.js │ │ │ ├── StepByStep.sass │ │ │ ├── SubmitButton.js │ │ │ └── index.js │ │ ├── StrategyModal.js │ │ ├── StyledStatusPill.js │ │ ├── TableMembers.js │ │ ├── Tablink.js │ │ ├── Title.js │ │ ├── Tooltip.js │ │ ├── TooltipMessage.js │ │ ├── Transactions.js │ │ ├── UploadImageModal.js │ │ ├── VotesList.js │ │ ├── WalletConnect.js │ │ ├── WalletConnectModal.js │ │ ├── WrapperResponsive.js │ │ ├── __snapshots__ │ │ │ ├── Dropdown.test.js.snap │ │ │ └── ProposalInformation.test.js.snap │ │ ├── common │ │ │ ├── Checkbox.js │ │ │ ├── CustomDatePicker.js │ │ │ ├── Dropdown.js │ │ │ ├── Editor │ │ │ │ ├── DraftjsEditor.js │ │ │ │ ├── Editor.js │ │ │ │ ├── ImageOption.js │ │ │ │ └── index.js │ │ │ ├── Form.js │ │ │ ├── Input.js │ │ │ └── TextArea.js │ │ ├── index.js │ │ └── modals │ │ │ ├── CancelProposal.js │ │ │ ├── CastingVote.js │ │ │ ├── Error.js │ │ │ ├── Modal.js │ │ │ ├── VoteConfirmation.js │ │ │ ├── VoteConfirmed.js │ │ │ └── index.js │ │ ├── const │ │ └── index.js │ │ ├── contexts │ │ ├── ErrorHandler.js │ │ ├── NotificationModal.js │ │ └── Web3.js │ │ ├── data │ │ ├── contractsAndPaths.json │ │ └── dataServices.js │ │ ├── helpers │ │ ├── index.js │ │ └── validation.js │ │ ├── hooks │ │ ├── index.js │ │ ├── useBeforeUnload.js │ │ ├── useBrowserName.js │ │ ├── useCommunityActiveStrategies.js │ │ ├── useCommunityCategory.js │ │ ├── useCommunityDetails.js │ │ ├── useCommunityDetailsUpdate.js │ │ ├── useCommunityMembers.js │ │ ├── useCommunityMutation.js │ │ ├── useCommunityProposals.js │ │ ├── useCommunityProposalsWithVotes.js │ │ ├── useCommunitySearch.js │ │ ├── useCommunityUsers.js │ │ ├── useCommunityUsersMutation.js │ │ ├── useDebounce.js │ │ ├── useFclUser.js │ │ ├── useFeaturedCommunities.js │ │ ├── useFetchMoreOnScroll.js │ │ ├── useFileUploader.js │ │ ├── useJoinCommunity.js │ │ ├── useLeaderBoard.js │ │ ├── useLocalStorage.js │ │ ├── useMediaQuery.js │ │ ├── useOnOutsideClick.js │ │ ├── useProposal.js │ │ ├── useProposalCreateMutation.js │ │ ├── useProposalMutation.js │ │ ├── useProposalVotes.js │ │ ├── useQueryParams.js │ │ ├── useStarAnimation.js │ │ ├── useUserCommunities.js │ │ ├── useUserRoleOnCommunity.js │ │ ├── useVoteOnProposal.js │ │ ├── useVotesForAddress.js │ │ ├── useVotingResults.js │ │ ├── useVotingStrategies.js │ │ └── useWindowDimension.js │ │ ├── index.css │ │ ├── index.js │ │ ├── layout │ │ └── SectionContainer.js │ │ ├── networks.js │ │ ├── pages │ │ ├── About.js │ │ ├── BrowseCommunities.js │ │ ├── Community.js │ │ ├── CommunityCreate.js │ │ ├── CommunityEditor.js │ │ ├── Debug.js │ │ ├── Error.js │ │ ├── Home.js │ │ ├── PrivacyPolicy.js │ │ ├── Proposal.js │ │ ├── ProposalCreate.js │ │ ├── TermsOfService.js │ │ ├── index.js │ │ └── pages.test.js │ │ ├── reducers │ │ ├── defaultReducer.js │ │ ├── index.js │ │ └── paginationReducer.js │ │ └── utils.js └── shared-components │ ├── .eslintignore │ ├── .prettierignore │ ├── .prettierrc │ ├── .storybook │ ├── main.js │ └── preview.js │ ├── README.md │ ├── package.json │ └── src │ ├── Svg │ ├── Active.js │ ├── AngleDown.js │ ├── AngleUp.js │ ├── ArrowLeft.js │ ├── ArrowLeftBold.js │ ├── ArrowRight.js │ ├── Bin.js │ ├── Calendar.js │ ├── CaretDown.js │ ├── CheckCircle.js │ ├── CheckMark.js │ ├── CheckOutlined.js │ ├── Close.js │ ├── Copy.js │ ├── Discord.js │ ├── ErrorOutline.js │ ├── Eye.js │ ├── Flow.js │ ├── GitHub.js │ ├── HideEye.js │ ├── Image.js │ ├── InfoOutLine.js │ ├── Instagram.js │ ├── InvalidCheckMark.js │ ├── LinkOut.js │ ├── Logo.js │ ├── Plus.js │ ├── PlusLightFill.js │ ├── RemoveLightFill.js │ ├── Search.js │ ├── Share.js │ ├── Star.js │ ├── Twitter.js │ ├── Upload.js │ ├── ValidCheckMark.js │ ├── Website.js │ ├── index.js │ └── index.stories.js │ └── index.js ├── test ├── babel.config.json ├── basic-test.test.js ├── jest.config.json ├── package-lock.json └── package.json └── yarn.lock /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/.github/ISSUE_TEMPLATE/feature-ideas.md -------------------------------------------------------------------------------- /.github/workflows/update-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/.github/workflows/update-dev.yaml -------------------------------------------------------------------------------- /.github/workflows/update-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/.github/workflows/update-prod.yaml -------------------------------------------------------------------------------- /.github/workflows/update-qa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/.github/workflows/update-qa.yaml -------------------------------------------------------------------------------- /.github/workflows/update-stage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/.github/workflows/update-stage.yaml -------------------------------------------------------------------------------- /.github/workflows/update-uat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/.github/workflows/update-uat.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-migrations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/.github/workflows/validate-migrations.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .DS_Store 3 | create-uber-repo.sh 4 | .idea/ 5 | 6 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/README.md -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/.dockerignore -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/Dockerfile.kube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/Dockerfile.kube -------------------------------------------------------------------------------- /backend/Dockerfile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/Dockerfile.local -------------------------------------------------------------------------------- /backend/Dockerfile.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/Dockerfile.test -------------------------------------------------------------------------------- /backend/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/Jenkinsfile -------------------------------------------------------------------------------- /backend/Jenkinsfile-stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/Jenkinsfile-stage -------------------------------------------------------------------------------- /backend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/Makefile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/chain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/chain.js -------------------------------------------------------------------------------- /backend/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/flow.json -------------------------------------------------------------------------------- /backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/go.mod -------------------------------------------------------------------------------- /backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/go.sum -------------------------------------------------------------------------------- /backend/main/cadence/contracts/CommunityVoting.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/contracts/CommunityVoting.cdc -------------------------------------------------------------------------------- /backend/main/cadence/contracts/ExampleNFT.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/contracts/ExampleNFT.cdc -------------------------------------------------------------------------------- /backend/main/cadence/contracts/MetadataViews.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/contracts/MetadataViews.cdc -------------------------------------------------------------------------------- /backend/main/cadence/contracts/NonFungibleToken.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/contracts/NonFungibleToken.cdc -------------------------------------------------------------------------------- /backend/main/cadence/float/FLOAT.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/float/FLOAT.cdc -------------------------------------------------------------------------------- /backend/main/cadence/float/FLOATVerifiers.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/float/FLOATVerifiers.cdc -------------------------------------------------------------------------------- /backend/main/cadence/float/GrantedAccountAccess.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/float/GrantedAccountAccess.cdc -------------------------------------------------------------------------------- /backend/main/cadence/float/scripts/get_float_ids.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/float/scripts/get_float_ids.cdc -------------------------------------------------------------------------------- /backend/main/cadence/float/scripts/owns_specific_float.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/float/scripts/owns_specific_float.cdc -------------------------------------------------------------------------------- /backend/main/cadence/float/transactions/create_event.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/float/transactions/create_event.cdc -------------------------------------------------------------------------------- /backend/main/cadence/float/transactions/create_group.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/float/transactions/create_group.cdc -------------------------------------------------------------------------------- /backend/main/cadence/nba/MarketTopshot.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/nba/MarketTopshot.cdc -------------------------------------------------------------------------------- /backend/main/cadence/nba/TopShot.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/nba/TopShot.cdc -------------------------------------------------------------------------------- /backend/main/cadence/nba/TopShotLocking.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/nba/TopShotLocking.cdc -------------------------------------------------------------------------------- /backend/main/cadence/nba/transactions/admin/add_play_to_set.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/nba/transactions/admin/add_play_to_set.cdc -------------------------------------------------------------------------------- /backend/main/cadence/nba/transactions/admin/create_play.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/nba/transactions/admin/create_play.cdc -------------------------------------------------------------------------------- /backend/main/cadence/nba/transactions/admin/create_set.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/nba/transactions/admin/create_set.cdc -------------------------------------------------------------------------------- /backend/main/cadence/nba/transactions/admin/mint_moment.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/nba/transactions/admin/mint_moment.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/custom/get_nba_topshot_kings.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/custom/get_nba_topshot_kings.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/custom/get_nba_topshot_pistons.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/custom/get_nba_topshot_pistons.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/custom/get_nba_topshot_trailblazers.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/custom/get_nba_topshot_trailblazers.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/custom/get_nfl_all_day_legendary.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/custom/get_nfl_all_day_legendary.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/custom/get_topshot_metadata.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/custom/get_topshot_metadata.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/custom/scripts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/custom/scripts.json -------------------------------------------------------------------------------- /backend/main/cadence/scripts/get_balance.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/get_balance.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/get_example_nft_ids.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/get_example_nft_ids.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/get_nfts_ids.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/get_nfts_ids.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/get_total_balance.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/get_total_balance.cdc -------------------------------------------------------------------------------- /backend/main/cadence/scripts/validate_signature.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/scripts/validate_signature.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/cast_vote.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/cast_vote.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/create_collection.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/create_collection.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/create_community.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/create_community.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/create_proposal.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/create_proposal.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/mint_nft.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/mint_nft.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/setup_account_nfts.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/setup_account_nfts.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/setup_account_to_receive_royalty.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/setup_account_to_receive_royalty.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/setup_flow_token_account.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/setup_flow_token_account.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/transfer_nft.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/transfer_nft.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/update_community.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/update_community.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/update_membership.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/update_membership.cdc -------------------------------------------------------------------------------- /backend/main/cadence/transactions/update_proposal.cdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/cadence/transactions/update_proposal.cdc -------------------------------------------------------------------------------- /backend/main/constants/admin-allowlist-dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/constants/admin-allowlist-dev.json -------------------------------------------------------------------------------- /backend/main/constants/admin-allowlist-staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/constants/admin-allowlist-staging.json -------------------------------------------------------------------------------- /backend/main/constants/admin-allowlist-test.json: -------------------------------------------------------------------------------- 1 | {"addresses": ["0xf8d6e0586b0a20c7", "0x01cf0e2f2f715450"]} -------------------------------------------------------------------------------- /backend/main/constants/admin-allowlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/constants/admin-allowlist.json -------------------------------------------------------------------------------- /backend/main/constants/community-blocklist-dev.json: -------------------------------------------------------------------------------- 1 | {"addresses": []} -------------------------------------------------------------------------------- /backend/main/constants/community-blocklist-staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/constants/community-blocklist-staging.json -------------------------------------------------------------------------------- /backend/main/constants/community-blocklist-test.json: -------------------------------------------------------------------------------- 1 | {"addresses": []} -------------------------------------------------------------------------------- /backend/main/constants/community-blocklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/constants/community-blocklist.json -------------------------------------------------------------------------------- /backend/main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/main.go -------------------------------------------------------------------------------- /backend/main/middleware/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/middleware/cors.go -------------------------------------------------------------------------------- /backend/main/middleware/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/middleware/logger.go -------------------------------------------------------------------------------- /backend/main/models/balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/models/balance.go -------------------------------------------------------------------------------- /backend/main/models/community.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/models/community.go -------------------------------------------------------------------------------- /backend/main/models/community_users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/models/community_users.go -------------------------------------------------------------------------------- /backend/main/models/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/models/list.go -------------------------------------------------------------------------------- /backend/main/models/proposal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/models/proposal.go -------------------------------------------------------------------------------- /backend/main/models/proposal_results.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/models/proposal_results.go -------------------------------------------------------------------------------- /backend/main/models/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/models/strategy.go -------------------------------------------------------------------------------- /backend/main/models/vote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/models/vote.go -------------------------------------------------------------------------------- /backend/main/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/package.json -------------------------------------------------------------------------------- /backend/main/server/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/server/app.go -------------------------------------------------------------------------------- /backend/main/server/controllers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/server/controllers.go -------------------------------------------------------------------------------- /backend/main/server/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/server/helpers.go -------------------------------------------------------------------------------- /backend/main/server/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/server/routes.go -------------------------------------------------------------------------------- /backend/main/shared/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/shared/flow.go -------------------------------------------------------------------------------- /backend/main/shared/ipfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/shared/ipfs.go -------------------------------------------------------------------------------- /backend/main/shared/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/shared/structs.go -------------------------------------------------------------------------------- /backend/main/shared/voucher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/shared/voucher.go -------------------------------------------------------------------------------- /backend/main/strategies/balance_of_nfts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/strategies/balance_of_nfts.go -------------------------------------------------------------------------------- /backend/main/strategies/custom_script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/strategies/custom_script.go -------------------------------------------------------------------------------- /backend/main/strategies/float_nfts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/strategies/float_nfts.go -------------------------------------------------------------------------------- /backend/main/strategies/one_address_one_vote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/strategies/one_address_one_vote.go -------------------------------------------------------------------------------- /backend/main/strategies/staked_token_weighted_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/strategies/staked_token_weighted_default.go -------------------------------------------------------------------------------- /backend/main/strategies/token_weighted_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/strategies/token_weighted_default.go -------------------------------------------------------------------------------- /backend/main/strategies/total_token_weighted_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/main/strategies/total_token_weighted_default.go -------------------------------------------------------------------------------- /backend/migrations/000001_init_db.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000001_init_db.down.sql -------------------------------------------------------------------------------- /backend/migrations/000001_init_db.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000001_init_db.up.sql -------------------------------------------------------------------------------- /backend/migrations/000002_add_balances_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS balances; -------------------------------------------------------------------------------- /backend/migrations/000002_add_balances_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000002_add_balances_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000003_add_cancelled_status_to_proposals.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000003_add_cancelled_status_to_proposals.down.sql -------------------------------------------------------------------------------- /backend/migrations/000003_add_cancelled_status_to_proposals.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000003_add_cancelled_status_to_proposals.up.sql -------------------------------------------------------------------------------- /backend/migrations/000004_alter_balances_table.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000004_alter_balances_table.down.sql -------------------------------------------------------------------------------- /backend/migrations/000004_alter_balances_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000004_alter_balances_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000005_remove_balance_from_votes_table.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE votes ADD COLUMN balance BIGINT; 2 | -------------------------------------------------------------------------------- /backend/migrations/000005_remove_balance_from_votes_table.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE votes DROP COLUMN balance; -------------------------------------------------------------------------------- /backend/migrations/000006_add_staked_token_strategy.down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM voting_strategies WHERE key = 'staked-token-weighted-default' -------------------------------------------------------------------------------- /backend/migrations/000006_add_staked_token_strategy.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000006_add_staked_token_strategy.up.sql -------------------------------------------------------------------------------- /backend/migrations/000007_alter_signature_columns_to_jsonb.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/migrations/000007_alter_signature_columns_to_jsonb.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000007_alter_signature_columns_to_jsonb.up.sql -------------------------------------------------------------------------------- /backend/migrations/000008_remove_description_to_body.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000008_remove_description_to_body.down.sql -------------------------------------------------------------------------------- /backend/migrations/000008_remove_description_to_body.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000008_remove_description_to_body.up.sql -------------------------------------------------------------------------------- /backend/migrations/000009_create_user_communities_table.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000009_create_user_communities_table.down.sql -------------------------------------------------------------------------------- /backend/migrations/000009_create_user_communities_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000009_create_user_communities_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000010_add_community_fields.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000010_add_community_fields.down.sql -------------------------------------------------------------------------------- /backend/migrations/000010_add_community_fields.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000010_add_community_fields.up.sql -------------------------------------------------------------------------------- /backend/migrations/000011_create_lists_table.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000011_create_lists_table.down.sql -------------------------------------------------------------------------------- /backend/migrations/000011_create_lists_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000011_create_lists_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000012_convert_proposal_choices_to_jsonb.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000012_convert_proposal_choices_to_jsonb.down.sql -------------------------------------------------------------------------------- /backend/migrations/000012_convert_proposal_choices_to_jsonb.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000012_convert_proposal_choices_to_jsonb.up.sql -------------------------------------------------------------------------------- /backend/migrations/000013_add_community_categories_and_toc.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000013_add_community_categories_and_toc.down.sql -------------------------------------------------------------------------------- /backend/migrations/000013_add_community_categories_and_toc.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000013_add_community_categories_and_toc.up.sql -------------------------------------------------------------------------------- /backend/migrations/000014_add_one_address_strategy.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000014_add_one_address_strategy.down.sql -------------------------------------------------------------------------------- /backend/migrations/000014_add_one_address_strategy.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000014_add_one_address_strategy.up.sql -------------------------------------------------------------------------------- /backend/migrations/000015_remove_token_weighted_capped.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000015_remove_token_weighted_capped.down.sql -------------------------------------------------------------------------------- /backend/migrations/000015_remove_token_weighted_capped.up.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM voting_strategies WHERE key='token-weighted-capped' -------------------------------------------------------------------------------- /backend/migrations/000016_add_community_contract.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000016_add_community_contract.down.sql -------------------------------------------------------------------------------- /backend/migrations/000016_add_community_contract.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000016_add_community_contract.up.sql -------------------------------------------------------------------------------- /backend/migrations/000017_add_nfts_table.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS nfts; 2 | -------------------------------------------------------------------------------- /backend/migrations/000017_add_nfts_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000017_add_nfts_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000018_alter_communities_table.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000018_alter_communities_table.down.sql -------------------------------------------------------------------------------- /backend/migrations/000018_alter_communities_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000018_alter_communities_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000019_add_achievements_table.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000019_add_achievements_table.down.sql -------------------------------------------------------------------------------- /backend/migrations/000019_add_achievements_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000019_add_achievements_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000020_add_achievements_details_column.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000020_add_achievements_details_column.down.sql -------------------------------------------------------------------------------- /backend/migrations/000020_add_achievements_details_column.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000020_add_achievements_details_column.up.sql -------------------------------------------------------------------------------- /backend/migrations/000021_add_balance_of_nfts.down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM voting_strategies WHERE key='balance-of-nfts'; 2 | -------------------------------------------------------------------------------- /backend/migrations/000021_add_balance_of_nfts.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000021_add_balance_of_nfts.up.sql -------------------------------------------------------------------------------- /backend/migrations/000022_update_flow_community.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000022_update_flow_community.down.sql -------------------------------------------------------------------------------- /backend/migrations/000022_update_flow_community.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000022_update_flow_community.up.sql -------------------------------------------------------------------------------- /backend/migrations/000023_alter_proposals_table.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE COMMUNITIES DROP IF EXISTS snapshot_status; 2 | -------------------------------------------------------------------------------- /backend/migrations/000023_alter_proposals_table.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE proposals ADD COLUMN snapshot_status VARCHAR(255) NOT NULL DEFAULT 'processing'; 2 | -------------------------------------------------------------------------------- /backend/migrations/000024_change_strategy_flow_community.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000024_change_strategy_flow_community.down.sql -------------------------------------------------------------------------------- /backend/migrations/000024_change_strategy_flow_community.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000024_change_strategy_flow_community.up.sql -------------------------------------------------------------------------------- /backend/migrations/000025_rename_achievements_sequence.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000025_rename_achievements_sequence.down.sql -------------------------------------------------------------------------------- /backend/migrations/000025_rename_achievements_sequence.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000025_rename_achievements_sequence.up.sql -------------------------------------------------------------------------------- /backend/migrations/000026_update_voting_strategy_desc.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000026_update_voting_strategy_desc.down.sql -------------------------------------------------------------------------------- /backend/migrations/000026_update_voting_strategy_desc.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000026_update_voting_strategy_desc.up.sql -------------------------------------------------------------------------------- /backend/migrations/000027_alter_communities_table.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE communities DROP IF EXISTS is_featured; 2 | -------------------------------------------------------------------------------- /backend/migrations/000027_alter_communities_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000027_alter_communities_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000028_update_voting_strategies_table.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000028_update_voting_strategies_table.down.sql -------------------------------------------------------------------------------- /backend/migrations/000028_update_voting_strategies_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000028_update_voting_strategies_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000029_update_voting_strategies_one_addr_one_vote.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000029_update_voting_strategies_one_addr_one_vote.down.sql -------------------------------------------------------------------------------- /backend/migrations/000029_update_voting_strategies_one_addr_one_vote.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000029_update_voting_strategies_one_addr_one_vote.up.sql -------------------------------------------------------------------------------- /backend/migrations/000030_alter_proposal__weight_threshold.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000030_alter_proposal__weight_threshold.down.sql -------------------------------------------------------------------------------- /backend/migrations/000030_alter_proposal__weight_threshold.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000030_alter_proposal__weight_threshold.up.sql -------------------------------------------------------------------------------- /backend/migrations/000031_remove_one_address_one_vote_strats.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000031_remove_one_address_one_vote_strats.down.sql -------------------------------------------------------------------------------- /backend/migrations/000031_remove_one_address_one_vote_strats.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000031_remove_one_address_one_vote_strats.up.sql -------------------------------------------------------------------------------- /backend/migrations/000032_add_float_nft_strat.down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM voting_strategies WHERE key ='float-nfts'; 2 | -------------------------------------------------------------------------------- /backend/migrations/000032_add_float_nft_strat.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000032_add_float_nft_strat.up.sql -------------------------------------------------------------------------------- /backend/migrations/000033_alter_votes_table.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE votes DROP COLUMN IF EXISTS is_cancelled; 2 | -------------------------------------------------------------------------------- /backend/migrations/000033_alter_votes_table.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE votes ADD COLUMN is_cancelled BOOLEAN DEFAULT 'false'; -------------------------------------------------------------------------------- /backend/migrations/000034_alter_communities_table.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE communities DROP COLUMN IF EXISTS contract_type; 2 | -------------------------------------------------------------------------------- /backend/migrations/000034_alter_communities_table.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE communities ADD COLUMN contract_type VARCHAR(5); -------------------------------------------------------------------------------- /backend/migrations/000035_add_voucher_column.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000035_add_voucher_column.down.sql -------------------------------------------------------------------------------- /backend/migrations/000035_add_voucher_column.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000035_add_voucher_column.up.sql -------------------------------------------------------------------------------- /backend/migrations/000036_drop_user_achievements_table.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000036_drop_user_achievements_table.down.sql -------------------------------------------------------------------------------- /backend/migrations/000036_drop_user_achievements_table.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000036_drop_user_achievements_table.up.sql -------------------------------------------------------------------------------- /backend/migrations/000037_update_community_catergory.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000037_update_community_catergory.down.sql -------------------------------------------------------------------------------- /backend/migrations/000037_update_community_catergory.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000037_update_community_catergory.up.sql -------------------------------------------------------------------------------- /backend/migrations/000038_drop_dup_threshold_communities_table.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE communities ADD COLUMN threshold NUMERIC(18,0); 2 | -------------------------------------------------------------------------------- /backend/migrations/000038_drop_dup_threshold_communities_table.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE communities DROP COLUMN IF EXISTS threshold; 2 | -------------------------------------------------------------------------------- /backend/migrations/000039_add_custom_script_strategy.down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM voting_strategies WHERE key ='custom-script'; 2 | -------------------------------------------------------------------------------- /backend/migrations/000039_add_custom_script_strategy.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000039_add_custom_script_strategy.up.sql -------------------------------------------------------------------------------- /backend/migrations/000040_add_tigram_extension.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000040_add_tigram_extension.down.sql -------------------------------------------------------------------------------- /backend/migrations/000040_add_tigram_extension.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000040_add_tigram_extension.up.sql -------------------------------------------------------------------------------- /backend/migrations/000041_increase_vote_message_max_length.down.sql: -------------------------------------------------------------------------------- 1 | -- no going back! -------------------------------------------------------------------------------- /backend/migrations/000041_increase_vote_message_max_length.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000041_increase_vote_message_max_length.up.sql -------------------------------------------------------------------------------- /backend/migrations/000042_add_staked_token_strategy.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/migrations/000042_add_staked_token_strategy.up.sql -------------------------------------------------------------------------------- /backend/migrations/000042_add_total_token_strategy.down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM voting_strategies WHERE key = 'total-token-weighted-default' -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/scripts/check_duplicate_migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/scripts/check_duplicate_migrations.js -------------------------------------------------------------------------------- /backend/tests/community_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/community_test.go -------------------------------------------------------------------------------- /backend/tests/community_user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/community_user_test.go -------------------------------------------------------------------------------- /backend/tests/flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/flow.json -------------------------------------------------------------------------------- /backend/tests/leaderboard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/leaderboard_test.go -------------------------------------------------------------------------------- /backend/tests/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/list_test.go -------------------------------------------------------------------------------- /backend/tests/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/main_test.go -------------------------------------------------------------------------------- /backend/tests/proposal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/proposal_test.go -------------------------------------------------------------------------------- /backend/tests/strategies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/strategies_test.go -------------------------------------------------------------------------------- /backend/tests/test_utils/community_user_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/community_user_utils.go -------------------------------------------------------------------------------- /backend/tests/test_utils/community_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/community_utils.go -------------------------------------------------------------------------------- /backend/tests/test_utils/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/factory.go -------------------------------------------------------------------------------- /backend/tests/test_utils/leaderboard_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/leaderboard_utils.go -------------------------------------------------------------------------------- /backend/tests/test_utils/list_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/list_utils.go -------------------------------------------------------------------------------- /backend/tests/test_utils/proposal_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/proposal_utils.go -------------------------------------------------------------------------------- /backend/tests/test_utils/strategy_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/strategy_utils.go -------------------------------------------------------------------------------- /backend/tests/test_utils/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/test_utils.go -------------------------------------------------------------------------------- /backend/tests/test_utils/vote_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/test_utils/vote_utils.go -------------------------------------------------------------------------------- /backend/tests/vote_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/tests/vote_test.go -------------------------------------------------------------------------------- /backend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/backend/yarn.lock -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/Dockerfile.stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/Dockerfile.stage -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/deploy/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/deploy/nginx.conf -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/packages/client/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/.env.example -------------------------------------------------------------------------------- /frontend/packages/client/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /frontend/packages/client/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /frontend/packages/client/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/.prettierrc -------------------------------------------------------------------------------- /frontend/packages/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/README.md -------------------------------------------------------------------------------- /frontend/packages/client/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/api.md -------------------------------------------------------------------------------- /frontend/packages/client/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/craco.config.js -------------------------------------------------------------------------------- /frontend/packages/client/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/jsconfig.json -------------------------------------------------------------------------------- /frontend/packages/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/package.json -------------------------------------------------------------------------------- /frontend/packages/client/public/Footer-heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/Footer-heart.png -------------------------------------------------------------------------------- /frontend/packages/client/public/cast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/cast.jpg -------------------------------------------------------------------------------- /frontend/packages/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/favicon.ico -------------------------------------------------------------------------------- /frontend/packages/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/index.html -------------------------------------------------------------------------------- /frontend/packages/client/public/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/logo.ico -------------------------------------------------------------------------------- /frontend/packages/client/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/logo.png -------------------------------------------------------------------------------- /frontend/packages/client/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/logo.svg -------------------------------------------------------------------------------- /frontend/packages/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/manifest.json -------------------------------------------------------------------------------- /frontend/packages/client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/public/robots.txt -------------------------------------------------------------------------------- /frontend/packages/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/App.js -------------------------------------------------------------------------------- /frontend/packages/client/src/App.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/App.sass -------------------------------------------------------------------------------- /frontend/packages/client/src/api/community.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/api/community.js -------------------------------------------------------------------------------- /frontend/packages/client/src/api/communityCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/api/communityCategory.js -------------------------------------------------------------------------------- /frontend/packages/client/src/api/communityUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/api/communityUsers.js -------------------------------------------------------------------------------- /frontend/packages/client/src/api/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/api/constants.js -------------------------------------------------------------------------------- /frontend/packages/client/src/api/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/api/file.js -------------------------------------------------------------------------------- /frontend/packages/client/src/api/proposals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/api/proposals.js -------------------------------------------------------------------------------- /frontend/packages/client/src/api/votingStrategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/api/votingStrategies.js -------------------------------------------------------------------------------- /frontend/packages/client/src/assets/Flip_Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/assets/Flip_Default.png -------------------------------------------------------------------------------- /frontend/packages/client/src/assets/miquela.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/assets/miquela.png -------------------------------------------------------------------------------- /frontend/packages/client/src/assets/people-toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/assets/people-toast.png -------------------------------------------------------------------------------- /frontend/packages/client/src/assets/star-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/assets/star-single.png -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ActionButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ActionButton.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/AddButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/AddButton.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/BrowseButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/BrowseButton.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunitiesPresenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunitiesPresenter.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityCard/CommunityCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityCard/CommunityCard.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityCard/NameAndBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityCard/NameAndBody.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityCard/PillsWithStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityCard/PillsWithStatus.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityCard/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorDetails/AddressForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorDetails/AddressForm.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorDetails/CommunityEditorDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorDetails/CommunityEditorDetails.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorDetails/FormConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorDetails/FormConfig.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorDetails/FormFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorDetails/FormFields.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorDetails/MembersEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorDetails/MembersEditor.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorDetails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorDetails/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorLinks/CommunityEditorLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorLinks/CommunityEditorLinks.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorLinks/FormConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorLinks/FormConfig.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorLinks/FormFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorLinks/FormFields.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorLinks/LinksForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorLinks/LinksForm.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorLinks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorLinks/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorProfile/CommunityEditorProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorProfile/CommunityEditorProfile.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorProfile/FormConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorProfile/FormConfig.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorProfile/FormFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorProfile/FormFields.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorProfile/ImageCropModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorProfile/ImageCropModal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorProfile/ProfileForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorProfile/ProfileForm.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorProfile/Slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorProfile/Slider.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityEditorProfile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityEditorProfile/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/CommunityPropsAndVoting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/CommunityPropsAndVoting.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/JoinCommunityButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/JoinCommunityButton.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/ProposalThresholdEditor/FormConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/ProposalThresholdEditor/FormConfig.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/ProposalThresholdEditor/ProposalThresholdEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/ProposalThresholdEditor/ProposalThresholdEditor.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/ProposalThresholdEditor/ThresholdForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/ProposalThresholdEditor/ThresholdForm.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/ProposalThresholdEditor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/ProposalThresholdEditor/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/StrategyEditorModal/CustomScriptSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/StrategyEditorModal/CustomScriptSelector.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/StrategyEditorModal/FormConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/StrategyEditorModal/FormConfig.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/StrategyEditorModal/StrategyInformationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/StrategyEditorModal/StrategyInformationForm.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/StrategyEditorModal/StrategySelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/StrategyEditorModal/StrategySelector.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/StrategyEditorModal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/StrategyEditorModal/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/StrategySelectorForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/StrategySelectorForm.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/StrategySelectorInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/StrategySelectorInput.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Community/hooks/useFlowAddrValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Community/hooks/useFlowAddrValidator.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityAbout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityAbout.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityCreate/FormConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityCreate/FormConfig.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityCreate/StartSteps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityCreate/StartSteps.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityCreate/StepFour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityCreate/StepFour.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityCreate/StepOne/StepOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityCreate/StepOne/StepOne.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityCreate/StepOne/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityCreate/StepOne/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityCreate/StepThree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityCreate/StepThree.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityCreate/StepTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityCreate/StepTwo.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityCreate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityCreate/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityHeader.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityLinks.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityMembersList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityMembersList.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityProposalList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityProposalList.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityProposals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityProposals.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/CommunityPulse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/CommunityPulse.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Dropdown.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Dropdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Dropdown.test.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FadeIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FadeIn.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FadeInOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FadeInOut.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FilterPill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FilterPill.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FlipsContainer/FlipCardBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FlipsContainer/FlipCardBody.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FlipsContainer/FlipCardFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FlipsContainer/FlipCardFooter.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FlipsContainer/FlipCardHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FlipsContainer/FlipCardHeader.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FlipsContainer/FlipsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FlipsContainer/FlipsCard.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FlipsContainer/FlipsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FlipsContainer/FlipsList.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FlipsContainer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FlipsContainer/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/FlipsContainer/index.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/FlipsContainer/index.module.scss -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Header.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/HomeFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/HomeFooter.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/HomeHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/HomeHeader.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Input.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Label.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/LeaderBoard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/LeaderBoard.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Loader.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Message.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ModalAboutItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ModalAboutItem.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Popover.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/BackButton.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/CancelProposalModalConfirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/CancelProposalModalConfirmation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/HeaderNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/HeaderNavigation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/ProposalStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/ProposalStatus.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/ShareDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/ShareDropdown.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/VoteOptions/ButtonChoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/VoteOptions/ButtonChoice.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/VoteOptions/ImageBasedOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/VoteOptions/ImageBasedOptions.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/VoteOptions/TextBasedOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/VoteOptions/TextBasedOptions.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/VoteOptions/VoteHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/VoteOptions/VoteHeader.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/VoteOptions/VoteOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/VoteOptions/VoteOptions.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/VoteOptions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/VoteOptions/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/getStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/getStatus.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Proposal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Proposal/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/DesktopCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/DesktopCard.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/MobileTabletCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/MobileTabletCard.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/ProposalCardBody.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/ProposalCardBody.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/ProposalCardContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/ProposalCardContent.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/ProposalCardFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/ProposalCardFooter.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/ProposalCardHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/ProposalCardHeader.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/ProposalCardHeader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/ProposalCardHeader.test.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/__snapshots__/ProposalHeader.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/__snapshots__/ProposalHeader.test.js.snap -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCard/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/FormConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/FormConfig.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepOne/ChoiceOptionCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepOne/ChoiceOptionCreator.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepOne/ImageChoiceUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepOne/ImageChoiceUploader.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepOne/ImageChoices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepOne/ImageChoices.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepOne/TextBasedChoices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepOne/TextBasedChoices.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepOne/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepOne/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepThree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepThree.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepTwo/StepTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepTwo/StepTwo.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepTwo/TimeIntervals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepTwo/TimeIntervals.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/StepTwo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/StepTwo/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalCreate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalCreate/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation.test.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/AvatarBloquies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/AvatarBloquies.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/BlockieWithAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/BlockieWithAddress.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/CommunityName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/CommunityName.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/InfoBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/InfoBlock.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/Information.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/Information.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/ProposalInformation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/ProposalInformation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/Results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/Results.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/ResultsPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/ResultsPanel.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/ProposalInformation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/ProposalInformation/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/SideNavbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/SideNavbar.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/StatusLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/StatusLabel.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/StatusPill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/StatusPill.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/StepByStep/NexStepButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/StepByStep/NexStepButton.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/StepByStep/StepByStep.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/StepByStep/StepByStep.sass -------------------------------------------------------------------------------- /frontend/packages/client/src/components/StepByStep/SubmitButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/StepByStep/SubmitButton.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/StepByStep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/StepByStep/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/StrategyModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/StrategyModal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/StyledStatusPill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/StyledStatusPill.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/TableMembers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/TableMembers.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Tablink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Tablink.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Title.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Tooltip.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/TooltipMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/TooltipMessage.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/Transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/Transactions.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/UploadImageModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/UploadImageModal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/VotesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/VotesList.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/WalletConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/WalletConnect.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/WalletConnectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/WalletConnectModal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/WrapperResponsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/WrapperResponsive.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/__snapshots__/Dropdown.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/__snapshots__/Dropdown.test.js.snap -------------------------------------------------------------------------------- /frontend/packages/client/src/components/__snapshots__/ProposalInformation.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/__snapshots__/ProposalInformation.test.js.snap -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/Checkbox.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/CustomDatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/CustomDatePicker.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/Dropdown.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/Editor/DraftjsEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/Editor/DraftjsEditor.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/Editor/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/Editor/Editor.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/Editor/ImageOption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/Editor/ImageOption.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/Editor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/Editor/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/Form.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/Input.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/common/TextArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/common/TextArea.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/modals/CancelProposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/modals/CancelProposal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/modals/CastingVote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/modals/CastingVote.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/modals/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/modals/Error.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/modals/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/modals/Modal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/modals/VoteConfirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/modals/VoteConfirmation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/modals/VoteConfirmed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/modals/VoteConfirmed.js -------------------------------------------------------------------------------- /frontend/packages/client/src/components/modals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/components/modals/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/const/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/const/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/contexts/ErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/contexts/ErrorHandler.js -------------------------------------------------------------------------------- /frontend/packages/client/src/contexts/NotificationModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/contexts/NotificationModal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/contexts/Web3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/contexts/Web3.js -------------------------------------------------------------------------------- /frontend/packages/client/src/data/contractsAndPaths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/data/contractsAndPaths.json -------------------------------------------------------------------------------- /frontend/packages/client/src/data/dataServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/data/dataServices.js -------------------------------------------------------------------------------- /frontend/packages/client/src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/helpers/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/helpers/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/helpers/validation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useBeforeUnload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useBeforeUnload.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useBrowserName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useBrowserName.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityActiveStrategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityActiveStrategies.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityCategory.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityDetails.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityDetailsUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityDetailsUpdate.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityMembers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityMembers.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityMutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityMutation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityProposals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityProposals.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityProposalsWithVotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityProposalsWithVotes.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunitySearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunitySearch.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityUsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityUsers.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useCommunityUsersMutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useCommunityUsersMutation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useDebounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useDebounce.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useFclUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useFclUser.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useFeaturedCommunities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useFeaturedCommunities.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useFetchMoreOnScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useFetchMoreOnScroll.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useFileUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useFileUploader.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useJoinCommunity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useJoinCommunity.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useLeaderBoard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useLeaderBoard.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useLocalStorage.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useMediaQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useMediaQuery.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useOnOutsideClick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useOnOutsideClick.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useProposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useProposal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useProposalCreateMutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useProposalCreateMutation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useProposalMutation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useProposalMutation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useProposalVotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useProposalVotes.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useQueryParams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useQueryParams.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useStarAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useStarAnimation.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useUserCommunities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useUserCommunities.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useUserRoleOnCommunity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useUserRoleOnCommunity.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useVoteOnProposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useVoteOnProposal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useVotesForAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useVotesForAddress.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useVotingResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useVotingResults.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useVotingStrategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useVotingStrategies.js -------------------------------------------------------------------------------- /frontend/packages/client/src/hooks/useWindowDimension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/hooks/useWindowDimension.js -------------------------------------------------------------------------------- /frontend/packages/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/index.css -------------------------------------------------------------------------------- /frontend/packages/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/layout/SectionContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/layout/SectionContainer.js -------------------------------------------------------------------------------- /frontend/packages/client/src/networks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/networks.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/About.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/BrowseCommunities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/BrowseCommunities.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/Community.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/Community.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/CommunityCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/CommunityCreate.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/CommunityEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/CommunityEditor.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/Debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/Debug.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/Error.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/Home.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/PrivacyPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/PrivacyPolicy.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/Proposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/Proposal.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/ProposalCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/ProposalCreate.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/TermsOfService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/TermsOfService.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/pages/pages.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/pages/pages.test.js -------------------------------------------------------------------------------- /frontend/packages/client/src/reducers/defaultReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/reducers/defaultReducer.js -------------------------------------------------------------------------------- /frontend/packages/client/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/reducers/index.js -------------------------------------------------------------------------------- /frontend/packages/client/src/reducers/paginationReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/reducers/paginationReducer.js -------------------------------------------------------------------------------- /frontend/packages/client/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/client/src/utils.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /frontend/packages/shared-components/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /frontend/packages/shared-components/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/.prettierrc -------------------------------------------------------------------------------- /frontend/packages/shared-components/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/.storybook/main.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/.storybook/preview.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/README.md -------------------------------------------------------------------------------- /frontend/packages/shared-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/package.json -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Active.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Active.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/AngleDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/AngleDown.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/AngleUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/AngleUp.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/ArrowLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/ArrowLeft.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/ArrowLeftBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/ArrowLeftBold.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/ArrowRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/ArrowRight.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Bin.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Calendar.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/CaretDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/CaretDown.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/CheckCircle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/CheckCircle.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/CheckMark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/CheckMark.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/CheckOutlined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/CheckOutlined.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Close.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Close.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Copy.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Discord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Discord.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/ErrorOutline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/ErrorOutline.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Eye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Eye.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Flow.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/GitHub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/GitHub.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/HideEye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/HideEye.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Image.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/InfoOutLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/InfoOutLine.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Instagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Instagram.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/InvalidCheckMark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/InvalidCheckMark.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/LinkOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/LinkOut.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Logo.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Plus.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/PlusLightFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/PlusLightFill.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/RemoveLightFill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/RemoveLightFill.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Search.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Share.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Star.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Star.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Twitter.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Upload.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/ValidCheckMark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/ValidCheckMark.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/Website.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/Website.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/index.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/Svg/index.stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/packages/shared-components/src/Svg/index.stories.js -------------------------------------------------------------------------------- /frontend/packages/shared-components/src/index.js: -------------------------------------------------------------------------------- 1 | export { default as Svg } from './Svg'; 2 | -------------------------------------------------------------------------------- /frontend/test/babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/test/babel.config.json -------------------------------------------------------------------------------- /frontend/test/basic-test.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/test/basic-test.test.js -------------------------------------------------------------------------------- /frontend/test/jest.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/test/jest.config.json -------------------------------------------------------------------------------- /frontend/test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/test/package-lock.json -------------------------------------------------------------------------------- /frontend/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/test/package.json -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DapperCollectives/CAST/HEAD/frontend/yarn.lock --------------------------------------------------------------------------------