├── .browserslistrc ├── .env ├── .eslintignore ├── .eslintrc.js ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.yml │ └── FEATURE_REQUEST.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── deploy.yml │ ├── nodejs.yml │ └── update-snapshot-packages.yml ├── .gitignore ├── .gitmodules ├── .gitpod.yml ├── .husky ├── post-checkout ├── post-merge ├── pre-commit └── pre-push ├── .nvmrc ├── .prettierrc.js ├── LICENSE ├── README.md ├── babel.config.js ├── crowdin.yml ├── cypress.config.ts ├── cypress └── e2e │ └── createProposal.cy.js ├── index.html ├── package.json ├── postcss.config.js ├── public ├── .well-known │ └── assetlinks.json ├── about │ ├── big_planet.png │ ├── main.png │ └── small_planet.png ├── avatar.png ├── favicon.png ├── icon.svg ├── manifest.json ├── service-worker.js └── stickers │ ├── hooray.png │ └── just_signed.png ├── src ├── App.vue ├── assets │ ├── fonts │ │ ├── Calibre-Medium-Custom.woff2 │ │ ├── Calibre-Semibold-Custom.woff2 │ │ ├── iconfont.css │ │ ├── iconfont.eot │ │ ├── iconfont.json │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ ├── iconfont.woff │ │ ├── iconfont.woff2 │ │ └── space-mono-v11-latin-700.woff2 │ └── icons │ │ ├── coingecko.svg │ │ ├── discord.svg │ │ ├── github.svg │ │ ├── lenster.svg │ │ ├── shutter.svg │ │ ├── signature.svg │ │ ├── telegram.svg │ │ ├── twitter.svg │ │ ├── voted.svg │ │ └── youtube.svg ├── components │ ├── AboutMembersListItem.vue │ ├── AboutSubheader.vue │ ├── AvatarOverlayEdit.vue │ ├── AvatarSpace.vue │ ├── AvatarToken.vue │ ├── AvatarUser.vue │ ├── BaseAvatar.vue │ ├── BaseBadge.vue │ ├── BaseBlock.vue │ ├── BaseButton.test.js │ ├── BaseButton.vue │ ├── BaseButtonIcon.vue │ ├── BaseCalendar.vue │ ├── BaseCombobox.vue │ ├── BaseComboboxMultiple.vue │ ├── BaseContainer.vue │ ├── BaseCounter.vue │ ├── BaseFlashNotification.vue │ ├── BaseIcon.vue │ ├── BaseIndicator.vue │ ├── BaseInput.vue │ ├── BaseLink.vue │ ├── BaseListbox.vue │ ├── BaseListboxMultiple.vue │ ├── BaseLoading.vue │ ├── BaseMarkdown.vue │ ├── BaseMenu.vue │ ├── BaseMessage.vue │ ├── BaseMessageBlock.vue │ ├── BaseModal.vue │ ├── BaseModalSelectItem.vue │ ├── BaseNetworkItem.vue │ ├── BaseNoResults.vue │ ├── BasePill.vue │ ├── BasePluginItem.vue │ ├── BasePopover.vue │ ├── BasePopoverHover.vue │ ├── BaseSearch.vue │ ├── BaseSidebarNavigationItem.vue │ ├── BaseSkinItem.vue │ ├── BaseStrategyItem.vue │ ├── BaseUser.vue │ ├── BaseValidationItem.vue │ ├── BlockSpacesList.vue │ ├── BlockSpacesListButtonMore.vue │ ├── BlockSpacesListItem.vue │ ├── BlockSpacesListSkeleton.vue │ ├── ButtonBack.vue │ ├── ButtonCard.vue │ ├── ButtonFollow.vue │ ├── ButtonPlayground.vue │ ├── ButtonShare.vue │ ├── ButtonSidebar.vue │ ├── ButtonTheme.vue │ ├── ComboboxNetwork.vue │ ├── ContainerParallelInput.vue │ ├── ExploreMenuCategories.vue │ ├── ExploreSkeletonLoading.vue │ ├── ExploreSpaces.vue │ ├── FooterLinks.vue │ ├── FooterLinksItem.vue │ ├── FooterSocials.vue │ ├── FooterSocialsItem.vue │ ├── FooterTitle.vue │ ├── FormArray.vue │ ├── FormObject.vue │ ├── IconDiscord.vue │ ├── IconInformationTooltip.vue │ ├── IconSocial.vue │ ├── IconVerifiedSpace.vue │ ├── IndicatorAssetsChange.spec.js │ ├── IndicatorAssetsChange.vue │ ├── InputCheckbox.vue │ ├── InputDate.vue │ ├── InputEmail.vue │ ├── InputNewsletter.vue │ ├── InputNumber.vue │ ├── InputRadio.vue │ ├── InputSelect.vue │ ├── InputSelectPrivacy.vue │ ├── InputSelectVoteType.vue │ ├── InputSelectVoteValidation.vue │ ├── InputSocial.vue │ ├── InputString.vue │ ├── InputSwitch.vue │ ├── InputUploadAvatar.vue │ ├── InputUploadImage.vue │ ├── InputUrl.vue │ ├── LabelInput.vue │ ├── LabelProposalState.vue │ ├── LabelProposalVoted.vue │ ├── ListboxMultipleCategories.vue │ ├── LoadingPage.vue │ ├── LoadingRow.vue │ ├── LoadingSpinner.vue │ ├── MenuAccount.vue │ ├── MenuLanguages.vue │ ├── MessageWarningGnosisNetwork.vue │ ├── ModalAccount.vue │ ├── ModalConfirmAction.vue │ ├── ModalControllerEdit.vue │ ├── ModalDelegate.vue │ ├── ModalNotice.vue │ ├── ModalPlugins.vue │ ├── ModalPostVote.vue │ ├── ModalProfileForm.vue │ ├── ModalProposalStrategies.vue │ ├── ModalReceipt.vue │ ├── ModalRevokeDelegate.vue │ ├── ModalSelectDate.vue │ ├── ModalSkins.vue │ ├── ModalSpaces.vue │ ├── ModalSpacesListItem.vue │ ├── ModalStrategy.vue │ ├── ModalTerms.vue │ ├── ModalTreasury.vue │ ├── ModalUnsupportedNetwork.vue │ ├── ModalValidation.vue │ ├── ModalVote.vue │ ├── ModalVoteMessagePassport.vue │ ├── ModalVoteValidation.vue │ ├── ModalVotingPrivacy.vue │ ├── ModalVotingType.vue │ ├── NavbarAccount.vue │ ├── NavbarExtras.vue │ ├── NavbarNotifications.vue │ ├── PopoverHoverProfile.vue │ ├── ProfileAboutBiography.vue │ ├── ProfileAboutDelegate.vue │ ├── ProfileAboutDelegateListItem.vue │ ├── ProfileActivityList.vue │ ├── ProfileActivityListItem.vue │ ├── ProfileAddressCopy.vue │ ├── ProfileName.vue │ ├── ProfileSidebar.vue │ ├── ProfileSidebarHeader.vue │ ├── ProfileSidebarHeaderSkeleton.vue │ ├── ProfileSidebarNavigation.vue │ ├── ProposalsItem.vue │ ├── ProposalsItemActive.vue │ ├── ProposalsItemBody.vue │ ├── ProposalsItemResults.vue │ ├── ProposalsItemTitle.vue │ ├── SettingsAdminsBlock.vue │ ├── SettingsAuthorsBlock.vue │ ├── SettingsDomainBlock.vue │ ├── SettingsLinkBlock.vue │ ├── SettingsPluginsBlock.vue │ ├── SettingsProfileBlock.vue │ ├── SettingsStrategiesBlock.vue │ ├── SettingsStrategiesBlockItem.vue │ ├── SettingsSubSpacesBlock.vue │ ├── SettingsTreasuriesBlock.vue │ ├── SettingsTreasuriesBlockItem.vue │ ├── SettingsValidationBlock.vue │ ├── SettingsVotingBlock.vue │ ├── SetupButtonBack.vue │ ├── SetupButtonCreate.vue │ ├── SetupButtonNext.vue │ ├── SetupController.vue │ ├── SetupDomain.vue │ ├── SetupDomainRegister.vue │ ├── SetupExtras.vue │ ├── SetupIntro.vue │ ├── SetupMessageHelp.vue │ ├── SetupProfile.vue │ ├── SetupSidebarStepper.vue │ ├── SetupStrategy.vue │ ├── SetupStrategyAdvanced.vue │ ├── SetupStrategyBasic.vue │ ├── SetupStrategyVote.vue │ ├── SidebarSpacesSkeleton.vue │ ├── SidebarUnreadIndicator.vue │ ├── SpaceCreateContent.vue │ ├── SpaceCreatePlugins.vue │ ├── SpaceCreateVoting.vue │ ├── SpaceCreateVotingDateEnd.vue │ ├── SpaceCreateVotingDateStart.vue │ ├── SpaceCreateWarnings.vue │ ├── SpaceProposalContent.vue │ ├── SpaceProposalDiscussionLink.vue │ ├── SpaceProposalHeader.vue │ ├── SpaceProposalInformation.vue │ ├── SpaceProposalPlugins.vue │ ├── SpaceProposalPluginsSidebar.vue │ ├── SpaceProposalResults.vue │ ├── SpaceProposalResultsError.vue │ ├── SpaceProposalResultsList.vue │ ├── SpaceProposalResultsListItem.vue │ ├── SpaceProposalResultsProgressBar.vue │ ├── SpaceProposalResultsQuorum.vue │ ├── SpaceProposalResultsQuorumPlugin.vue │ ├── SpaceProposalResultsShutter.vue │ ├── SpaceProposalVote.vue │ ├── SpaceProposalVoteApproval.vue │ ├── SpaceProposalVoteQuadratic.vue │ ├── SpaceProposalVoteRankedChoice.vue │ ├── SpaceProposalVoteSingleChoice.vue │ ├── SpaceProposalVotesList.vue │ ├── SpaceProposalVotesListItemChoice.vue │ ├── SpaceProposalsMenuFilter.vue │ ├── SpaceProposalsNoProposals.vue │ ├── SpaceProposalsNotice.vue │ ├── SpaceSidebar.vue │ ├── SpaceSidebarFooter.vue │ ├── SpaceSidebarHeader.vue │ ├── SpaceSidebarNavigation.vue │ ├── SpaceSidebarSkeleton.vue │ ├── SpaceSidebarSubspaces.vue │ ├── SpaceWarningFlagged.vue │ ├── StrategiesBlockWarning.vue │ ├── TextAutolinker.vue │ ├── TextareaArray.vue │ ├── TextareaAutosize.vue │ ├── TextareaJson.vue │ ├── TheFooter.vue │ ├── TheHeader.vue │ ├── TheLayout.vue │ ├── TheNavbar.vue │ ├── TheSearchBar.vue │ ├── TheSidebar.vue │ ├── TreasuryAssetsList.vue │ ├── TreasuryAssetsListItem.spec.js │ ├── TreasuryAssetsListItem.vue │ ├── TreasuryWalletsList.spec.js │ ├── TreasuryWalletsList.vue │ ├── TreasuryWalletsListItem.spec.js │ ├── TreasuryWalletsListItem.vue │ └── Ui │ │ ├── Collapsible.vue │ │ ├── CollapsibleContent.vue │ │ ├── CollapsibleText.vue │ │ ├── Input.vue │ │ └── Select.vue ├── composables │ ├── index.ts │ ├── useAliasAction.ts │ ├── useApolloQuery.ts │ ├── useApp.ts │ ├── useCategories.ts │ ├── useClient.ts │ ├── useCopy.ts │ ├── useDelegate.ts │ ├── useEns.ts │ ├── useExtendedSpaces.ts │ ├── useFlashNotification.ts │ ├── useFollowSpace.ts │ ├── useFormValidation.ts │ ├── useGnosis.ts │ ├── useI18n.ts │ ├── useImageUpload.ts │ ├── useInfiniteLoader.ts │ ├── useIntl.ts │ ├── useModal.ts │ ├── useNetworksFilter.ts │ ├── useNotifications.ts │ ├── usePlugins.ts │ ├── useProfiles.ts │ ├── useProposals.ts │ ├── useQuorum.ts │ ├── useReportDownload.ts │ ├── useSafe.ts │ ├── useScrollMonitor.ts │ ├── useSharing.ts │ ├── useSkin.ts │ ├── useSkinsFilter.ts │ ├── useSpaceController.ts │ ├── useSpaceCreateForm.ts │ ├── useSpaceForm.ts │ ├── useSpaceSubscription.ts │ ├── useSpaces.ts │ ├── useStrategies.ts │ ├── useTerms.ts │ ├── useTreasury.ts │ ├── useTxStatus.ts │ ├── useUnseenProposals.ts │ ├── useUsername.ts │ ├── useValidationsFilter.ts │ └── useWeb3.ts ├── env.d.ts ├── helpers │ ├── abi.ts │ ├── apollo.ts │ ├── auth.ts │ ├── b64.ts │ ├── beams.ts │ ├── categories.json │ ├── clientEIP712.ts │ ├── clientGnosisSafe.ts │ ├── connectors.json │ ├── covalent.ts │ ├── delegation.ts │ ├── ens.ts │ ├── i18n.ts │ ├── interfaces.ts │ ├── profile.ts │ ├── queries.ts │ ├── shutter.ts │ ├── snapshot.ts │ ├── utils.test.js │ └── utils.ts ├── locales │ ├── ar-SA.json │ ├── de-DE.json │ ├── default.json │ ├── es-ES.json │ ├── fil-PH.json │ ├── fr-FR.json │ ├── hi-IN.json │ ├── id-ID.json │ ├── it-IT.json │ ├── ja-JP.json │ ├── ko-KR.json │ ├── languages.json │ ├── pt-PT.json │ ├── ro-RO.json │ ├── ru-RU.json │ ├── tr-TR.json │ ├── uk-UA.json │ ├── vi-VN.json │ └── zh-CN.json ├── main.ts ├── plugins │ ├── README.md │ ├── commentBox │ │ ├── Proposal.vue │ │ ├── components │ │ │ ├── Comment.vue │ │ │ ├── CommentBlock.vue │ │ │ ├── CustomBlock.vue │ │ │ ├── ListReply.vue │ │ │ └── ReplyBlock.vue │ │ └── plugin.json │ ├── gnosis │ │ ├── Create.vue │ │ ├── ProposalSidebar.vue │ │ ├── components │ │ │ ├── Config.vue │ │ │ └── CustomBlock.vue │ │ ├── index.ts │ │ └── plugin.json │ ├── hal │ │ ├── ProposalSidebar.vue │ │ ├── components │ │ │ └── CustomBlock.vue │ │ └── plugin.json │ ├── poap │ │ ├── ProposalSidebar.vue │ │ ├── components │ │ │ └── CustomBlock.vue │ │ ├── index.ts │ │ └── plugin.json │ ├── progress │ │ ├── ProposalSidebar.vue │ │ ├── components │ │ │ └── CustomBlock.vue │ │ ├── index.ts │ │ └── plugin.json │ ├── projectGalaxy │ │ ├── ProposalSidebar.vue │ │ ├── README.md │ │ ├── components │ │ │ └── CustomBlock.vue │ │ ├── index.ts │ │ └── plugin.json │ ├── quorum │ │ ├── examples.json │ │ └── plugin.json │ └── safeSnap │ │ ├── Create.vue │ │ ├── Proposal.vue │ │ ├── components │ │ ├── Config.vue │ │ ├── Form │ │ │ ├── ContractInteraction.vue │ │ │ ├── ImportTransactionsButton.vue │ │ │ ├── RawTransaction.vue │ │ │ ├── SendAsset.vue │ │ │ ├── Transaction.vue │ │ │ ├── TransactionBatch.vue │ │ │ └── TransferFunds.vue │ │ ├── HandleOutcome.vue │ │ ├── Input │ │ │ ├── Address.vue │ │ │ ├── Amount.vue │ │ │ ├── ArrayType.vue │ │ │ └── MethodParameter.vue │ │ ├── Modal │ │ │ └── OptionApproval.vue │ │ ├── SafeTransactions.vue │ │ └── Tooltip.vue │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── logo.png │ │ ├── plugin.json │ │ └── utils │ │ ├── abi.ts │ │ ├── coins.ts │ │ ├── decoder.ts │ │ ├── index.ts │ │ ├── multiSend.ts │ │ ├── realityETH.ts │ │ ├── realityModule.ts │ │ ├── safe.ts │ │ ├── transactions.ts │ │ └── validator.ts ├── router.ts ├── style.scss ├── vars.scss └── views │ ├── AboutView.vue │ ├── DelegateView.vue │ ├── ExploreView.vue │ ├── PlaygroundView.vue │ ├── ProfileAbout.vue │ ├── ProfileActivity.vue │ ├── ProfileView.vue │ ├── RankingView.vue │ ├── SetupView.vue │ ├── SpaceAbout.vue │ ├── SpaceCreate.vue │ ├── SpaceProposal.vue │ ├── SpaceProposals.vue │ ├── SpaceSettings.vue │ ├── SpaceTreasury.vue │ ├── SpaceView.vue │ ├── StrategyView.vue │ └── TimelineView.vue ├── tailwind.config.js ├── tsconfig.json ├── vite.config.ts ├── vitest.ts └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.env -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/plugins/* -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/update-snapshot-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.github/workflows/update-snapshot-packages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.husky/post-checkout: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn run init-submodules 5 | -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn run init-submodules 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v15.14.0 -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/babel.config.js -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/crowdin.yml -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/createProposal.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/cypress/e2e/createProposal.cy.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/.well-known/assetlinks.json -------------------------------------------------------------------------------- /public/about/big_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/about/big_planet.png -------------------------------------------------------------------------------- /public/about/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/about/main.png -------------------------------------------------------------------------------- /public/about/small_planet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/about/small_planet.png -------------------------------------------------------------------------------- /public/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/avatar.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/service-worker.js: -------------------------------------------------------------------------------- 1 | importScripts('https://js.pusher.com/beams/service-worker.js'); 2 | -------------------------------------------------------------------------------- /public/stickers/hooray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/stickers/hooray.png -------------------------------------------------------------------------------- /public/stickers/just_signed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/public/stickers/just_signed.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/fonts/Calibre-Medium-Custom.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/Calibre-Medium-Custom.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Calibre-Semibold-Custom.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/Calibre-Semibold-Custom.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/iconfont.css -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/iconfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/iconfont.json -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/iconfont.svg -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/iconfont.ttf -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/iconfont.woff -------------------------------------------------------------------------------- /src/assets/fonts/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/iconfont.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/space-mono-v11-latin-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/fonts/space-mono-v11-latin-700.woff2 -------------------------------------------------------------------------------- /src/assets/icons/coingecko.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/coingecko.svg -------------------------------------------------------------------------------- /src/assets/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/discord.svg -------------------------------------------------------------------------------- /src/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/github.svg -------------------------------------------------------------------------------- /src/assets/icons/lenster.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/lenster.svg -------------------------------------------------------------------------------- /src/assets/icons/shutter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/shutter.svg -------------------------------------------------------------------------------- /src/assets/icons/signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/signature.svg -------------------------------------------------------------------------------- /src/assets/icons/telegram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/telegram.svg -------------------------------------------------------------------------------- /src/assets/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/twitter.svg -------------------------------------------------------------------------------- /src/assets/icons/voted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/voted.svg -------------------------------------------------------------------------------- /src/assets/icons/youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/assets/icons/youtube.svg -------------------------------------------------------------------------------- /src/components/AboutMembersListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/AboutMembersListItem.vue -------------------------------------------------------------------------------- /src/components/AboutSubheader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/AboutSubheader.vue -------------------------------------------------------------------------------- /src/components/AvatarOverlayEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/AvatarOverlayEdit.vue -------------------------------------------------------------------------------- /src/components/AvatarSpace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/AvatarSpace.vue -------------------------------------------------------------------------------- /src/components/AvatarToken.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/AvatarToken.vue -------------------------------------------------------------------------------- /src/components/AvatarUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/AvatarUser.vue -------------------------------------------------------------------------------- /src/components/BaseAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseAvatar.vue -------------------------------------------------------------------------------- /src/components/BaseBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseBadge.vue -------------------------------------------------------------------------------- /src/components/BaseBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseBlock.vue -------------------------------------------------------------------------------- /src/components/BaseButton.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseButton.test.js -------------------------------------------------------------------------------- /src/components/BaseButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseButton.vue -------------------------------------------------------------------------------- /src/components/BaseButtonIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseButtonIcon.vue -------------------------------------------------------------------------------- /src/components/BaseCalendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseCalendar.vue -------------------------------------------------------------------------------- /src/components/BaseCombobox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseCombobox.vue -------------------------------------------------------------------------------- /src/components/BaseComboboxMultiple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseComboboxMultiple.vue -------------------------------------------------------------------------------- /src/components/BaseContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseContainer.vue -------------------------------------------------------------------------------- /src/components/BaseCounter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseCounter.vue -------------------------------------------------------------------------------- /src/components/BaseFlashNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseFlashNotification.vue -------------------------------------------------------------------------------- /src/components/BaseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseIcon.vue -------------------------------------------------------------------------------- /src/components/BaseIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseIndicator.vue -------------------------------------------------------------------------------- /src/components/BaseInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseInput.vue -------------------------------------------------------------------------------- /src/components/BaseLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseLink.vue -------------------------------------------------------------------------------- /src/components/BaseListbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseListbox.vue -------------------------------------------------------------------------------- /src/components/BaseListboxMultiple.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseListboxMultiple.vue -------------------------------------------------------------------------------- /src/components/BaseLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseLoading.vue -------------------------------------------------------------------------------- /src/components/BaseMarkdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseMarkdown.vue -------------------------------------------------------------------------------- /src/components/BaseMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseMenu.vue -------------------------------------------------------------------------------- /src/components/BaseMessage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseMessage.vue -------------------------------------------------------------------------------- /src/components/BaseMessageBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseMessageBlock.vue -------------------------------------------------------------------------------- /src/components/BaseModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseModal.vue -------------------------------------------------------------------------------- /src/components/BaseModalSelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseModalSelectItem.vue -------------------------------------------------------------------------------- /src/components/BaseNetworkItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseNetworkItem.vue -------------------------------------------------------------------------------- /src/components/BaseNoResults.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseNoResults.vue -------------------------------------------------------------------------------- /src/components/BasePill.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BasePill.vue -------------------------------------------------------------------------------- /src/components/BasePluginItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BasePluginItem.vue -------------------------------------------------------------------------------- /src/components/BasePopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BasePopover.vue -------------------------------------------------------------------------------- /src/components/BasePopoverHover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BasePopoverHover.vue -------------------------------------------------------------------------------- /src/components/BaseSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseSearch.vue -------------------------------------------------------------------------------- /src/components/BaseSidebarNavigationItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseSidebarNavigationItem.vue -------------------------------------------------------------------------------- /src/components/BaseSkinItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseSkinItem.vue -------------------------------------------------------------------------------- /src/components/BaseStrategyItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseStrategyItem.vue -------------------------------------------------------------------------------- /src/components/BaseUser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseUser.vue -------------------------------------------------------------------------------- /src/components/BaseValidationItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BaseValidationItem.vue -------------------------------------------------------------------------------- /src/components/BlockSpacesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BlockSpacesList.vue -------------------------------------------------------------------------------- /src/components/BlockSpacesListButtonMore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BlockSpacesListButtonMore.vue -------------------------------------------------------------------------------- /src/components/BlockSpacesListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BlockSpacesListItem.vue -------------------------------------------------------------------------------- /src/components/BlockSpacesListSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/BlockSpacesListSkeleton.vue -------------------------------------------------------------------------------- /src/components/ButtonBack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ButtonBack.vue -------------------------------------------------------------------------------- /src/components/ButtonCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ButtonCard.vue -------------------------------------------------------------------------------- /src/components/ButtonFollow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ButtonFollow.vue -------------------------------------------------------------------------------- /src/components/ButtonPlayground.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ButtonPlayground.vue -------------------------------------------------------------------------------- /src/components/ButtonShare.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ButtonShare.vue -------------------------------------------------------------------------------- /src/components/ButtonSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ButtonSidebar.vue -------------------------------------------------------------------------------- /src/components/ButtonTheme.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ButtonTheme.vue -------------------------------------------------------------------------------- /src/components/ComboboxNetwork.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ComboboxNetwork.vue -------------------------------------------------------------------------------- /src/components/ContainerParallelInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ContainerParallelInput.vue -------------------------------------------------------------------------------- /src/components/ExploreMenuCategories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ExploreMenuCategories.vue -------------------------------------------------------------------------------- /src/components/ExploreSkeletonLoading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ExploreSkeletonLoading.vue -------------------------------------------------------------------------------- /src/components/ExploreSpaces.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ExploreSpaces.vue -------------------------------------------------------------------------------- /src/components/FooterLinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/FooterLinks.vue -------------------------------------------------------------------------------- /src/components/FooterLinksItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/FooterLinksItem.vue -------------------------------------------------------------------------------- /src/components/FooterSocials.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/FooterSocials.vue -------------------------------------------------------------------------------- /src/components/FooterSocialsItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/FooterSocialsItem.vue -------------------------------------------------------------------------------- /src/components/FooterTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/FooterTitle.vue -------------------------------------------------------------------------------- /src/components/FormArray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/FormArray.vue -------------------------------------------------------------------------------- /src/components/FormObject.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/FormObject.vue -------------------------------------------------------------------------------- /src/components/IconDiscord.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/IconDiscord.vue -------------------------------------------------------------------------------- /src/components/IconInformationTooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/IconInformationTooltip.vue -------------------------------------------------------------------------------- /src/components/IconSocial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/IconSocial.vue -------------------------------------------------------------------------------- /src/components/IconVerifiedSpace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/IconVerifiedSpace.vue -------------------------------------------------------------------------------- /src/components/IndicatorAssetsChange.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/IndicatorAssetsChange.spec.js -------------------------------------------------------------------------------- /src/components/IndicatorAssetsChange.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/IndicatorAssetsChange.vue -------------------------------------------------------------------------------- /src/components/InputCheckbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputCheckbox.vue -------------------------------------------------------------------------------- /src/components/InputDate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputDate.vue -------------------------------------------------------------------------------- /src/components/InputEmail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputEmail.vue -------------------------------------------------------------------------------- /src/components/InputNewsletter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputNewsletter.vue -------------------------------------------------------------------------------- /src/components/InputNumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputNumber.vue -------------------------------------------------------------------------------- /src/components/InputRadio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputRadio.vue -------------------------------------------------------------------------------- /src/components/InputSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputSelect.vue -------------------------------------------------------------------------------- /src/components/InputSelectPrivacy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputSelectPrivacy.vue -------------------------------------------------------------------------------- /src/components/InputSelectVoteType.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputSelectVoteType.vue -------------------------------------------------------------------------------- /src/components/InputSelectVoteValidation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputSelectVoteValidation.vue -------------------------------------------------------------------------------- /src/components/InputSocial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputSocial.vue -------------------------------------------------------------------------------- /src/components/InputString.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputString.vue -------------------------------------------------------------------------------- /src/components/InputSwitch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputSwitch.vue -------------------------------------------------------------------------------- /src/components/InputUploadAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputUploadAvatar.vue -------------------------------------------------------------------------------- /src/components/InputUploadImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputUploadImage.vue -------------------------------------------------------------------------------- /src/components/InputUrl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/InputUrl.vue -------------------------------------------------------------------------------- /src/components/LabelInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/LabelInput.vue -------------------------------------------------------------------------------- /src/components/LabelProposalState.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/LabelProposalState.vue -------------------------------------------------------------------------------- /src/components/LabelProposalVoted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/LabelProposalVoted.vue -------------------------------------------------------------------------------- /src/components/ListboxMultipleCategories.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ListboxMultipleCategories.vue -------------------------------------------------------------------------------- /src/components/LoadingPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/LoadingPage.vue -------------------------------------------------------------------------------- /src/components/LoadingRow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/LoadingRow.vue -------------------------------------------------------------------------------- /src/components/LoadingSpinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/LoadingSpinner.vue -------------------------------------------------------------------------------- /src/components/MenuAccount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/MenuAccount.vue -------------------------------------------------------------------------------- /src/components/MenuLanguages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/MenuLanguages.vue -------------------------------------------------------------------------------- /src/components/MessageWarningGnosisNetwork.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/MessageWarningGnosisNetwork.vue -------------------------------------------------------------------------------- /src/components/ModalAccount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalAccount.vue -------------------------------------------------------------------------------- /src/components/ModalConfirmAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalConfirmAction.vue -------------------------------------------------------------------------------- /src/components/ModalControllerEdit.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalControllerEdit.vue -------------------------------------------------------------------------------- /src/components/ModalDelegate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalDelegate.vue -------------------------------------------------------------------------------- /src/components/ModalNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalNotice.vue -------------------------------------------------------------------------------- /src/components/ModalPlugins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalPlugins.vue -------------------------------------------------------------------------------- /src/components/ModalPostVote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalPostVote.vue -------------------------------------------------------------------------------- /src/components/ModalProfileForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalProfileForm.vue -------------------------------------------------------------------------------- /src/components/ModalProposalStrategies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalProposalStrategies.vue -------------------------------------------------------------------------------- /src/components/ModalReceipt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalReceipt.vue -------------------------------------------------------------------------------- /src/components/ModalRevokeDelegate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalRevokeDelegate.vue -------------------------------------------------------------------------------- /src/components/ModalSelectDate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalSelectDate.vue -------------------------------------------------------------------------------- /src/components/ModalSkins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalSkins.vue -------------------------------------------------------------------------------- /src/components/ModalSpaces.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalSpaces.vue -------------------------------------------------------------------------------- /src/components/ModalSpacesListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalSpacesListItem.vue -------------------------------------------------------------------------------- /src/components/ModalStrategy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalStrategy.vue -------------------------------------------------------------------------------- /src/components/ModalTerms.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalTerms.vue -------------------------------------------------------------------------------- /src/components/ModalTreasury.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalTreasury.vue -------------------------------------------------------------------------------- /src/components/ModalUnsupportedNetwork.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalUnsupportedNetwork.vue -------------------------------------------------------------------------------- /src/components/ModalValidation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalValidation.vue -------------------------------------------------------------------------------- /src/components/ModalVote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalVote.vue -------------------------------------------------------------------------------- /src/components/ModalVoteMessagePassport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalVoteMessagePassport.vue -------------------------------------------------------------------------------- /src/components/ModalVoteValidation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalVoteValidation.vue -------------------------------------------------------------------------------- /src/components/ModalVotingPrivacy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalVotingPrivacy.vue -------------------------------------------------------------------------------- /src/components/ModalVotingType.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ModalVotingType.vue -------------------------------------------------------------------------------- /src/components/NavbarAccount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/NavbarAccount.vue -------------------------------------------------------------------------------- /src/components/NavbarExtras.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/NavbarExtras.vue -------------------------------------------------------------------------------- /src/components/NavbarNotifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/NavbarNotifications.vue -------------------------------------------------------------------------------- /src/components/PopoverHoverProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/PopoverHoverProfile.vue -------------------------------------------------------------------------------- /src/components/ProfileAboutBiography.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileAboutBiography.vue -------------------------------------------------------------------------------- /src/components/ProfileAboutDelegate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileAboutDelegate.vue -------------------------------------------------------------------------------- /src/components/ProfileAboutDelegateListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileAboutDelegateListItem.vue -------------------------------------------------------------------------------- /src/components/ProfileActivityList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileActivityList.vue -------------------------------------------------------------------------------- /src/components/ProfileActivityListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileActivityListItem.vue -------------------------------------------------------------------------------- /src/components/ProfileAddressCopy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileAddressCopy.vue -------------------------------------------------------------------------------- /src/components/ProfileName.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileName.vue -------------------------------------------------------------------------------- /src/components/ProfileSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileSidebar.vue -------------------------------------------------------------------------------- /src/components/ProfileSidebarHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileSidebarHeader.vue -------------------------------------------------------------------------------- /src/components/ProfileSidebarHeaderSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileSidebarHeaderSkeleton.vue -------------------------------------------------------------------------------- /src/components/ProfileSidebarNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProfileSidebarNavigation.vue -------------------------------------------------------------------------------- /src/components/ProposalsItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProposalsItem.vue -------------------------------------------------------------------------------- /src/components/ProposalsItemActive.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProposalsItemActive.vue -------------------------------------------------------------------------------- /src/components/ProposalsItemBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProposalsItemBody.vue -------------------------------------------------------------------------------- /src/components/ProposalsItemResults.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProposalsItemResults.vue -------------------------------------------------------------------------------- /src/components/ProposalsItemTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/ProposalsItemTitle.vue -------------------------------------------------------------------------------- /src/components/SettingsAdminsBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsAdminsBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsAuthorsBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsAuthorsBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsDomainBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsDomainBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsLinkBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsLinkBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsPluginsBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsPluginsBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsProfileBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsProfileBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsStrategiesBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsStrategiesBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsStrategiesBlockItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsStrategiesBlockItem.vue -------------------------------------------------------------------------------- /src/components/SettingsSubSpacesBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsSubSpacesBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsTreasuriesBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsTreasuriesBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsTreasuriesBlockItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsTreasuriesBlockItem.vue -------------------------------------------------------------------------------- /src/components/SettingsValidationBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsValidationBlock.vue -------------------------------------------------------------------------------- /src/components/SettingsVotingBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SettingsVotingBlock.vue -------------------------------------------------------------------------------- /src/components/SetupButtonBack.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupButtonBack.vue -------------------------------------------------------------------------------- /src/components/SetupButtonCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupButtonCreate.vue -------------------------------------------------------------------------------- /src/components/SetupButtonNext.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupButtonNext.vue -------------------------------------------------------------------------------- /src/components/SetupController.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupController.vue -------------------------------------------------------------------------------- /src/components/SetupDomain.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupDomain.vue -------------------------------------------------------------------------------- /src/components/SetupDomainRegister.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupDomainRegister.vue -------------------------------------------------------------------------------- /src/components/SetupExtras.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupExtras.vue -------------------------------------------------------------------------------- /src/components/SetupIntro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupIntro.vue -------------------------------------------------------------------------------- /src/components/SetupMessageHelp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupMessageHelp.vue -------------------------------------------------------------------------------- /src/components/SetupProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupProfile.vue -------------------------------------------------------------------------------- /src/components/SetupSidebarStepper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupSidebarStepper.vue -------------------------------------------------------------------------------- /src/components/SetupStrategy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupStrategy.vue -------------------------------------------------------------------------------- /src/components/SetupStrategyAdvanced.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupStrategyAdvanced.vue -------------------------------------------------------------------------------- /src/components/SetupStrategyBasic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupStrategyBasic.vue -------------------------------------------------------------------------------- /src/components/SetupStrategyVote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SetupStrategyVote.vue -------------------------------------------------------------------------------- /src/components/SidebarSpacesSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SidebarSpacesSkeleton.vue -------------------------------------------------------------------------------- /src/components/SidebarUnreadIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SidebarUnreadIndicator.vue -------------------------------------------------------------------------------- /src/components/SpaceCreateContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceCreateContent.vue -------------------------------------------------------------------------------- /src/components/SpaceCreatePlugins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceCreatePlugins.vue -------------------------------------------------------------------------------- /src/components/SpaceCreateVoting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceCreateVoting.vue -------------------------------------------------------------------------------- /src/components/SpaceCreateVotingDateEnd.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceCreateVotingDateEnd.vue -------------------------------------------------------------------------------- /src/components/SpaceCreateVotingDateStart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceCreateVotingDateStart.vue -------------------------------------------------------------------------------- /src/components/SpaceCreateWarnings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceCreateWarnings.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalContent.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalDiscussionLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalDiscussionLink.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalHeader.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalInformation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalInformation.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalPlugins.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalPlugins.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalPluginsSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalPluginsSidebar.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalResults.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalResults.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalResultsError.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalResultsError.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalResultsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalResultsList.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalResultsListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalResultsListItem.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalResultsProgressBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalResultsProgressBar.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalResultsQuorum.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalResultsQuorum.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalResultsQuorumPlugin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalResultsQuorumPlugin.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalResultsShutter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalResultsShutter.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalVote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalVote.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalVoteApproval.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalVoteApproval.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalVoteQuadratic.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalVoteQuadratic.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalVoteRankedChoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalVoteRankedChoice.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalVoteSingleChoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalVoteSingleChoice.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalVotesList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalVotesList.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalVotesListItemChoice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalVotesListItemChoice.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalsMenuFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalsMenuFilter.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalsNoProposals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalsNoProposals.vue -------------------------------------------------------------------------------- /src/components/SpaceProposalsNotice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceProposalsNotice.vue -------------------------------------------------------------------------------- /src/components/SpaceSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceSidebar.vue -------------------------------------------------------------------------------- /src/components/SpaceSidebarFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceSidebarFooter.vue -------------------------------------------------------------------------------- /src/components/SpaceSidebarHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceSidebarHeader.vue -------------------------------------------------------------------------------- /src/components/SpaceSidebarNavigation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceSidebarNavigation.vue -------------------------------------------------------------------------------- /src/components/SpaceSidebarSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceSidebarSkeleton.vue -------------------------------------------------------------------------------- /src/components/SpaceSidebarSubspaces.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceSidebarSubspaces.vue -------------------------------------------------------------------------------- /src/components/SpaceWarningFlagged.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/SpaceWarningFlagged.vue -------------------------------------------------------------------------------- /src/components/StrategiesBlockWarning.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/StrategiesBlockWarning.vue -------------------------------------------------------------------------------- /src/components/TextAutolinker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TextAutolinker.vue -------------------------------------------------------------------------------- /src/components/TextareaArray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TextareaArray.vue -------------------------------------------------------------------------------- /src/components/TextareaAutosize.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TextareaAutosize.vue -------------------------------------------------------------------------------- /src/components/TextareaJson.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TextareaJson.vue -------------------------------------------------------------------------------- /src/components/TheFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TheFooter.vue -------------------------------------------------------------------------------- /src/components/TheHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TheHeader.vue -------------------------------------------------------------------------------- /src/components/TheLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TheLayout.vue -------------------------------------------------------------------------------- /src/components/TheNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TheNavbar.vue -------------------------------------------------------------------------------- /src/components/TheSearchBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TheSearchBar.vue -------------------------------------------------------------------------------- /src/components/TheSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TheSidebar.vue -------------------------------------------------------------------------------- /src/components/TreasuryAssetsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TreasuryAssetsList.vue -------------------------------------------------------------------------------- /src/components/TreasuryAssetsListItem.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TreasuryAssetsListItem.spec.js -------------------------------------------------------------------------------- /src/components/TreasuryAssetsListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TreasuryAssetsListItem.vue -------------------------------------------------------------------------------- /src/components/TreasuryWalletsList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TreasuryWalletsList.spec.js -------------------------------------------------------------------------------- /src/components/TreasuryWalletsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TreasuryWalletsList.vue -------------------------------------------------------------------------------- /src/components/TreasuryWalletsListItem.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TreasuryWalletsListItem.spec.js -------------------------------------------------------------------------------- /src/components/TreasuryWalletsListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/TreasuryWalletsListItem.vue -------------------------------------------------------------------------------- /src/components/Ui/Collapsible.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/Ui/Collapsible.vue -------------------------------------------------------------------------------- /src/components/Ui/CollapsibleContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/Ui/CollapsibleContent.vue -------------------------------------------------------------------------------- /src/components/Ui/CollapsibleText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/Ui/CollapsibleText.vue -------------------------------------------------------------------------------- /src/components/Ui/Input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/Ui/Input.vue -------------------------------------------------------------------------------- /src/components/Ui/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/components/Ui/Select.vue -------------------------------------------------------------------------------- /src/composables/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/index.ts -------------------------------------------------------------------------------- /src/composables/useAliasAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useAliasAction.ts -------------------------------------------------------------------------------- /src/composables/useApolloQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useApolloQuery.ts -------------------------------------------------------------------------------- /src/composables/useApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useApp.ts -------------------------------------------------------------------------------- /src/composables/useCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useCategories.ts -------------------------------------------------------------------------------- /src/composables/useClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useClient.ts -------------------------------------------------------------------------------- /src/composables/useCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useCopy.ts -------------------------------------------------------------------------------- /src/composables/useDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useDelegate.ts -------------------------------------------------------------------------------- /src/composables/useEns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useEns.ts -------------------------------------------------------------------------------- /src/composables/useExtendedSpaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useExtendedSpaces.ts -------------------------------------------------------------------------------- /src/composables/useFlashNotification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useFlashNotification.ts -------------------------------------------------------------------------------- /src/composables/useFollowSpace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useFollowSpace.ts -------------------------------------------------------------------------------- /src/composables/useFormValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useFormValidation.ts -------------------------------------------------------------------------------- /src/composables/useGnosis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useGnosis.ts -------------------------------------------------------------------------------- /src/composables/useI18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useI18n.ts -------------------------------------------------------------------------------- /src/composables/useImageUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useImageUpload.ts -------------------------------------------------------------------------------- /src/composables/useInfiniteLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useInfiniteLoader.ts -------------------------------------------------------------------------------- /src/composables/useIntl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useIntl.ts -------------------------------------------------------------------------------- /src/composables/useModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useModal.ts -------------------------------------------------------------------------------- /src/composables/useNetworksFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useNetworksFilter.ts -------------------------------------------------------------------------------- /src/composables/useNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useNotifications.ts -------------------------------------------------------------------------------- /src/composables/usePlugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/usePlugins.ts -------------------------------------------------------------------------------- /src/composables/useProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useProfiles.ts -------------------------------------------------------------------------------- /src/composables/useProposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useProposals.ts -------------------------------------------------------------------------------- /src/composables/useQuorum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useQuorum.ts -------------------------------------------------------------------------------- /src/composables/useReportDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useReportDownload.ts -------------------------------------------------------------------------------- /src/composables/useSafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSafe.ts -------------------------------------------------------------------------------- /src/composables/useScrollMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useScrollMonitor.ts -------------------------------------------------------------------------------- /src/composables/useSharing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSharing.ts -------------------------------------------------------------------------------- /src/composables/useSkin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSkin.ts -------------------------------------------------------------------------------- /src/composables/useSkinsFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSkinsFilter.ts -------------------------------------------------------------------------------- /src/composables/useSpaceController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSpaceController.ts -------------------------------------------------------------------------------- /src/composables/useSpaceCreateForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSpaceCreateForm.ts -------------------------------------------------------------------------------- /src/composables/useSpaceForm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSpaceForm.ts -------------------------------------------------------------------------------- /src/composables/useSpaceSubscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSpaceSubscription.ts -------------------------------------------------------------------------------- /src/composables/useSpaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useSpaces.ts -------------------------------------------------------------------------------- /src/composables/useStrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useStrategies.ts -------------------------------------------------------------------------------- /src/composables/useTerms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useTerms.ts -------------------------------------------------------------------------------- /src/composables/useTreasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useTreasury.ts -------------------------------------------------------------------------------- /src/composables/useTxStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useTxStatus.ts -------------------------------------------------------------------------------- /src/composables/useUnseenProposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useUnseenProposals.ts -------------------------------------------------------------------------------- /src/composables/useUsername.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useUsername.ts -------------------------------------------------------------------------------- /src/composables/useValidationsFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useValidationsFilter.ts -------------------------------------------------------------------------------- /src/composables/useWeb3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/composables/useWeb3.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/helpers/abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/abi.ts -------------------------------------------------------------------------------- /src/helpers/apollo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/apollo.ts -------------------------------------------------------------------------------- /src/helpers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/auth.ts -------------------------------------------------------------------------------- /src/helpers/b64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/b64.ts -------------------------------------------------------------------------------- /src/helpers/beams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/beams.ts -------------------------------------------------------------------------------- /src/helpers/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/categories.json -------------------------------------------------------------------------------- /src/helpers/clientEIP712.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/clientEIP712.ts -------------------------------------------------------------------------------- /src/helpers/clientGnosisSafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/clientGnosisSafe.ts -------------------------------------------------------------------------------- /src/helpers/connectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/connectors.json -------------------------------------------------------------------------------- /src/helpers/covalent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/covalent.ts -------------------------------------------------------------------------------- /src/helpers/delegation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/delegation.ts -------------------------------------------------------------------------------- /src/helpers/ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/ens.ts -------------------------------------------------------------------------------- /src/helpers/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/i18n.ts -------------------------------------------------------------------------------- /src/helpers/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/interfaces.ts -------------------------------------------------------------------------------- /src/helpers/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/profile.ts -------------------------------------------------------------------------------- /src/helpers/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/queries.ts -------------------------------------------------------------------------------- /src/helpers/shutter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/shutter.ts -------------------------------------------------------------------------------- /src/helpers/snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/snapshot.ts -------------------------------------------------------------------------------- /src/helpers/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/utils.test.js -------------------------------------------------------------------------------- /src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/helpers/utils.ts -------------------------------------------------------------------------------- /src/locales/ar-SA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/ar-SA.json -------------------------------------------------------------------------------- /src/locales/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/de-DE.json -------------------------------------------------------------------------------- /src/locales/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/default.json -------------------------------------------------------------------------------- /src/locales/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/es-ES.json -------------------------------------------------------------------------------- /src/locales/fil-PH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/fil-PH.json -------------------------------------------------------------------------------- /src/locales/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/fr-FR.json -------------------------------------------------------------------------------- /src/locales/hi-IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/hi-IN.json -------------------------------------------------------------------------------- /src/locales/id-ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/id-ID.json -------------------------------------------------------------------------------- /src/locales/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/it-IT.json -------------------------------------------------------------------------------- /src/locales/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/ja-JP.json -------------------------------------------------------------------------------- /src/locales/ko-KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/ko-KR.json -------------------------------------------------------------------------------- /src/locales/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/languages.json -------------------------------------------------------------------------------- /src/locales/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/pt-PT.json -------------------------------------------------------------------------------- /src/locales/ro-RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/ro-RO.json -------------------------------------------------------------------------------- /src/locales/ru-RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/ru-RU.json -------------------------------------------------------------------------------- /src/locales/tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/tr-TR.json -------------------------------------------------------------------------------- /src/locales/uk-UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/uk-UA.json -------------------------------------------------------------------------------- /src/locales/vi-VN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/vi-VN.json -------------------------------------------------------------------------------- /src/locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/locales/zh-CN.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/README.md -------------------------------------------------------------------------------- /src/plugins/commentBox/Proposal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/commentBox/Proposal.vue -------------------------------------------------------------------------------- /src/plugins/commentBox/components/Comment.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/commentBox/components/Comment.vue -------------------------------------------------------------------------------- /src/plugins/commentBox/components/CommentBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/commentBox/components/CommentBlock.vue -------------------------------------------------------------------------------- /src/plugins/commentBox/components/CustomBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/commentBox/components/CustomBlock.vue -------------------------------------------------------------------------------- /src/plugins/commentBox/components/ListReply.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/commentBox/components/ListReply.vue -------------------------------------------------------------------------------- /src/plugins/commentBox/components/ReplyBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/commentBox/components/ReplyBlock.vue -------------------------------------------------------------------------------- /src/plugins/commentBox/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/commentBox/plugin.json -------------------------------------------------------------------------------- /src/plugins/gnosis/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/gnosis/Create.vue -------------------------------------------------------------------------------- /src/plugins/gnosis/ProposalSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/gnosis/ProposalSidebar.vue -------------------------------------------------------------------------------- /src/plugins/gnosis/components/Config.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/gnosis/components/Config.vue -------------------------------------------------------------------------------- /src/plugins/gnosis/components/CustomBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/gnosis/components/CustomBlock.vue -------------------------------------------------------------------------------- /src/plugins/gnosis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/gnosis/index.ts -------------------------------------------------------------------------------- /src/plugins/gnosis/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/gnosis/plugin.json -------------------------------------------------------------------------------- /src/plugins/hal/ProposalSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/hal/ProposalSidebar.vue -------------------------------------------------------------------------------- /src/plugins/hal/components/CustomBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/hal/components/CustomBlock.vue -------------------------------------------------------------------------------- /src/plugins/hal/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/hal/plugin.json -------------------------------------------------------------------------------- /src/plugins/poap/ProposalSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/poap/ProposalSidebar.vue -------------------------------------------------------------------------------- /src/plugins/poap/components/CustomBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/poap/components/CustomBlock.vue -------------------------------------------------------------------------------- /src/plugins/poap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/poap/index.ts -------------------------------------------------------------------------------- /src/plugins/poap/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/poap/plugin.json -------------------------------------------------------------------------------- /src/plugins/progress/ProposalSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/progress/ProposalSidebar.vue -------------------------------------------------------------------------------- /src/plugins/progress/components/CustomBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/progress/components/CustomBlock.vue -------------------------------------------------------------------------------- /src/plugins/progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/progress/index.ts -------------------------------------------------------------------------------- /src/plugins/progress/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/progress/plugin.json -------------------------------------------------------------------------------- /src/plugins/projectGalaxy/ProposalSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/projectGalaxy/ProposalSidebar.vue -------------------------------------------------------------------------------- /src/plugins/projectGalaxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/projectGalaxy/README.md -------------------------------------------------------------------------------- /src/plugins/projectGalaxy/components/CustomBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/projectGalaxy/components/CustomBlock.vue -------------------------------------------------------------------------------- /src/plugins/projectGalaxy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/projectGalaxy/index.ts -------------------------------------------------------------------------------- /src/plugins/projectGalaxy/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/projectGalaxy/plugin.json -------------------------------------------------------------------------------- /src/plugins/quorum/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/quorum/examples.json -------------------------------------------------------------------------------- /src/plugins/quorum/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/quorum/plugin.json -------------------------------------------------------------------------------- /src/plugins/safeSnap/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/Create.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/Proposal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/Proposal.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Config.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Config.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Form/ContractInteraction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Form/ContractInteraction.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Form/ImportTransactionsButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Form/ImportTransactionsButton.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Form/RawTransaction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Form/RawTransaction.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Form/SendAsset.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Form/SendAsset.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Form/Transaction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Form/Transaction.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Form/TransactionBatch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Form/TransactionBatch.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Form/TransferFunds.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Form/TransferFunds.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/HandleOutcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/HandleOutcome.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Input/Address.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Input/Address.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Input/Amount.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Input/Amount.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Input/ArrayType.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Input/ArrayType.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Input/MethodParameter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Input/MethodParameter.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Modal/OptionApproval.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Modal/OptionApproval.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/SafeTransactions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/SafeTransactions.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/components/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/components/Tooltip.vue -------------------------------------------------------------------------------- /src/plugins/safeSnap/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/constants.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/index.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/logo.png -------------------------------------------------------------------------------- /src/plugins/safeSnap/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/plugin.json -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/abi.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/coins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/coins.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/decoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/decoder.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/index.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/multiSend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/multiSend.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/realityETH.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/realityETH.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/realityModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/realityModule.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/safe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/safe.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/transactions.ts -------------------------------------------------------------------------------- /src/plugins/safeSnap/utils/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/plugins/safeSnap/utils/validator.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/style.scss -------------------------------------------------------------------------------- /src/vars.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/views/AboutView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/AboutView.vue -------------------------------------------------------------------------------- /src/views/DelegateView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/DelegateView.vue -------------------------------------------------------------------------------- /src/views/ExploreView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/ExploreView.vue -------------------------------------------------------------------------------- /src/views/PlaygroundView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/PlaygroundView.vue -------------------------------------------------------------------------------- /src/views/ProfileAbout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/ProfileAbout.vue -------------------------------------------------------------------------------- /src/views/ProfileActivity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/ProfileActivity.vue -------------------------------------------------------------------------------- /src/views/ProfileView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/ProfileView.vue -------------------------------------------------------------------------------- /src/views/RankingView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/RankingView.vue -------------------------------------------------------------------------------- /src/views/SetupView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/SetupView.vue -------------------------------------------------------------------------------- /src/views/SpaceAbout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/SpaceAbout.vue -------------------------------------------------------------------------------- /src/views/SpaceCreate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/SpaceCreate.vue -------------------------------------------------------------------------------- /src/views/SpaceProposal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/SpaceProposal.vue -------------------------------------------------------------------------------- /src/views/SpaceProposals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/SpaceProposals.vue -------------------------------------------------------------------------------- /src/views/SpaceSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/SpaceSettings.vue -------------------------------------------------------------------------------- /src/views/SpaceTreasury.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/SpaceTreasury.vue -------------------------------------------------------------------------------- /src/views/SpaceView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/SpaceView.vue -------------------------------------------------------------------------------- /src/views/StrategyView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/StrategyView.vue -------------------------------------------------------------------------------- /src/views/TimelineView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/src/views/TimelineView.vue -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/vite.config.ts -------------------------------------------------------------------------------- /vitest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/vitest.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goliranyan/snapshot/HEAD/yarn.lock --------------------------------------------------------------------------------