├── .browserslistrc ├── .editorconfig ├── .env ├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.yml │ └── FEATURE_REQUEST.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── histoire.config.js ├── index.html ├── main.js ├── package.json ├── postcss.config.js ├── preload.js ├── public ├── favicon-temp.svg └── manifest.json ├── src ├── App.vue ├── assets │ ├── connectors │ │ ├── coinbase.png │ │ ├── gnosis.png │ │ ├── metamask.png │ │ ├── portis.png │ │ ├── starknet.png │ │ └── walletconnect.png │ ├── fonts │ │ ├── Calibre-Medium-Custom.woff2 │ │ ├── Calibre-Semibold-Custom.woff2 │ │ ├── SpaceMono-Bold.woff2 │ │ └── SpaceMono-Regular.woff2 │ ├── grid-dark.svg │ ├── grid-light.svg │ ├── icons │ │ ├── discord.svg │ │ ├── github.svg │ │ └── x.svg │ └── logo.svg ├── components │ ├── App.vue │ ├── Block │ │ ├── Actions.vue │ │ ├── ContactPicker.vue │ │ ├── CreationConfirmation.vue │ │ ├── Delegates.vue │ │ ├── Execution.vue │ │ ├── ExecutionEditable.vue │ │ ├── InfiniteScroller.vue │ │ ├── NftPicker.vue │ │ ├── SpaceFormController.vue │ │ ├── SpaceFormNetwork.vue │ │ ├── SpaceFormProfile.vue │ │ ├── SpaceFormStrategies.vue │ │ ├── SpaceFormValidation.vue │ │ ├── SpaceFormVoting.vue │ │ ├── StrategiesConfigurator.vue │ │ └── TokenPicker.vue │ ├── Container.vue │ ├── ExecutionButton.vue │ ├── Label.vue │ ├── Layout.vue │ ├── Link.vue │ ├── Markdown.vue │ ├── MarkdownEditor.vue │ ├── Modal │ │ ├── Account.vue │ │ ├── Delegate.vue │ │ ├── DelegationConfig.vue │ │ ├── Drafts.vue │ │ ├── EditContact.vue │ │ ├── EditSpace.vue │ │ ├── EditStrategy.vue │ │ ├── LinkWalletConnect.vue │ │ ├── PendingTransactions.vue │ │ ├── SendNft.vue │ │ ├── SendToken.vue │ │ ├── Timeline.vue │ │ ├── Transaction.vue │ │ ├── Votes.vue │ │ └── VotingPower.vue │ ├── Nav.vue │ ├── NftPreview.vue │ ├── Notifications.vue │ ├── PendingTransactionsIndicator.vue │ ├── Preview.vue │ ├── Proposal.vue │ ├── ProposalStatus.vue │ ├── ProposalStatusIcon.vue │ ├── ProposalsList.vue │ ├── Results.vue │ ├── S │ │ ├── Base.vue │ │ ├── IAddress.vue │ │ ├── IArray.vue │ │ ├── IBoolean.vue │ │ ├── IDuration.vue │ │ ├── INumber.vue │ │ ├── IObject.vue │ │ ├── ISelect.vue │ │ ├── IStamp.vue │ │ ├── IStampCover.vue │ │ ├── IString.vue │ │ └── IText.vue │ ├── Sidebar.vue │ ├── SpaceAvatar.vue │ ├── SpaceCover.vue │ ├── SpaceItem.vue │ ├── Stamp.vue │ ├── StrategyButton.vue │ ├── Topnav.vue │ ├── Transaction.vue │ ├── Ui │ │ ├── Alert.vue │ │ ├── Button.story.vue │ │ ├── Button.vue │ │ ├── Counter.vue │ │ ├── Dropdown.vue │ │ ├── DropdownItem.vue │ │ ├── Editable.vue │ │ ├── Loading.vue │ │ ├── Modal.vue │ │ ├── Select.vue │ │ └── Tooltip.vue │ ├── Upload.vue │ ├── Vote.vue │ └── VotingPowerIndicator.vue ├── composables │ ├── useAccount.ts │ ├── useActions.ts │ ├── useApp.ts │ ├── useApps.ts │ ├── useBalances.ts │ ├── useDelegates.ts │ ├── useEditor.ts │ ├── useFavicon.ts │ ├── useMarkdownEditor.ts │ ├── useMixpanel.ts │ ├── useModal.ts │ ├── useNfts.ts │ ├── useResolve.ts │ ├── useRouteParser.ts │ ├── useScrollMonitor.ts │ ├── useSpaces.ts │ ├── useTitle.ts │ ├── useTreasury.ts │ ├── useUserSkin.ts │ ├── useWalletConnect.ts │ ├── useWalletConnectTransaction.ts │ └── useWeb3.ts ├── helpers │ ├── __snapshots__ │ │ └── transactions.test.ts.snap │ ├── abis.ts │ ├── alchemy │ │ ├── index.ts │ │ └── types.ts │ ├── argentx.ts │ ├── auth.ts │ ├── call.ts │ ├── connectors.ts │ ├── constants.ts │ ├── ens.ts │ ├── etherscan.ts │ ├── execution.json │ ├── mana.ts │ ├── multicaller.ts │ ├── networks.json │ ├── pin.ts │ ├── provider.ts │ ├── resolver.ts │ ├── stamp.ts │ ├── tenderly.ts │ ├── transactions.test.ts │ ├── transactions.ts │ ├── utils.test.ts │ ├── utils.ts │ └── validation.ts ├── histoire-setup.ts ├── main.ts ├── networks │ ├── common │ │ ├── constants.ts │ │ ├── graphqlApi │ │ │ ├── highlight.ts │ │ │ ├── index.ts │ │ │ ├── queries.ts │ │ │ └── types.ts │ │ └── helpers.ts │ ├── evm │ │ ├── actions.ts │ │ ├── constants.ts │ │ ├── helpers.ts │ │ └── index.ts │ ├── index.ts │ ├── offchain │ │ ├── api │ │ │ ├── index.ts │ │ │ ├── queries.ts │ │ │ └── types.ts │ │ ├── constants.ts │ │ └── index.ts │ ├── starknet │ │ ├── actions.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ └── provider.ts │ └── types.ts ├── router.ts ├── stores │ ├── contacts.ts │ ├── meta.ts │ ├── proposals.ts │ ├── spaces.ts │ ├── ui.ts │ └── users.ts ├── style.scss ├── types.ts └── views │ ├── App.vue │ ├── Apps.vue │ ├── Create.vue │ ├── Editor.vue │ ├── Explore.vue │ ├── Home.vue │ ├── Proposal.vue │ ├── Proposal │ ├── Overview.vue │ └── Votes.vue │ ├── Settings.vue │ ├── Settings │ ├── Contacts.vue │ └── Spaces.vue │ ├── Space.vue │ ├── Space │ ├── Delegates.vue │ ├── EditSettings.vue │ ├── Overview.vue │ ├── Proposals.vue │ ├── Search.vue │ ├── Settings.vue │ └── Treasury.vue │ └── User.vue ├── tailwind.config.js ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/.env -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/babel.config.js -------------------------------------------------------------------------------- /histoire.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/histoire.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/postcss.config.js -------------------------------------------------------------------------------- /preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/preload.js -------------------------------------------------------------------------------- /public/favicon-temp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/public/favicon-temp.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/connectors/coinbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/connectors/coinbase.png -------------------------------------------------------------------------------- /src/assets/connectors/gnosis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/connectors/gnosis.png -------------------------------------------------------------------------------- /src/assets/connectors/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/connectors/metamask.png -------------------------------------------------------------------------------- /src/assets/connectors/portis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/connectors/portis.png -------------------------------------------------------------------------------- /src/assets/connectors/starknet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/connectors/starknet.png -------------------------------------------------------------------------------- /src/assets/connectors/walletconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/connectors/walletconnect.png -------------------------------------------------------------------------------- /src/assets/fonts/Calibre-Medium-Custom.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/fonts/Calibre-Medium-Custom.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Calibre-Semibold-Custom.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/fonts/Calibre-Semibold-Custom.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/SpaceMono-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/fonts/SpaceMono-Bold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/SpaceMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/fonts/SpaceMono-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/grid-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/grid-dark.svg -------------------------------------------------------------------------------- /src/assets/grid-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/grid-light.svg -------------------------------------------------------------------------------- /src/assets/icons/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/icons/discord.svg -------------------------------------------------------------------------------- /src/assets/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/icons/github.svg -------------------------------------------------------------------------------- /src/assets/icons/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/icons/x.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/App.vue -------------------------------------------------------------------------------- /src/components/Block/Actions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/Actions.vue -------------------------------------------------------------------------------- /src/components/Block/ContactPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/ContactPicker.vue -------------------------------------------------------------------------------- /src/components/Block/CreationConfirmation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/CreationConfirmation.vue -------------------------------------------------------------------------------- /src/components/Block/Delegates.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/Delegates.vue -------------------------------------------------------------------------------- /src/components/Block/Execution.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/Execution.vue -------------------------------------------------------------------------------- /src/components/Block/ExecutionEditable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/ExecutionEditable.vue -------------------------------------------------------------------------------- /src/components/Block/InfiniteScroller.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/InfiniteScroller.vue -------------------------------------------------------------------------------- /src/components/Block/NftPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/NftPicker.vue -------------------------------------------------------------------------------- /src/components/Block/SpaceFormController.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/SpaceFormController.vue -------------------------------------------------------------------------------- /src/components/Block/SpaceFormNetwork.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/SpaceFormNetwork.vue -------------------------------------------------------------------------------- /src/components/Block/SpaceFormProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/SpaceFormProfile.vue -------------------------------------------------------------------------------- /src/components/Block/SpaceFormStrategies.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/SpaceFormStrategies.vue -------------------------------------------------------------------------------- /src/components/Block/SpaceFormValidation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/SpaceFormValidation.vue -------------------------------------------------------------------------------- /src/components/Block/SpaceFormVoting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/SpaceFormVoting.vue -------------------------------------------------------------------------------- /src/components/Block/StrategiesConfigurator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/StrategiesConfigurator.vue -------------------------------------------------------------------------------- /src/components/Block/TokenPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Block/TokenPicker.vue -------------------------------------------------------------------------------- /src/components/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Container.vue -------------------------------------------------------------------------------- /src/components/ExecutionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/ExecutionButton.vue -------------------------------------------------------------------------------- /src/components/Label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Label.vue -------------------------------------------------------------------------------- /src/components/Layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Layout.vue -------------------------------------------------------------------------------- /src/components/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Link.vue -------------------------------------------------------------------------------- /src/components/Markdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Markdown.vue -------------------------------------------------------------------------------- /src/components/MarkdownEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/MarkdownEditor.vue -------------------------------------------------------------------------------- /src/components/Modal/Account.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/Account.vue -------------------------------------------------------------------------------- /src/components/Modal/Delegate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/Delegate.vue -------------------------------------------------------------------------------- /src/components/Modal/DelegationConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/DelegationConfig.vue -------------------------------------------------------------------------------- /src/components/Modal/Drafts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/Drafts.vue -------------------------------------------------------------------------------- /src/components/Modal/EditContact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/EditContact.vue -------------------------------------------------------------------------------- /src/components/Modal/EditSpace.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/EditSpace.vue -------------------------------------------------------------------------------- /src/components/Modal/EditStrategy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/EditStrategy.vue -------------------------------------------------------------------------------- /src/components/Modal/LinkWalletConnect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/LinkWalletConnect.vue -------------------------------------------------------------------------------- /src/components/Modal/PendingTransactions.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/PendingTransactions.vue -------------------------------------------------------------------------------- /src/components/Modal/SendNft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/SendNft.vue -------------------------------------------------------------------------------- /src/components/Modal/SendToken.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/SendToken.vue -------------------------------------------------------------------------------- /src/components/Modal/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/Timeline.vue -------------------------------------------------------------------------------- /src/components/Modal/Transaction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/Transaction.vue -------------------------------------------------------------------------------- /src/components/Modal/Votes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/Votes.vue -------------------------------------------------------------------------------- /src/components/Modal/VotingPower.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Modal/VotingPower.vue -------------------------------------------------------------------------------- /src/components/Nav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Nav.vue -------------------------------------------------------------------------------- /src/components/NftPreview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/NftPreview.vue -------------------------------------------------------------------------------- /src/components/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Notifications.vue -------------------------------------------------------------------------------- /src/components/PendingTransactionsIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/PendingTransactionsIndicator.vue -------------------------------------------------------------------------------- /src/components/Preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Preview.vue -------------------------------------------------------------------------------- /src/components/Proposal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Proposal.vue -------------------------------------------------------------------------------- /src/components/ProposalStatus.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/ProposalStatus.vue -------------------------------------------------------------------------------- /src/components/ProposalStatusIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/ProposalStatusIcon.vue -------------------------------------------------------------------------------- /src/components/ProposalsList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/ProposalsList.vue -------------------------------------------------------------------------------- /src/components/Results.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Results.vue -------------------------------------------------------------------------------- /src/components/S/Base.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/Base.vue -------------------------------------------------------------------------------- /src/components/S/IAddress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IAddress.vue -------------------------------------------------------------------------------- /src/components/S/IArray.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IArray.vue -------------------------------------------------------------------------------- /src/components/S/IBoolean.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IBoolean.vue -------------------------------------------------------------------------------- /src/components/S/IDuration.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IDuration.vue -------------------------------------------------------------------------------- /src/components/S/INumber.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/INumber.vue -------------------------------------------------------------------------------- /src/components/S/IObject.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IObject.vue -------------------------------------------------------------------------------- /src/components/S/ISelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/ISelect.vue -------------------------------------------------------------------------------- /src/components/S/IStamp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IStamp.vue -------------------------------------------------------------------------------- /src/components/S/IStampCover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IStampCover.vue -------------------------------------------------------------------------------- /src/components/S/IString.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IString.vue -------------------------------------------------------------------------------- /src/components/S/IText.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/S/IText.vue -------------------------------------------------------------------------------- /src/components/Sidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Sidebar.vue -------------------------------------------------------------------------------- /src/components/SpaceAvatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/SpaceAvatar.vue -------------------------------------------------------------------------------- /src/components/SpaceCover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/SpaceCover.vue -------------------------------------------------------------------------------- /src/components/SpaceItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/SpaceItem.vue -------------------------------------------------------------------------------- /src/components/Stamp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Stamp.vue -------------------------------------------------------------------------------- /src/components/StrategyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/StrategyButton.vue -------------------------------------------------------------------------------- /src/components/Topnav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Topnav.vue -------------------------------------------------------------------------------- /src/components/Transaction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Transaction.vue -------------------------------------------------------------------------------- /src/components/Ui/Alert.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Alert.vue -------------------------------------------------------------------------------- /src/components/Ui/Button.story.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Button.story.vue -------------------------------------------------------------------------------- /src/components/Ui/Button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Button.vue -------------------------------------------------------------------------------- /src/components/Ui/Counter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Counter.vue -------------------------------------------------------------------------------- /src/components/Ui/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Dropdown.vue -------------------------------------------------------------------------------- /src/components/Ui/DropdownItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/DropdownItem.vue -------------------------------------------------------------------------------- /src/components/Ui/Editable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Editable.vue -------------------------------------------------------------------------------- /src/components/Ui/Loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Loading.vue -------------------------------------------------------------------------------- /src/components/Ui/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Modal.vue -------------------------------------------------------------------------------- /src/components/Ui/Select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Select.vue -------------------------------------------------------------------------------- /src/components/Ui/Tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Ui/Tooltip.vue -------------------------------------------------------------------------------- /src/components/Upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Upload.vue -------------------------------------------------------------------------------- /src/components/Vote.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/Vote.vue -------------------------------------------------------------------------------- /src/components/VotingPowerIndicator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/components/VotingPowerIndicator.vue -------------------------------------------------------------------------------- /src/composables/useAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useAccount.ts -------------------------------------------------------------------------------- /src/composables/useActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useActions.ts -------------------------------------------------------------------------------- /src/composables/useApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useApp.ts -------------------------------------------------------------------------------- /src/composables/useApps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useApps.ts -------------------------------------------------------------------------------- /src/composables/useBalances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useBalances.ts -------------------------------------------------------------------------------- /src/composables/useDelegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useDelegates.ts -------------------------------------------------------------------------------- /src/composables/useEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useEditor.ts -------------------------------------------------------------------------------- /src/composables/useFavicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useFavicon.ts -------------------------------------------------------------------------------- /src/composables/useMarkdownEditor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useMarkdownEditor.ts -------------------------------------------------------------------------------- /src/composables/useMixpanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useMixpanel.ts -------------------------------------------------------------------------------- /src/composables/useModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useModal.ts -------------------------------------------------------------------------------- /src/composables/useNfts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useNfts.ts -------------------------------------------------------------------------------- /src/composables/useResolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useResolve.ts -------------------------------------------------------------------------------- /src/composables/useRouteParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useRouteParser.ts -------------------------------------------------------------------------------- /src/composables/useScrollMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useScrollMonitor.ts -------------------------------------------------------------------------------- /src/composables/useSpaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useSpaces.ts -------------------------------------------------------------------------------- /src/composables/useTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useTitle.ts -------------------------------------------------------------------------------- /src/composables/useTreasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useTreasury.ts -------------------------------------------------------------------------------- /src/composables/useUserSkin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useUserSkin.ts -------------------------------------------------------------------------------- /src/composables/useWalletConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useWalletConnect.ts -------------------------------------------------------------------------------- /src/composables/useWalletConnectTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useWalletConnectTransaction.ts -------------------------------------------------------------------------------- /src/composables/useWeb3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/composables/useWeb3.ts -------------------------------------------------------------------------------- /src/helpers/__snapshots__/transactions.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/__snapshots__/transactions.test.ts.snap -------------------------------------------------------------------------------- /src/helpers/abis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/abis.ts -------------------------------------------------------------------------------- /src/helpers/alchemy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/alchemy/index.ts -------------------------------------------------------------------------------- /src/helpers/alchemy/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/alchemy/types.ts -------------------------------------------------------------------------------- /src/helpers/argentx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/argentx.ts -------------------------------------------------------------------------------- /src/helpers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/auth.ts -------------------------------------------------------------------------------- /src/helpers/call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/call.ts -------------------------------------------------------------------------------- /src/helpers/connectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/connectors.ts -------------------------------------------------------------------------------- /src/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/constants.ts -------------------------------------------------------------------------------- /src/helpers/ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/ens.ts -------------------------------------------------------------------------------- /src/helpers/etherscan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/etherscan.ts -------------------------------------------------------------------------------- /src/helpers/execution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/execution.json -------------------------------------------------------------------------------- /src/helpers/mana.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/mana.ts -------------------------------------------------------------------------------- /src/helpers/multicaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/multicaller.ts -------------------------------------------------------------------------------- /src/helpers/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/networks.json -------------------------------------------------------------------------------- /src/helpers/pin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/pin.ts -------------------------------------------------------------------------------- /src/helpers/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/provider.ts -------------------------------------------------------------------------------- /src/helpers/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/resolver.ts -------------------------------------------------------------------------------- /src/helpers/stamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/stamp.ts -------------------------------------------------------------------------------- /src/helpers/tenderly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/tenderly.ts -------------------------------------------------------------------------------- /src/helpers/transactions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/transactions.test.ts -------------------------------------------------------------------------------- /src/helpers/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/transactions.ts -------------------------------------------------------------------------------- /src/helpers/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/utils.test.ts -------------------------------------------------------------------------------- /src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/utils.ts -------------------------------------------------------------------------------- /src/helpers/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/helpers/validation.ts -------------------------------------------------------------------------------- /src/histoire-setup.ts: -------------------------------------------------------------------------------- 1 | import './style.scss'; 2 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/networks/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/common/constants.ts -------------------------------------------------------------------------------- /src/networks/common/graphqlApi/highlight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/common/graphqlApi/highlight.ts -------------------------------------------------------------------------------- /src/networks/common/graphqlApi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/common/graphqlApi/index.ts -------------------------------------------------------------------------------- /src/networks/common/graphqlApi/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/common/graphqlApi/queries.ts -------------------------------------------------------------------------------- /src/networks/common/graphqlApi/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/common/graphqlApi/types.ts -------------------------------------------------------------------------------- /src/networks/common/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/common/helpers.ts -------------------------------------------------------------------------------- /src/networks/evm/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/evm/actions.ts -------------------------------------------------------------------------------- /src/networks/evm/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/evm/constants.ts -------------------------------------------------------------------------------- /src/networks/evm/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/evm/helpers.ts -------------------------------------------------------------------------------- /src/networks/evm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/evm/index.ts -------------------------------------------------------------------------------- /src/networks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/index.ts -------------------------------------------------------------------------------- /src/networks/offchain/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/offchain/api/index.ts -------------------------------------------------------------------------------- /src/networks/offchain/api/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/offchain/api/queries.ts -------------------------------------------------------------------------------- /src/networks/offchain/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/offchain/api/types.ts -------------------------------------------------------------------------------- /src/networks/offchain/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/offchain/constants.ts -------------------------------------------------------------------------------- /src/networks/offchain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/offchain/index.ts -------------------------------------------------------------------------------- /src/networks/starknet/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/starknet/actions.ts -------------------------------------------------------------------------------- /src/networks/starknet/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/starknet/constants.ts -------------------------------------------------------------------------------- /src/networks/starknet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/starknet/index.ts -------------------------------------------------------------------------------- /src/networks/starknet/provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/starknet/provider.ts -------------------------------------------------------------------------------- /src/networks/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/networks/types.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/stores/contacts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/stores/contacts.ts -------------------------------------------------------------------------------- /src/stores/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/stores/meta.ts -------------------------------------------------------------------------------- /src/stores/proposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/stores/proposals.ts -------------------------------------------------------------------------------- /src/stores/spaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/stores/spaces.ts -------------------------------------------------------------------------------- /src/stores/ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/stores/ui.ts -------------------------------------------------------------------------------- /src/stores/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/stores/users.ts -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/style.scss -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/views/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/App.vue -------------------------------------------------------------------------------- /src/views/Apps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Apps.vue -------------------------------------------------------------------------------- /src/views/Create.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Create.vue -------------------------------------------------------------------------------- /src/views/Editor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Editor.vue -------------------------------------------------------------------------------- /src/views/Explore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Explore.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /src/views/Proposal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Proposal.vue -------------------------------------------------------------------------------- /src/views/Proposal/Overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Proposal/Overview.vue -------------------------------------------------------------------------------- /src/views/Proposal/Votes.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Proposal/Votes.vue -------------------------------------------------------------------------------- /src/views/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Settings.vue -------------------------------------------------------------------------------- /src/views/Settings/Contacts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Settings/Contacts.vue -------------------------------------------------------------------------------- /src/views/Settings/Spaces.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Settings/Spaces.vue -------------------------------------------------------------------------------- /src/views/Space.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Space.vue -------------------------------------------------------------------------------- /src/views/Space/Delegates.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Space/Delegates.vue -------------------------------------------------------------------------------- /src/views/Space/EditSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Space/EditSettings.vue -------------------------------------------------------------------------------- /src/views/Space/Overview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Space/Overview.vue -------------------------------------------------------------------------------- /src/views/Space/Proposals.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Space/Proposals.vue -------------------------------------------------------------------------------- /src/views/Space/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Space/Search.vue -------------------------------------------------------------------------------- /src/views/Space/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Space/Settings.vue -------------------------------------------------------------------------------- /src/views/Space/Treasury.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/Space/Treasury.vue -------------------------------------------------------------------------------- /src/views/User.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/src/views/User.vue -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snapshot-labs/sx-ui/HEAD/yarn.lock --------------------------------------------------------------------------------