├── .babelrc ├── .env.sample ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── e2e.yml │ └── unit.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmrc ├── .nvmrc ├── .nycrc ├── .prettierrc ├── .sentryclirc ├── CONTRIBUTING.md ├── COPYRIGHT.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── __tests__ ├── helpers.tsx └── setup.tsx ├── architecture-diagram.png ├── certificates ├── localhost.crt └── localhost.key ├── codecov.yml ├── codegen.yml ├── docker-compose.yml ├── docs └── POLL_PARAMETERS.md ├── graphql.schema.json ├── lib ├── __tests__ │ └── formatValue.spec.ts ├── animation │ ├── ballotSuccess.json │ ├── txFailed.json │ ├── txPending.json │ └── txSuccess.json ├── config.ts ├── datetime.ts ├── fetchJson.ts ├── github │ └── index.ts ├── keyframes.ts ├── logger.ts ├── markdown.ts ├── matter.ts ├── string.ts ├── theme.tsx ├── theme │ ├── alerts.ts │ ├── badges.ts │ ├── buttons.ts │ ├── cards.ts │ ├── colors.ts │ ├── forms.ts │ ├── icons.tsx │ ├── markdown.ts │ ├── styles.ts │ └── text.ts ├── utils.ts └── validators │ ├── __tests__ │ └── email.spec.ts │ └── email.ts ├── maker-logo.png ├── middleware.ts ├── modules ├── address │ ├── api │ │ └── getAddressInfo.ts │ ├── components │ │ ├── Address.tsx │ │ ├── AddressDelegatedTo.tsx │ │ ├── AddressDetail.tsx │ │ ├── AddressIcon.tsx │ │ ├── AddressIconBox.tsx │ │ ├── AddressMKRDelegatedStats.tsx │ │ ├── Avatar.tsx │ │ └── Jazzicon.tsx │ └── types │ │ └── addressApiResponse.d.ts ├── app │ ├── api │ │ ├── ApiError.ts │ │ ├── __tests__ │ │ │ └── validateQueryParam.spec.ts │ │ ├── postRequestToDiscord.ts │ │ ├── validateQueryParam.ts │ │ └── withApiHandler.ts │ ├── client │ │ ├── storage │ │ │ └── localStorage.ts │ │ └── videos.constants.ts │ ├── components │ │ ├── BoxWithClose.tsx │ │ ├── Card │ │ │ ├── CardHeader.tsx │ │ │ ├── CardSummary.tsx │ │ │ └── CardTitle.tsx │ │ ├── CircleIcon.tsx │ │ ├── ClientRenderOnly.tsx │ │ ├── CountdownTimer.tsx │ │ ├── DateWithHover.tsx │ │ ├── Delay.tsx │ │ ├── Dialog.tsx │ │ ├── ErrorBoundary.tsx │ │ ├── ErrorPage.tsx │ │ ├── ExternalLink.tsx │ │ ├── FilterButton.tsx │ │ ├── Icon │ │ │ └── index.tsx │ │ ├── InternalLink.tsx │ │ ├── MkrUpgradeToastContent.tsx │ │ ├── PageLoadingPlaceholder.tsx │ │ ├── ResourceBox.tsx │ │ ├── SkeletonThemed.tsx │ │ ├── StatBox.tsx │ │ ├── StatusText.tsx │ │ ├── SystemStatsSidebar.tsx │ │ ├── Tabs.tsx │ │ ├── Tag.tsx │ │ ├── Tooltip.tsx │ │ ├── TxFinal.tsx │ │ ├── TxInProgress.tsx │ │ ├── TxIndicators.tsx │ │ ├── VideoModal.tsx │ │ ├── __tests__ │ │ │ ├── AccountSelect.spec.tsx │ │ │ └── Header.spec.tsx │ │ ├── filters │ │ │ └── SearchBar.tsx │ │ └── layout │ │ │ ├── Head.tsx │ │ │ ├── Header.tsx │ │ │ ├── header │ │ │ ├── AccountBox.tsx │ │ │ ├── AccountSelect.tsx │ │ │ ├── Banner.tsx │ │ │ ├── NetworkSelect.tsx │ │ │ ├── TransactionBox.tsx │ │ │ └── VotingWeight.tsx │ │ │ └── layouts │ │ │ ├── Primary.tsx │ │ │ ├── Sidebar.tsx │ │ │ └── Stack.tsx │ ├── constants │ │ ├── apiErrors.ts │ │ └── time.ts │ ├── context │ │ └── AccountContext.tsx │ ├── helpers │ │ ├── debounce.ts │ │ ├── getTestBreakout.ts │ │ └── getVoteProxyAddresses.ts │ ├── hooks │ │ ├── useAccount.ts │ │ ├── useAddressInfo.ts │ │ ├── useIntersectionObserver.tsx │ │ ├── useMigrationToast.tsx │ │ ├── useNetwork.ts │ │ ├── useVoteProxyAddress.ts │ │ └── useVoteProxyOldAddress.ts │ ├── stores │ │ └── uiFilters.ts │ └── types │ │ ├── genericApiResponse.d.ts │ │ ├── global.d.ts │ │ ├── paginationOptions.d.ts │ │ └── tag.d.ts ├── cache │ ├── __tests__ │ │ └── cache.spec.ts │ ├── cache.ts │ ├── constants │ │ └── cache-keys.ts │ ├── getCacheInfo.ts │ └── invalidateCache.ts ├── contracts │ ├── abis │ │ ├── arbitrumGoerliTestnet │ │ │ └── polling.json │ │ ├── arbitrumOne │ │ │ └── polling.json │ │ ├── arbitrumSepolia │ │ │ └── polling.json │ │ ├── goerli │ │ │ ├── chief.json │ │ │ ├── dai.json │ │ │ ├── dssSpell.json │ │ │ ├── end.json │ │ │ ├── esm.json │ │ │ ├── iou.json │ │ │ ├── mkr.json │ │ │ ├── pause.json │ │ │ ├── pauseProxy.json │ │ │ ├── polling.json │ │ │ ├── pot.json │ │ │ ├── vat.json │ │ │ ├── voteDelegateFactory.json │ │ │ ├── voteProxyFactory.json │ │ │ └── vow.json │ │ ├── mainnet │ │ │ ├── chief.json │ │ │ ├── chiefOld.json │ │ │ ├── dai.json │ │ │ ├── dssSpell.json │ │ │ ├── end.json │ │ │ ├── iou.json │ │ │ ├── iouOld.json │ │ │ ├── mkr.json │ │ │ ├── pause.json │ │ │ ├── pauseProxy.json │ │ │ ├── polling.json │ │ │ ├── pollingOld.json │ │ │ ├── pot.json │ │ │ ├── vat.json │ │ │ ├── voteDelegateFactory.json │ │ │ ├── voteDelegateFactoryOld.json │ │ │ ├── voteProxyFactory.json │ │ │ ├── voteProxyFactoryOld.json │ │ │ └── vow.json │ │ └── tenderly │ │ │ ├── chief.json │ │ │ ├── chiefOld.json │ │ │ ├── dai.json │ │ │ ├── dssSpell.json │ │ │ ├── end.json │ │ │ ├── iou.json │ │ │ ├── iouOld.json │ │ │ ├── mkr.json │ │ │ ├── pause.json │ │ │ ├── pauseProxy.json │ │ │ ├── polling.json │ │ │ ├── pollingOld.json │ │ │ ├── pot.json │ │ │ ├── vat.json │ │ │ ├── voteDelegateFactory.json │ │ │ ├── voteDelegateFactoryOld.json │ │ │ ├── voteProxyFactory.json │ │ │ ├── voteProxyFactoryOld.json │ │ │ └── vow.json │ ├── contracts.constants.ts │ ├── contracts.ts │ ├── ethers │ │ └── abis.ts │ └── generated.ts ├── delegates │ ├── api │ │ ├── __tests__ │ │ │ └── filterDelegateAddresses.spec.ts │ │ ├── fetchChainDelegates.ts │ │ ├── fetchDelegateAddresses.ts │ │ ├── fetchDelegatedTo.ts │ │ ├── fetchDelegates.ts │ │ ├── fetchDelegatesExecSupport.ts │ │ ├── fetchDelegatesPageData.ts │ │ ├── fetchDelegationEventsByAddresses.ts │ │ ├── fetchDelegationEventsFromAddresses.ts │ │ ├── fetchDelegationMetrics.ts │ │ ├── fetchGithubDelegates.ts │ │ ├── getDelegatesRepositoryInfo.ts │ │ └── mocks │ │ │ └── delegates.ts │ ├── components │ │ ├── DelegateAvatarName.tsx │ │ ├── DelegateAvatarNameLight.tsx │ │ ├── DelegateAvatarTooltip.tsx │ │ ├── DelegateCredentials.tsx │ │ ├── DelegateDetail.tsx │ │ ├── DelegateMKRDelegatedStats.tsx │ │ ├── DelegateOverviewCard.tsx │ │ ├── DelegateParticipationMetrics.tsx │ │ ├── DelegatePicture.tsx │ │ ├── DelegateVoteHistory.tsx │ │ ├── DelegatedByAddress.tsx │ │ ├── DelegatesSystemInfo.tsx │ │ ├── ManageDelegation.tsx │ │ ├── filters │ │ │ ├── DelegatesShowExpiredFilter.tsx │ │ │ ├── DelegatesSortFilter.tsx │ │ │ └── DelegatesStatusFilter.tsx │ │ ├── index.ts │ │ └── modals │ │ │ ├── Approval.tsx │ │ │ ├── Confirm.tsx │ │ │ ├── CoreUnitButton.tsx │ │ │ ├── CoreUnitModal.tsx │ │ │ ├── DelegateModal.tsx │ │ │ ├── InputDelegateMkr.tsx │ │ │ ├── TxDisplay.tsx │ │ │ └── UndelegateModal.tsx │ ├── delegates.constants.ts │ ├── helpers │ │ ├── filterDelegates.ts │ │ ├── formatDelegationHistory.ts │ │ ├── formatDelegationHistoryChart.ts │ │ ├── getDelegateContractAddress.ts │ │ ├── getDelegatesCounts.test.ts │ │ ├── getDelegatesCounts.ts │ │ └── splitDelegateName.ts │ ├── hooks │ │ ├── useDelegateContractExpirationDate.ts │ │ ├── useDelegateCreate.ts │ │ ├── useDelegateFree.ts │ │ ├── useDelegateLock.ts │ │ ├── useDelegatedTo.ts │ │ ├── useHasV2VoteDelegate.ts │ │ ├── useSingleDelegateInfo.ts │ │ └── useVoteDelegateAddress.ts │ ├── stores │ │ └── delegatesFiltersStore.ts │ └── types │ │ ├── delegate.d.ts │ │ ├── delegatesAPI.d.ts │ │ ├── index.ts │ │ └── mkrWeight.d.ts ├── executive │ ├── api │ │ ├── __tests__ │ │ │ └── parseExecutives.spec.ts │ │ ├── analyzeSpell.ts │ │ ├── fetchExecutivePageData.ts │ │ ├── fetchExecutiveVoteTallyWithSubgraph.ts │ │ ├── fetchExecutives.ts │ │ ├── fetchMkrInChief.ts │ │ ├── mocks │ │ │ └── proposals.json │ │ └── parseExecutive.ts │ ├── components │ │ ├── CurrentlySupportingExecutive.tsx │ │ ├── DateFilter.tsx │ │ ├── ExecutiveBalance.tsx │ │ ├── ExecutiveOverviewCard.tsx │ │ ├── ProgressBar.tsx │ │ ├── ProposalsSortBy.tsx │ │ ├── SkyExecutiveDetailView.tsx │ │ ├── SkyExecutiveOverviewCard.tsx │ │ ├── SkyExecutiveOverviewCardLanding.tsx │ │ ├── SkyExecutiveStatusBox.tsx │ │ ├── SkyExecutiveSupportersBreakdown.tsx │ │ ├── SpellDetailsOverview.tsx │ │ ├── SpellEffectsTab.tsx │ │ ├── VoteModal │ │ │ ├── DefaultView.tsx │ │ │ └── index.tsx │ │ ├── WithdrawOldChief.tsx │ │ └── __tests__ │ │ │ ├── SkyExecutiveStatusBox.test.tsx │ │ │ └── SkyExecutiveSupportersBreakdown.test.tsx │ ├── executive.constants.ts │ ├── helpers │ │ ├── getSlateAddresses.ts │ │ ├── getStatusText.ts │ │ ├── spellDiffParsers.ts │ │ ├── trimProposalKey.ts │ │ └── zeroSlateHash.ts │ ├── hooks │ │ ├── __tests__ │ │ │ └── useSkyExecutiveDetail.test.tsx │ │ ├── useAllSlates.ts │ │ ├── useChiefVote.ts │ │ ├── useDelegateVote.ts │ │ ├── useHat.ts │ │ ├── useMkrOnHat.ts │ │ ├── useSkyExecutiveDetail.ts │ │ ├── useSkyExecutiveSupporters.ts │ │ ├── useSpellData.ts │ │ ├── useVoteProxyVote.ts │ │ └── useVotedProposals.ts │ └── types │ │ ├── __tests__ │ │ └── skyExecutive.test.ts │ │ ├── index.ts │ │ ├── proposal.d.ts │ │ ├── skyExecutive.ts │ │ ├── spellData.d.ts │ │ └── spellStateDiff.d.ts ├── gql │ ├── generated │ │ └── graphql.tsx │ ├── gql.constants.ts │ ├── gqlRequest.ts │ ├── queries │ │ ├── github │ │ │ ├── allGithubDelegates.ts │ │ │ └── allGithubExecutives.ts │ │ ├── spock │ │ │ ├── allCurrentVotes.ts │ │ │ ├── allWhitelistedPolls.ts │ │ │ ├── lastPollVote.ts │ │ │ └── voteAddressMkrWeightsAtTime.ts │ │ └── subgraph │ │ │ ├── allDelegateAddresses.ts │ │ │ ├── allDelegations.ts │ │ │ ├── allSpellVotes.ts │ │ │ ├── delegateHistoryArray.ts │ │ │ ├── delegates.ts │ │ │ ├── delegationTotals.ts │ │ │ ├── delegationsFromAddressHistory.ts │ │ │ ├── delegatorHistory.ts │ │ │ └── lastVotedArbitrum.ts │ └── types │ │ └── index.d.ts ├── home │ ├── api │ │ └── fetchLandingPageData.ts │ ├── components │ │ ├── CirclesBackground.tsx │ │ ├── Footer.tsx │ │ ├── GovernanceStats.tsx │ │ ├── InformationParticipateMakerGovernance │ │ │ └── InfoPoints.tsx │ │ ├── PlayButton.tsx │ │ ├── PollsOverviewLanding.tsx │ │ ├── ResourcesLanding │ │ │ ├── ResourcesLanding.tsx │ │ │ └── resources.ts │ │ └── ViewMore.tsx │ ├── data │ │ ├── bannerContent.json │ │ └── forumPosts.json │ └── types │ │ └── participation.d.ts ├── migration │ ├── components │ │ ├── ConnectWallet.tsx │ │ ├── DelegateContractInfo.tsx │ │ ├── DelegateExpirationOverviewCard.tsx │ │ ├── MigrationInfo.tsx │ │ ├── MigrationSteps.tsx │ │ ├── NewAddress.tsx │ │ ├── NewAddressError.tsx │ │ ├── NewAddressInitial.tsx │ │ ├── NewAddressSuccess.tsx │ │ └── NewDelegateContract.tsx │ ├── delegateAddressLinks.ts │ ├── helpers │ │ └── expirationChecks.ts │ ├── hooks │ │ └── useLinkedDelegateInfo.tsx │ └── steps.ts ├── mkr │ ├── components │ │ ├── Deposit.tsx │ │ ├── MKRInput.tsx │ │ ├── MkrLiquiditySidebar.tsx │ │ ├── Withdraw.tsx │ │ └── __tests__ │ │ │ └── MKRInput.spec.tsx │ ├── helpers │ │ ├── getMKRVotingWeight.spec.ts │ │ └── getMKRVotingWeight.ts │ └── hooks │ │ ├── useFree.ts │ │ ├── useLock.ts │ │ ├── useLockedMkr.ts │ │ ├── useMKRVotingWeight.ts │ │ ├── useMkrBalance.ts │ │ ├── useMkrDelegatedByUser.ts │ │ ├── useMkrDelegationsFromUser.ts │ │ └── useOldChiefFree.ts ├── polling │ ├── api │ │ ├── __tests__ │ │ │ ├── fetchPolls.spec.ts │ │ │ ├── fetchTallyApproval.spec.ts │ │ │ ├── fetchTallyCombined.spec.ts │ │ │ ├── fetchTallyMajority.spec.ts │ │ │ ├── fetchTallyPlurality.spec.ts │ │ │ ├── fetchTallyRanked.spec.ts │ │ │ ├── filterPollList.spec.ts │ │ │ └── sortPollList.spec.ts │ │ ├── fetchAddressPollVoteHistory.ts │ │ ├── fetchAllCurrentVotes.ts │ │ ├── fetchLastPollvote.ts │ │ ├── fetchPollBy.ts │ │ ├── fetchPollMetadata.ts │ │ ├── fetchPollTally.ts │ │ ├── fetchPollingPageData.ts │ │ ├── fetchPolls.ts │ │ ├── fetchVotesByAddress.ts │ │ ├── getArbitrumPollingContractRelayProvider.ts │ │ ├── getArbitrumRelaySigner.ts │ │ ├── getPollTags.ts │ │ ├── getRelayerBalance.ts │ │ ├── getRelayerTx.ts │ │ ├── mocks │ │ │ ├── addressInfo.json │ │ │ ├── ballot.json │ │ │ ├── pollList.ts │ │ │ ├── polls.json │ │ │ ├── tally.json │ │ │ └── vote.json │ │ └── victory_conditions │ │ │ ├── __tests__ │ │ │ ├── approval.spec.ts │ │ │ ├── comparison.spec.ts │ │ │ ├── default.spec.ts │ │ │ ├── instantRunoff.spec.ts │ │ │ ├── majority.spec.ts │ │ │ └── plurality.spec.ts │ │ │ ├── approval.ts │ │ │ ├── comparison.ts │ │ │ ├── default.ts │ │ │ ├── instantRunoff.ts │ │ │ ├── majority.ts │ │ │ └── plurality.ts │ ├── components │ │ ├── BallotPollBar.tsx │ │ ├── ChoiceSummary.tsx │ │ ├── LastVoted.tsx │ │ ├── MobileVoteSheet.tsx │ │ ├── PollCategoryTag.tsx │ │ ├── PollCreateModal.tsx │ │ ├── PollMarkdownEditor.tsx │ │ ├── PollOverviewCard.tsx │ │ ├── PollOverviewCard │ │ │ └── PollVoteTypeIndicator.tsx │ │ ├── PollVoteHistoryItem.tsx │ │ ├── PollVoteHistoryList.tsx │ │ ├── PollVotingStatus.tsx │ │ ├── PollWinningOptionBox.tsx │ │ ├── PollingParticipationOverview.tsx │ │ ├── ShareVotesModal.tsx │ │ ├── SkyPollOverviewCard.tsx │ │ ├── SkyPollWinningOptionBox.tsx │ │ ├── SkyVoteBreakdown.tsx │ │ ├── SkyVoteWeightVisual.tsx │ │ ├── SkyVotesByAddress.tsx │ │ ├── VoteBreakdown.tsx │ │ ├── VoteWeightVisual.tsx │ │ ├── VotedOption.tsx │ │ ├── VotesByAddress.tsx │ │ ├── VotingWeight.tsx │ │ ├── YesNoAbstainBar.tsx │ │ ├── __mocks__ │ │ │ └── categories.json │ │ ├── __tests__ │ │ │ ├── PollVoteHistoryItem.test.tsx │ │ │ └── VotesByAddress.test.tsx │ │ ├── filters │ │ │ ├── CategoryFilter.tsx │ │ │ ├── DateFilter.tsx │ │ │ ├── PollTypeFilter.tsx │ │ │ ├── PollsSort.tsx │ │ │ └── StatusFilter.tsx │ │ ├── poll-vote-input │ │ │ ├── ChooseFreeSelect.tsx │ │ │ ├── QuickVote.tsx │ │ │ ├── RankedChoiceSelect.tsx │ │ │ ├── SingleSelect.tsx │ │ │ └── VoteBox.tsx │ │ ├── review │ │ │ ├── ActivePollsBox.tsx │ │ │ └── ReviewBox.tsx │ │ └── vote-summary │ │ │ ├── ListVoteSummary.tsx │ │ │ └── PluralityVoteSummary.tsx │ ├── context │ │ └── BallotContext.tsx │ ├── helpers │ │ ├── __tests__ │ │ │ ├── __helpers__ │ │ │ │ ├── poll-327.js │ │ │ │ ├── poll-327.md │ │ │ │ ├── poll-431.js │ │ │ │ └── poll-431.md │ │ │ ├── filterPolls.spec.ts │ │ │ ├── getCategories.spec.ts │ │ │ ├── parsePollMetadata.spec.ts │ │ │ ├── parsePollOptions.spec.ts │ │ │ ├── validatePollParameters.spec.ts │ │ │ └── validator.spec.ts │ │ ├── ballotIncludesAlreadyVoted.ts │ │ ├── filterPolls.ts │ │ ├── getCategories.ts │ │ ├── getExecutiveVotingWeightCopy.ts │ │ ├── getPollTally.ts │ │ ├── getPollingVotingWeightCopy.ts │ │ ├── getVoteColor.ts │ │ ├── hasMkrRequiredVotingWeight.ts │ │ ├── isValidRelayerTxIdParam.ts │ │ ├── parsePollMetadata.ts │ │ ├── parsePollOptions.ts │ │ ├── parseRawOptionId.ts │ │ ├── recentlyUsedGaslessVotingCheck.ts │ │ ├── relayerCredentials.ts │ │ ├── sortPolls.ts │ │ ├── utils.ts │ │ ├── validatePollParameters.ts │ │ └── validator.ts │ ├── hooks │ │ ├── useAllUserVotes.ts │ │ ├── usePollCreate.ts │ │ ├── usePollTally.ts │ │ └── useSkyPollTally.ts │ ├── polling.constants.ts │ ├── stores │ │ └── polls.ts │ └── types │ │ ├── ballot.d.ts │ │ ├── index.ts │ │ ├── instantRunoff.d.ts │ │ ├── poll.d.ts │ │ ├── pollSpock.d.ts │ │ ├── pollTally.d.ts │ │ ├── pollVoteHistory.d.ts │ │ ├── pollVoteType.d.ts │ │ └── pollsResponse.d.ts ├── tags │ └── constants │ │ ├── delegates-tags-definitions.json │ │ ├── poll-tags-definitions.json │ │ └── poll-tags-mapping.json ├── wagmi │ └── config │ │ ├── config.default.ts │ │ ├── config.e2e.ts │ │ └── testTenderlyChain.ts └── web3 │ ├── api │ ├── getChiefApprovals.ts │ ├── getSpellExecuationDate.ts │ ├── getSpellScheduledDate.ts │ └── validateAddress.ts │ ├── components │ ├── AccountNotConnected.tsx │ ├── ConnectNetworkButton.tsx │ ├── ConnectWalletButton.tsx │ ├── EtherscanLink.tsx │ └── NetworkAlertModal.tsx │ ├── constants │ ├── addresses.ts │ ├── chainID.ts │ ├── networks.ts │ ├── tokens.ts │ ├── transaction.ts │ └── wallets.ts │ ├── helpers │ ├── chain.ts │ ├── contract-info.json │ ├── ens.ts │ ├── errors.ts │ ├── fetchGasPrice.ts │ ├── getEtherscanLink.ts │ ├── getGaslessTransaction.ts │ ├── getPublicClient.ts │ ├── networks.ts │ ├── signTypedBallotData.ts │ ├── tokenNameToConfig.ts │ └── verifyTypedSignature.ts │ ├── hooks │ ├── useApproveUnlimitedToken.ts │ ├── useDaiSavingsRate.ts │ ├── useGasPrice.ts │ ├── useSystemSurplus.ts │ ├── useSystemWideDebtCeiling.ts │ ├── useTokenAllowance.ts │ ├── useTokenBalance.ts │ ├── useTotalDai.ts │ ├── useTotalSupply.ts │ ├── useWaitForSafeTxHash.ts │ └── useWriteContractFlow.ts │ ├── stores │ ├── __tests__ │ │ └── transactions.spec.ts │ └── transactions.ts │ └── types │ ├── chain.d.ts │ ├── hooks.d.ts │ ├── tokens.d.ts │ └── transaction.d.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── _error.tsx ├── account.tsx ├── address │ └── [address] │ │ └── index.tsx ├── api-docs │ └── index.tsx ├── api │ ├── address │ │ ├── [address] │ │ │ ├── delegated-to.ts │ │ │ ├── delegations.ts │ │ │ └── index.ts │ │ └── stats.ts │ ├── auth.ts │ ├── cache │ │ ├── info.ts │ │ └── invalidate.ts │ ├── delegates │ │ ├── [address] │ │ │ └── info.ts │ │ ├── delegation-history │ │ │ └── [address].ts │ │ ├── info.ts │ │ ├── v1 │ │ │ └── index.ts │ │ └── v2 │ │ │ └── index.ts │ ├── doc.ts │ ├── executive │ │ ├── [proposal-id].ts │ │ ├── analyze-spell │ │ │ └── [address].ts │ │ ├── index.ts │ │ └── supporters.ts │ ├── generate-test-signature.ts │ ├── github-tokens.ts │ ├── migration │ │ └── link.ts │ ├── polling │ │ ├── [poll-id-or-slug].ts │ │ ├── __tests__ │ │ │ └── vote.spec.ts │ │ ├── precheck.ts │ │ ├── relayer-balance.ts │ │ ├── relayer-tx.ts │ │ ├── tally │ │ │ └── [poll-id].ts │ │ ├── v1 │ │ │ └── all-polls.ts │ │ ├── v2 │ │ │ ├── active-poll-ids.ts │ │ │ └── all-polls.ts │ │ └── vote.ts │ └── sky │ │ ├── executives.ts │ │ ├── executives │ │ ├── [proposal-id-or-key].ts │ │ └── supporters.ts │ │ ├── hat.ts │ │ ├── polls.ts │ │ └── polls │ │ ├── [poll-id-or-slug].ts │ │ └── tally │ │ └── [poll-id].ts ├── custom-spell │ ├── [address].tsx │ └── index.tsx ├── dashboard │ └── index.tsx ├── delegates │ └── index.tsx ├── executive.tsx ├── executive │ └── [proposal-id].tsx ├── index.tsx ├── legacy-executive.tsx ├── legacy-polling.tsx ├── legacy-polling │ └── [poll-hash].tsx ├── polling.tsx ├── polling │ ├── [poll-hash].tsx │ └── review.tsx ├── sky-executive │ └── [proposal-id].tsx ├── sky-polling │ └── [poll-hash].tsx └── terms.tsx ├── playwright.config.ts ├── playwright ├── delegates.spec.ts ├── executive.spec.ts ├── fixtures │ ├── base.ts │ ├── delegate.ts │ ├── executive.ts │ ├── polling.ts │ ├── sky-executive-detail.ts │ ├── sky-executive.ts │ ├── sky-polling.ts │ └── wallet.ts ├── forkVnet.ts ├── helpers │ ├── delegateMkr.ts │ └── depositMkr.ts ├── legacy-executives.spec.ts ├── legacy-polling.spec.ts ├── mock-rpc-call.ts ├── polling.spec.ts ├── shared.ts ├── sky-executive-detail.spec.ts ├── sky-poll-detail.spec.ts └── wallet.spec.ts ├── pnpm-lock.yaml ├── public ├── assets │ ├── bg_dark_medium.jpeg │ ├── bg_footer_dark.jpeg │ ├── bg_footer_light.jpeg │ ├── bg_medium.jpeg │ ├── empty-profile-picture.svg │ ├── maker_icon.png │ ├── maker_logo.svg │ ├── resource_icon_1.svg │ ├── resource_icon_2.svg │ ├── resource_icon_3.svg │ ├── resource_icon_4.svg │ ├── resource_icon_5.svg │ ├── resource_icon_6.svg │ ├── resource_icon_7.svg │ ├── resource_icon_8.svg │ ├── resource_icon_9.svg │ ├── sky_logo_outline.svg │ ├── success-end.png │ └── switch-account-metamask.gif ├── favicon.ico ├── home │ ├── participation │ │ ├── clean-money.png │ │ └── improve-participation.png │ └── understand-governance │ │ └── 00_visual_how_to_participate.png ├── maker.svg ├── manifest.json ├── robots.txt └── seo │ └── delegates.png ├── scripts ├── fetchTags.mjs ├── generate_pr_description.sh └── test-sky-executive-api.js ├── server.js ├── tenderlyTestnetData.json ├── tsconfig.json ├── vitest.config.mts └── wagmi.config.ts /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.babelrc -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.github/workflows/e2e.yml -------------------------------------------------------------------------------- /.github/workflows/unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.github/workflows/unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | script-shell = bash 2 | minimum-release-age=1440 3 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.prettierrc -------------------------------------------------------------------------------- /.sentryclirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/.sentryclirc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/COPYRIGHT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/helpers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/__tests__/helpers.tsx -------------------------------------------------------------------------------- /__tests__/setup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/__tests__/setup.tsx -------------------------------------------------------------------------------- /architecture-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/architecture-diagram.png -------------------------------------------------------------------------------- /certificates/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/certificates/localhost.crt -------------------------------------------------------------------------------- /certificates/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/certificates/localhost.key -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | github_checks: 2 | annotations: false 3 | -------------------------------------------------------------------------------- /codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/codegen.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/POLL_PARAMETERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/docs/POLL_PARAMETERS.md -------------------------------------------------------------------------------- /graphql.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/graphql.schema.json -------------------------------------------------------------------------------- /lib/__tests__/formatValue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/__tests__/formatValue.spec.ts -------------------------------------------------------------------------------- /lib/animation/ballotSuccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/animation/ballotSuccess.json -------------------------------------------------------------------------------- /lib/animation/txFailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/animation/txFailed.json -------------------------------------------------------------------------------- /lib/animation/txPending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/animation/txPending.json -------------------------------------------------------------------------------- /lib/animation/txSuccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/animation/txSuccess.json -------------------------------------------------------------------------------- /lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/config.ts -------------------------------------------------------------------------------- /lib/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/datetime.ts -------------------------------------------------------------------------------- /lib/fetchJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/fetchJson.ts -------------------------------------------------------------------------------- /lib/github/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/github/index.ts -------------------------------------------------------------------------------- /lib/keyframes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/keyframes.ts -------------------------------------------------------------------------------- /lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/logger.ts -------------------------------------------------------------------------------- /lib/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/markdown.ts -------------------------------------------------------------------------------- /lib/matter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/matter.ts -------------------------------------------------------------------------------- /lib/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/string.ts -------------------------------------------------------------------------------- /lib/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme.tsx -------------------------------------------------------------------------------- /lib/theme/alerts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/alerts.ts -------------------------------------------------------------------------------- /lib/theme/badges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/badges.ts -------------------------------------------------------------------------------- /lib/theme/buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/buttons.ts -------------------------------------------------------------------------------- /lib/theme/cards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/cards.ts -------------------------------------------------------------------------------- /lib/theme/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/colors.ts -------------------------------------------------------------------------------- /lib/theme/forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/forms.ts -------------------------------------------------------------------------------- /lib/theme/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/icons.tsx -------------------------------------------------------------------------------- /lib/theme/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/markdown.ts -------------------------------------------------------------------------------- /lib/theme/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/styles.ts -------------------------------------------------------------------------------- /lib/theme/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/theme/text.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/validators/__tests__/email.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/validators/__tests__/email.spec.ts -------------------------------------------------------------------------------- /lib/validators/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/lib/validators/email.ts -------------------------------------------------------------------------------- /maker-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/maker-logo.png -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/middleware.ts -------------------------------------------------------------------------------- /modules/address/api/getAddressInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/api/getAddressInfo.ts -------------------------------------------------------------------------------- /modules/address/components/Address.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/components/Address.tsx -------------------------------------------------------------------------------- /modules/address/components/AddressDelegatedTo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/components/AddressDelegatedTo.tsx -------------------------------------------------------------------------------- /modules/address/components/AddressDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/components/AddressDetail.tsx -------------------------------------------------------------------------------- /modules/address/components/AddressIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/components/AddressIcon.tsx -------------------------------------------------------------------------------- /modules/address/components/AddressIconBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/components/AddressIconBox.tsx -------------------------------------------------------------------------------- /modules/address/components/AddressMKRDelegatedStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/components/AddressMKRDelegatedStats.tsx -------------------------------------------------------------------------------- /modules/address/components/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/components/Avatar.tsx -------------------------------------------------------------------------------- /modules/address/components/Jazzicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/components/Jazzicon.tsx -------------------------------------------------------------------------------- /modules/address/types/addressApiResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/address/types/addressApiResponse.d.ts -------------------------------------------------------------------------------- /modules/app/api/ApiError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/api/ApiError.ts -------------------------------------------------------------------------------- /modules/app/api/__tests__/validateQueryParam.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/api/__tests__/validateQueryParam.spec.ts -------------------------------------------------------------------------------- /modules/app/api/postRequestToDiscord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/api/postRequestToDiscord.ts -------------------------------------------------------------------------------- /modules/app/api/validateQueryParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/api/validateQueryParam.ts -------------------------------------------------------------------------------- /modules/app/api/withApiHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/api/withApiHandler.ts -------------------------------------------------------------------------------- /modules/app/client/storage/localStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/client/storage/localStorage.ts -------------------------------------------------------------------------------- /modules/app/client/videos.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/client/videos.constants.ts -------------------------------------------------------------------------------- /modules/app/components/BoxWithClose.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/BoxWithClose.tsx -------------------------------------------------------------------------------- /modules/app/components/Card/CardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Card/CardHeader.tsx -------------------------------------------------------------------------------- /modules/app/components/Card/CardSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Card/CardSummary.tsx -------------------------------------------------------------------------------- /modules/app/components/Card/CardTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Card/CardTitle.tsx -------------------------------------------------------------------------------- /modules/app/components/CircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/CircleIcon.tsx -------------------------------------------------------------------------------- /modules/app/components/ClientRenderOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/ClientRenderOnly.tsx -------------------------------------------------------------------------------- /modules/app/components/CountdownTimer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/CountdownTimer.tsx -------------------------------------------------------------------------------- /modules/app/components/DateWithHover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/DateWithHover.tsx -------------------------------------------------------------------------------- /modules/app/components/Delay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Delay.tsx -------------------------------------------------------------------------------- /modules/app/components/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Dialog.tsx -------------------------------------------------------------------------------- /modules/app/components/ErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/ErrorBoundary.tsx -------------------------------------------------------------------------------- /modules/app/components/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/ErrorPage.tsx -------------------------------------------------------------------------------- /modules/app/components/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/ExternalLink.tsx -------------------------------------------------------------------------------- /modules/app/components/FilterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/FilterButton.tsx -------------------------------------------------------------------------------- /modules/app/components/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Icon/index.tsx -------------------------------------------------------------------------------- /modules/app/components/InternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/InternalLink.tsx -------------------------------------------------------------------------------- /modules/app/components/MkrUpgradeToastContent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/MkrUpgradeToastContent.tsx -------------------------------------------------------------------------------- /modules/app/components/PageLoadingPlaceholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/PageLoadingPlaceholder.tsx -------------------------------------------------------------------------------- /modules/app/components/ResourceBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/ResourceBox.tsx -------------------------------------------------------------------------------- /modules/app/components/SkeletonThemed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/SkeletonThemed.tsx -------------------------------------------------------------------------------- /modules/app/components/StatBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/StatBox.tsx -------------------------------------------------------------------------------- /modules/app/components/StatusText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/StatusText.tsx -------------------------------------------------------------------------------- /modules/app/components/SystemStatsSidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/SystemStatsSidebar.tsx -------------------------------------------------------------------------------- /modules/app/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Tabs.tsx -------------------------------------------------------------------------------- /modules/app/components/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Tag.tsx -------------------------------------------------------------------------------- /modules/app/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/Tooltip.tsx -------------------------------------------------------------------------------- /modules/app/components/TxFinal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/TxFinal.tsx -------------------------------------------------------------------------------- /modules/app/components/TxInProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/TxInProgress.tsx -------------------------------------------------------------------------------- /modules/app/components/TxIndicators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/TxIndicators.tsx -------------------------------------------------------------------------------- /modules/app/components/VideoModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/VideoModal.tsx -------------------------------------------------------------------------------- /modules/app/components/__tests__/AccountSelect.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/__tests__/AccountSelect.spec.tsx -------------------------------------------------------------------------------- /modules/app/components/__tests__/Header.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/__tests__/Header.spec.tsx -------------------------------------------------------------------------------- /modules/app/components/filters/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/filters/SearchBar.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/Head.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/Header.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/header/AccountBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/header/AccountBox.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/header/AccountSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/header/AccountSelect.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/header/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/header/Banner.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/header/NetworkSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/header/NetworkSelect.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/header/TransactionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/header/TransactionBox.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/header/VotingWeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/header/VotingWeight.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/layouts/Primary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/layouts/Primary.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/layouts/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/layouts/Sidebar.tsx -------------------------------------------------------------------------------- /modules/app/components/layout/layouts/Stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/components/layout/layouts/Stack.tsx -------------------------------------------------------------------------------- /modules/app/constants/apiErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/constants/apiErrors.ts -------------------------------------------------------------------------------- /modules/app/constants/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/constants/time.ts -------------------------------------------------------------------------------- /modules/app/context/AccountContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/context/AccountContext.tsx -------------------------------------------------------------------------------- /modules/app/helpers/debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/helpers/debounce.ts -------------------------------------------------------------------------------- /modules/app/helpers/getTestBreakout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/helpers/getTestBreakout.ts -------------------------------------------------------------------------------- /modules/app/helpers/getVoteProxyAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/helpers/getVoteProxyAddresses.ts -------------------------------------------------------------------------------- /modules/app/hooks/useAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/hooks/useAccount.ts -------------------------------------------------------------------------------- /modules/app/hooks/useAddressInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/hooks/useAddressInfo.ts -------------------------------------------------------------------------------- /modules/app/hooks/useIntersectionObserver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/hooks/useIntersectionObserver.tsx -------------------------------------------------------------------------------- /modules/app/hooks/useMigrationToast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/hooks/useMigrationToast.tsx -------------------------------------------------------------------------------- /modules/app/hooks/useNetwork.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/hooks/useNetwork.ts -------------------------------------------------------------------------------- /modules/app/hooks/useVoteProxyAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/hooks/useVoteProxyAddress.ts -------------------------------------------------------------------------------- /modules/app/hooks/useVoteProxyOldAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/hooks/useVoteProxyOldAddress.ts -------------------------------------------------------------------------------- /modules/app/stores/uiFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/stores/uiFilters.ts -------------------------------------------------------------------------------- /modules/app/types/genericApiResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/types/genericApiResponse.d.ts -------------------------------------------------------------------------------- /modules/app/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/types/global.d.ts -------------------------------------------------------------------------------- /modules/app/types/paginationOptions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/types/paginationOptions.d.ts -------------------------------------------------------------------------------- /modules/app/types/tag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/app/types/tag.d.ts -------------------------------------------------------------------------------- /modules/cache/__tests__/cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/cache/__tests__/cache.spec.ts -------------------------------------------------------------------------------- /modules/cache/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/cache/cache.ts -------------------------------------------------------------------------------- /modules/cache/constants/cache-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/cache/constants/cache-keys.ts -------------------------------------------------------------------------------- /modules/cache/getCacheInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/cache/getCacheInfo.ts -------------------------------------------------------------------------------- /modules/cache/invalidateCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/cache/invalidateCache.ts -------------------------------------------------------------------------------- /modules/contracts/abis/arbitrumGoerliTestnet/polling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/arbitrumGoerliTestnet/polling.json -------------------------------------------------------------------------------- /modules/contracts/abis/arbitrumOne/polling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/arbitrumOne/polling.json -------------------------------------------------------------------------------- /modules/contracts/abis/arbitrumSepolia/polling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/arbitrumSepolia/polling.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/chief.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/chief.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/dai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/dai.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/dssSpell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/dssSpell.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/end.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/esm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/esm.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/iou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/iou.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/mkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/mkr.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/pause.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/pauseProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/pauseProxy.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/polling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/polling.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/pot.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/vat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/vat.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/voteDelegateFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/voteDelegateFactory.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/voteProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/voteProxyFactory.json -------------------------------------------------------------------------------- /modules/contracts/abis/goerli/vow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/goerli/vow.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/chief.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/chief.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/chiefOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/chiefOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/dai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/dai.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/dssSpell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/dssSpell.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/end.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/iou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/iou.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/iouOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/iouOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/mkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/mkr.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/pause.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/pauseProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/pauseProxy.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/polling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/polling.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/pollingOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/pollingOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/pot.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/vat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/vat.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/voteDelegateFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/voteDelegateFactory.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/voteDelegateFactoryOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/voteDelegateFactoryOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/voteProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/voteProxyFactory.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/voteProxyFactoryOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/voteProxyFactoryOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/mainnet/vow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/mainnet/vow.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/chief.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/chief.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/chiefOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/chiefOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/dai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/dai.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/dssSpell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/dssSpell.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/end.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/iou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/iou.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/iouOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/iouOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/mkr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/mkr.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/pause.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/pause.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/pauseProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/pauseProxy.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/polling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/polling.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/pollingOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/pollingOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/pot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/pot.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/vat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/vat.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/voteDelegateFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/voteDelegateFactory.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/voteDelegateFactoryOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/voteDelegateFactoryOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/voteProxyFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/voteProxyFactory.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/voteProxyFactoryOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/voteProxyFactoryOld.json -------------------------------------------------------------------------------- /modules/contracts/abis/tenderly/vow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/abis/tenderly/vow.json -------------------------------------------------------------------------------- /modules/contracts/contracts.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/contracts.constants.ts -------------------------------------------------------------------------------- /modules/contracts/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/contracts.ts -------------------------------------------------------------------------------- /modules/contracts/ethers/abis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/ethers/abis.ts -------------------------------------------------------------------------------- /modules/contracts/generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/contracts/generated.ts -------------------------------------------------------------------------------- /modules/delegates/api/__tests__/filterDelegateAddresses.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/__tests__/filterDelegateAddresses.spec.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchChainDelegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchChainDelegates.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchDelegateAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchDelegateAddresses.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchDelegatedTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchDelegatedTo.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchDelegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchDelegates.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchDelegatesExecSupport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchDelegatesExecSupport.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchDelegatesPageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchDelegatesPageData.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchDelegationEventsByAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchDelegationEventsByAddresses.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchDelegationEventsFromAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchDelegationEventsFromAddresses.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchDelegationMetrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchDelegationMetrics.ts -------------------------------------------------------------------------------- /modules/delegates/api/fetchGithubDelegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/fetchGithubDelegates.ts -------------------------------------------------------------------------------- /modules/delegates/api/getDelegatesRepositoryInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/getDelegatesRepositoryInfo.ts -------------------------------------------------------------------------------- /modules/delegates/api/mocks/delegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/api/mocks/delegates.ts -------------------------------------------------------------------------------- /modules/delegates/components/DelegateAvatarName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateAvatarName.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegateAvatarNameLight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateAvatarNameLight.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegateAvatarTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateAvatarTooltip.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegateCredentials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateCredentials.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegateDetail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateDetail.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegateMKRDelegatedStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateMKRDelegatedStats.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegateOverviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateOverviewCard.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegateParticipationMetrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateParticipationMetrics.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegatePicture.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegatePicture.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegateVoteHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegateVoteHistory.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegatedByAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegatedByAddress.tsx -------------------------------------------------------------------------------- /modules/delegates/components/DelegatesSystemInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/DelegatesSystemInfo.tsx -------------------------------------------------------------------------------- /modules/delegates/components/ManageDelegation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/ManageDelegation.tsx -------------------------------------------------------------------------------- /modules/delegates/components/filters/DelegatesShowExpiredFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/filters/DelegatesShowExpiredFilter.tsx -------------------------------------------------------------------------------- /modules/delegates/components/filters/DelegatesSortFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/filters/DelegatesSortFilter.tsx -------------------------------------------------------------------------------- /modules/delegates/components/filters/DelegatesStatusFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/filters/DelegatesStatusFilter.tsx -------------------------------------------------------------------------------- /modules/delegates/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/index.ts -------------------------------------------------------------------------------- /modules/delegates/components/modals/Approval.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/modals/Approval.tsx -------------------------------------------------------------------------------- /modules/delegates/components/modals/Confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/modals/Confirm.tsx -------------------------------------------------------------------------------- /modules/delegates/components/modals/CoreUnitButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/modals/CoreUnitButton.tsx -------------------------------------------------------------------------------- /modules/delegates/components/modals/CoreUnitModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/modals/CoreUnitModal.tsx -------------------------------------------------------------------------------- /modules/delegates/components/modals/DelegateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/modals/DelegateModal.tsx -------------------------------------------------------------------------------- /modules/delegates/components/modals/InputDelegateMkr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/modals/InputDelegateMkr.tsx -------------------------------------------------------------------------------- /modules/delegates/components/modals/TxDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/modals/TxDisplay.tsx -------------------------------------------------------------------------------- /modules/delegates/components/modals/UndelegateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/components/modals/UndelegateModal.tsx -------------------------------------------------------------------------------- /modules/delegates/delegates.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/delegates.constants.ts -------------------------------------------------------------------------------- /modules/delegates/helpers/filterDelegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/helpers/filterDelegates.ts -------------------------------------------------------------------------------- /modules/delegates/helpers/formatDelegationHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/helpers/formatDelegationHistory.ts -------------------------------------------------------------------------------- /modules/delegates/helpers/formatDelegationHistoryChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/helpers/formatDelegationHistoryChart.ts -------------------------------------------------------------------------------- /modules/delegates/helpers/getDelegateContractAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/helpers/getDelegateContractAddress.ts -------------------------------------------------------------------------------- /modules/delegates/helpers/getDelegatesCounts.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/helpers/getDelegatesCounts.test.ts -------------------------------------------------------------------------------- /modules/delegates/helpers/getDelegatesCounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/helpers/getDelegatesCounts.ts -------------------------------------------------------------------------------- /modules/delegates/helpers/splitDelegateName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/helpers/splitDelegateName.ts -------------------------------------------------------------------------------- /modules/delegates/hooks/useDelegateContractExpirationDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/hooks/useDelegateContractExpirationDate.ts -------------------------------------------------------------------------------- /modules/delegates/hooks/useDelegateCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/hooks/useDelegateCreate.ts -------------------------------------------------------------------------------- /modules/delegates/hooks/useDelegateFree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/hooks/useDelegateFree.ts -------------------------------------------------------------------------------- /modules/delegates/hooks/useDelegateLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/hooks/useDelegateLock.ts -------------------------------------------------------------------------------- /modules/delegates/hooks/useDelegatedTo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/hooks/useDelegatedTo.ts -------------------------------------------------------------------------------- /modules/delegates/hooks/useHasV2VoteDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/hooks/useHasV2VoteDelegate.ts -------------------------------------------------------------------------------- /modules/delegates/hooks/useSingleDelegateInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/hooks/useSingleDelegateInfo.ts -------------------------------------------------------------------------------- /modules/delegates/hooks/useVoteDelegateAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/hooks/useVoteDelegateAddress.ts -------------------------------------------------------------------------------- /modules/delegates/stores/delegatesFiltersStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/stores/delegatesFiltersStore.ts -------------------------------------------------------------------------------- /modules/delegates/types/delegate.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/types/delegate.d.ts -------------------------------------------------------------------------------- /modules/delegates/types/delegatesAPI.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/types/delegatesAPI.d.ts -------------------------------------------------------------------------------- /modules/delegates/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/types/index.ts -------------------------------------------------------------------------------- /modules/delegates/types/mkrWeight.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/delegates/types/mkrWeight.d.ts -------------------------------------------------------------------------------- /modules/executive/api/__tests__/parseExecutives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/api/__tests__/parseExecutives.spec.ts -------------------------------------------------------------------------------- /modules/executive/api/analyzeSpell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/api/analyzeSpell.ts -------------------------------------------------------------------------------- /modules/executive/api/fetchExecutivePageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/api/fetchExecutivePageData.ts -------------------------------------------------------------------------------- /modules/executive/api/fetchExecutiveVoteTallyWithSubgraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/api/fetchExecutiveVoteTallyWithSubgraph.ts -------------------------------------------------------------------------------- /modules/executive/api/fetchExecutives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/api/fetchExecutives.ts -------------------------------------------------------------------------------- /modules/executive/api/fetchMkrInChief.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/api/fetchMkrInChief.ts -------------------------------------------------------------------------------- /modules/executive/api/mocks/proposals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/api/mocks/proposals.json -------------------------------------------------------------------------------- /modules/executive/api/parseExecutive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/api/parseExecutive.ts -------------------------------------------------------------------------------- /modules/executive/components/CurrentlySupportingExecutive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/CurrentlySupportingExecutive.tsx -------------------------------------------------------------------------------- /modules/executive/components/DateFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/DateFilter.tsx -------------------------------------------------------------------------------- /modules/executive/components/ExecutiveBalance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/ExecutiveBalance.tsx -------------------------------------------------------------------------------- /modules/executive/components/ExecutiveOverviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/ExecutiveOverviewCard.tsx -------------------------------------------------------------------------------- /modules/executive/components/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/ProgressBar.tsx -------------------------------------------------------------------------------- /modules/executive/components/ProposalsSortBy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/ProposalsSortBy.tsx -------------------------------------------------------------------------------- /modules/executive/components/SkyExecutiveDetailView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/SkyExecutiveDetailView.tsx -------------------------------------------------------------------------------- /modules/executive/components/SkyExecutiveOverviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/SkyExecutiveOverviewCard.tsx -------------------------------------------------------------------------------- /modules/executive/components/SkyExecutiveOverviewCardLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/SkyExecutiveOverviewCardLanding.tsx -------------------------------------------------------------------------------- /modules/executive/components/SkyExecutiveStatusBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/SkyExecutiveStatusBox.tsx -------------------------------------------------------------------------------- /modules/executive/components/SkyExecutiveSupportersBreakdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/SkyExecutiveSupportersBreakdown.tsx -------------------------------------------------------------------------------- /modules/executive/components/SpellDetailsOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/SpellDetailsOverview.tsx -------------------------------------------------------------------------------- /modules/executive/components/SpellEffectsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/SpellEffectsTab.tsx -------------------------------------------------------------------------------- /modules/executive/components/VoteModal/DefaultView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/VoteModal/DefaultView.tsx -------------------------------------------------------------------------------- /modules/executive/components/VoteModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/VoteModal/index.tsx -------------------------------------------------------------------------------- /modules/executive/components/WithdrawOldChief.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/WithdrawOldChief.tsx -------------------------------------------------------------------------------- /modules/executive/components/__tests__/SkyExecutiveStatusBox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/__tests__/SkyExecutiveStatusBox.test.tsx -------------------------------------------------------------------------------- /modules/executive/components/__tests__/SkyExecutiveSupportersBreakdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/components/__tests__/SkyExecutiveSupportersBreakdown.test.tsx -------------------------------------------------------------------------------- /modules/executive/executive.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/executive.constants.ts -------------------------------------------------------------------------------- /modules/executive/helpers/getSlateAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/helpers/getSlateAddresses.ts -------------------------------------------------------------------------------- /modules/executive/helpers/getStatusText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/helpers/getStatusText.ts -------------------------------------------------------------------------------- /modules/executive/helpers/spellDiffParsers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/helpers/spellDiffParsers.ts -------------------------------------------------------------------------------- /modules/executive/helpers/trimProposalKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/helpers/trimProposalKey.ts -------------------------------------------------------------------------------- /modules/executive/helpers/zeroSlateHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/helpers/zeroSlateHash.ts -------------------------------------------------------------------------------- /modules/executive/hooks/__tests__/useSkyExecutiveDetail.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/__tests__/useSkyExecutiveDetail.test.tsx -------------------------------------------------------------------------------- /modules/executive/hooks/useAllSlates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useAllSlates.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useChiefVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useChiefVote.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useDelegateVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useDelegateVote.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useHat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useHat.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useMkrOnHat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useMkrOnHat.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useSkyExecutiveDetail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useSkyExecutiveDetail.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useSkyExecutiveSupporters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useSkyExecutiveSupporters.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useSpellData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useSpellData.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useVoteProxyVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useVoteProxyVote.ts -------------------------------------------------------------------------------- /modules/executive/hooks/useVotedProposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/hooks/useVotedProposals.ts -------------------------------------------------------------------------------- /modules/executive/types/__tests__/skyExecutive.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/types/__tests__/skyExecutive.test.ts -------------------------------------------------------------------------------- /modules/executive/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/types/index.ts -------------------------------------------------------------------------------- /modules/executive/types/proposal.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/types/proposal.d.ts -------------------------------------------------------------------------------- /modules/executive/types/skyExecutive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/types/skyExecutive.ts -------------------------------------------------------------------------------- /modules/executive/types/spellData.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/types/spellData.d.ts -------------------------------------------------------------------------------- /modules/executive/types/spellStateDiff.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/executive/types/spellStateDiff.d.ts -------------------------------------------------------------------------------- /modules/gql/generated/graphql.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/generated/graphql.tsx -------------------------------------------------------------------------------- /modules/gql/gql.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/gql.constants.ts -------------------------------------------------------------------------------- /modules/gql/gqlRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/gqlRequest.ts -------------------------------------------------------------------------------- /modules/gql/queries/github/allGithubDelegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/github/allGithubDelegates.ts -------------------------------------------------------------------------------- /modules/gql/queries/github/allGithubExecutives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/github/allGithubExecutives.ts -------------------------------------------------------------------------------- /modules/gql/queries/spock/allCurrentVotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/spock/allCurrentVotes.ts -------------------------------------------------------------------------------- /modules/gql/queries/spock/allWhitelistedPolls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/spock/allWhitelistedPolls.ts -------------------------------------------------------------------------------- /modules/gql/queries/spock/lastPollVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/spock/lastPollVote.ts -------------------------------------------------------------------------------- /modules/gql/queries/spock/voteAddressMkrWeightsAtTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/spock/voteAddressMkrWeightsAtTime.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/allDelegateAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/allDelegateAddresses.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/allDelegations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/allDelegations.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/allSpellVotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/allSpellVotes.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/delegateHistoryArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/delegateHistoryArray.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/delegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/delegates.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/delegationTotals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/delegationTotals.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/delegationsFromAddressHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/delegationsFromAddressHistory.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/delegatorHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/delegatorHistory.ts -------------------------------------------------------------------------------- /modules/gql/queries/subgraph/lastVotedArbitrum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/queries/subgraph/lastVotedArbitrum.ts -------------------------------------------------------------------------------- /modules/gql/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/gql/types/index.d.ts -------------------------------------------------------------------------------- /modules/home/api/fetchLandingPageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/api/fetchLandingPageData.ts -------------------------------------------------------------------------------- /modules/home/components/CirclesBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/CirclesBackground.tsx -------------------------------------------------------------------------------- /modules/home/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/Footer.tsx -------------------------------------------------------------------------------- /modules/home/components/GovernanceStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/GovernanceStats.tsx -------------------------------------------------------------------------------- /modules/home/components/InformationParticipateMakerGovernance/InfoPoints.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/InformationParticipateMakerGovernance/InfoPoints.tsx -------------------------------------------------------------------------------- /modules/home/components/PlayButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/PlayButton.tsx -------------------------------------------------------------------------------- /modules/home/components/PollsOverviewLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/PollsOverviewLanding.tsx -------------------------------------------------------------------------------- /modules/home/components/ResourcesLanding/ResourcesLanding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/ResourcesLanding/ResourcesLanding.tsx -------------------------------------------------------------------------------- /modules/home/components/ResourcesLanding/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/ResourcesLanding/resources.ts -------------------------------------------------------------------------------- /modules/home/components/ViewMore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/components/ViewMore.tsx -------------------------------------------------------------------------------- /modules/home/data/bannerContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/data/bannerContent.json -------------------------------------------------------------------------------- /modules/home/data/forumPosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/data/forumPosts.json -------------------------------------------------------------------------------- /modules/home/types/participation.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/home/types/participation.d.ts -------------------------------------------------------------------------------- /modules/migration/components/ConnectWallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/ConnectWallet.tsx -------------------------------------------------------------------------------- /modules/migration/components/DelegateContractInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/DelegateContractInfo.tsx -------------------------------------------------------------------------------- /modules/migration/components/DelegateExpirationOverviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/DelegateExpirationOverviewCard.tsx -------------------------------------------------------------------------------- /modules/migration/components/MigrationInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/MigrationInfo.tsx -------------------------------------------------------------------------------- /modules/migration/components/MigrationSteps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/MigrationSteps.tsx -------------------------------------------------------------------------------- /modules/migration/components/NewAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/NewAddress.tsx -------------------------------------------------------------------------------- /modules/migration/components/NewAddressError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/NewAddressError.tsx -------------------------------------------------------------------------------- /modules/migration/components/NewAddressInitial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/NewAddressInitial.tsx -------------------------------------------------------------------------------- /modules/migration/components/NewAddressSuccess.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/NewAddressSuccess.tsx -------------------------------------------------------------------------------- /modules/migration/components/NewDelegateContract.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/components/NewDelegateContract.tsx -------------------------------------------------------------------------------- /modules/migration/delegateAddressLinks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/delegateAddressLinks.ts -------------------------------------------------------------------------------- /modules/migration/helpers/expirationChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/helpers/expirationChecks.ts -------------------------------------------------------------------------------- /modules/migration/hooks/useLinkedDelegateInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/hooks/useLinkedDelegateInfo.tsx -------------------------------------------------------------------------------- /modules/migration/steps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/migration/steps.ts -------------------------------------------------------------------------------- /modules/mkr/components/Deposit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/components/Deposit.tsx -------------------------------------------------------------------------------- /modules/mkr/components/MKRInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/components/MKRInput.tsx -------------------------------------------------------------------------------- /modules/mkr/components/MkrLiquiditySidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/components/MkrLiquiditySidebar.tsx -------------------------------------------------------------------------------- /modules/mkr/components/Withdraw.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/components/Withdraw.tsx -------------------------------------------------------------------------------- /modules/mkr/components/__tests__/MKRInput.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/components/__tests__/MKRInput.spec.tsx -------------------------------------------------------------------------------- /modules/mkr/helpers/getMKRVotingWeight.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/helpers/getMKRVotingWeight.spec.ts -------------------------------------------------------------------------------- /modules/mkr/helpers/getMKRVotingWeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/helpers/getMKRVotingWeight.ts -------------------------------------------------------------------------------- /modules/mkr/hooks/useFree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/hooks/useFree.ts -------------------------------------------------------------------------------- /modules/mkr/hooks/useLock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/hooks/useLock.ts -------------------------------------------------------------------------------- /modules/mkr/hooks/useLockedMkr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/hooks/useLockedMkr.ts -------------------------------------------------------------------------------- /modules/mkr/hooks/useMKRVotingWeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/hooks/useMKRVotingWeight.ts -------------------------------------------------------------------------------- /modules/mkr/hooks/useMkrBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/hooks/useMkrBalance.ts -------------------------------------------------------------------------------- /modules/mkr/hooks/useMkrDelegatedByUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/hooks/useMkrDelegatedByUser.ts -------------------------------------------------------------------------------- /modules/mkr/hooks/useMkrDelegationsFromUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/hooks/useMkrDelegationsFromUser.ts -------------------------------------------------------------------------------- /modules/mkr/hooks/useOldChiefFree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/mkr/hooks/useOldChiefFree.ts -------------------------------------------------------------------------------- /modules/polling/api/__tests__/fetchPolls.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/__tests__/fetchPolls.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/__tests__/fetchTallyApproval.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/__tests__/fetchTallyApproval.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/__tests__/fetchTallyCombined.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/__tests__/fetchTallyCombined.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/__tests__/fetchTallyMajority.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/__tests__/fetchTallyMajority.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/__tests__/fetchTallyPlurality.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/__tests__/fetchTallyPlurality.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/__tests__/fetchTallyRanked.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/__tests__/fetchTallyRanked.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/__tests__/filterPollList.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/__tests__/filterPollList.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/__tests__/sortPollList.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/__tests__/sortPollList.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchAddressPollVoteHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchAddressPollVoteHistory.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchAllCurrentVotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchAllCurrentVotes.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchLastPollvote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchLastPollvote.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchPollBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchPollBy.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchPollMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchPollMetadata.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchPollTally.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchPollTally.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchPollingPageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchPollingPageData.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchPolls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchPolls.ts -------------------------------------------------------------------------------- /modules/polling/api/fetchVotesByAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/fetchVotesByAddress.ts -------------------------------------------------------------------------------- /modules/polling/api/getArbitrumPollingContractRelayProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/getArbitrumPollingContractRelayProvider.ts -------------------------------------------------------------------------------- /modules/polling/api/getArbitrumRelaySigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/getArbitrumRelaySigner.ts -------------------------------------------------------------------------------- /modules/polling/api/getPollTags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/getPollTags.ts -------------------------------------------------------------------------------- /modules/polling/api/getRelayerBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/getRelayerBalance.ts -------------------------------------------------------------------------------- /modules/polling/api/getRelayerTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/getRelayerTx.ts -------------------------------------------------------------------------------- /modules/polling/api/mocks/addressInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/mocks/addressInfo.json -------------------------------------------------------------------------------- /modules/polling/api/mocks/ballot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/mocks/ballot.json -------------------------------------------------------------------------------- /modules/polling/api/mocks/pollList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/mocks/pollList.ts -------------------------------------------------------------------------------- /modules/polling/api/mocks/polls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/mocks/polls.json -------------------------------------------------------------------------------- /modules/polling/api/mocks/tally.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/mocks/tally.json -------------------------------------------------------------------------------- /modules/polling/api/mocks/vote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/mocks/vote.json -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/__tests__/approval.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/__tests__/approval.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/__tests__/comparison.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/__tests__/comparison.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/__tests__/default.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/__tests__/default.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/__tests__/instantRunoff.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/__tests__/instantRunoff.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/__tests__/majority.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/__tests__/majority.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/__tests__/plurality.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/__tests__/plurality.spec.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/approval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/approval.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/comparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/comparison.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/default.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/instantRunoff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/instantRunoff.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/majority.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/majority.ts -------------------------------------------------------------------------------- /modules/polling/api/victory_conditions/plurality.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/api/victory_conditions/plurality.ts -------------------------------------------------------------------------------- /modules/polling/components/BallotPollBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/BallotPollBar.tsx -------------------------------------------------------------------------------- /modules/polling/components/ChoiceSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/ChoiceSummary.tsx -------------------------------------------------------------------------------- /modules/polling/components/LastVoted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/LastVoted.tsx -------------------------------------------------------------------------------- /modules/polling/components/MobileVoteSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/MobileVoteSheet.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollCategoryTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollCategoryTag.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollCreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollCreateModal.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollMarkdownEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollMarkdownEditor.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollOverviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollOverviewCard.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollOverviewCard/PollVoteTypeIndicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollOverviewCard/PollVoteTypeIndicator.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollVoteHistoryItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollVoteHistoryItem.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollVoteHistoryList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollVoteHistoryList.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollVotingStatus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollVotingStatus.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollWinningOptionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollWinningOptionBox.tsx -------------------------------------------------------------------------------- /modules/polling/components/PollingParticipationOverview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/PollingParticipationOverview.tsx -------------------------------------------------------------------------------- /modules/polling/components/ShareVotesModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/ShareVotesModal.tsx -------------------------------------------------------------------------------- /modules/polling/components/SkyPollOverviewCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/SkyPollOverviewCard.tsx -------------------------------------------------------------------------------- /modules/polling/components/SkyPollWinningOptionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/SkyPollWinningOptionBox.tsx -------------------------------------------------------------------------------- /modules/polling/components/SkyVoteBreakdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/SkyVoteBreakdown.tsx -------------------------------------------------------------------------------- /modules/polling/components/SkyVoteWeightVisual.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/SkyVoteWeightVisual.tsx -------------------------------------------------------------------------------- /modules/polling/components/SkyVotesByAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/SkyVotesByAddress.tsx -------------------------------------------------------------------------------- /modules/polling/components/VoteBreakdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/VoteBreakdown.tsx -------------------------------------------------------------------------------- /modules/polling/components/VoteWeightVisual.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/VoteWeightVisual.tsx -------------------------------------------------------------------------------- /modules/polling/components/VotedOption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/VotedOption.tsx -------------------------------------------------------------------------------- /modules/polling/components/VotesByAddress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/VotesByAddress.tsx -------------------------------------------------------------------------------- /modules/polling/components/VotingWeight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/VotingWeight.tsx -------------------------------------------------------------------------------- /modules/polling/components/YesNoAbstainBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/YesNoAbstainBar.tsx -------------------------------------------------------------------------------- /modules/polling/components/__mocks__/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/__mocks__/categories.json -------------------------------------------------------------------------------- /modules/polling/components/__tests__/PollVoteHistoryItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/__tests__/PollVoteHistoryItem.test.tsx -------------------------------------------------------------------------------- /modules/polling/components/__tests__/VotesByAddress.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/__tests__/VotesByAddress.test.tsx -------------------------------------------------------------------------------- /modules/polling/components/filters/CategoryFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/filters/CategoryFilter.tsx -------------------------------------------------------------------------------- /modules/polling/components/filters/DateFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/filters/DateFilter.tsx -------------------------------------------------------------------------------- /modules/polling/components/filters/PollTypeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/filters/PollTypeFilter.tsx -------------------------------------------------------------------------------- /modules/polling/components/filters/PollsSort.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/filters/PollsSort.tsx -------------------------------------------------------------------------------- /modules/polling/components/filters/StatusFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/filters/StatusFilter.tsx -------------------------------------------------------------------------------- /modules/polling/components/poll-vote-input/ChooseFreeSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/poll-vote-input/ChooseFreeSelect.tsx -------------------------------------------------------------------------------- /modules/polling/components/poll-vote-input/QuickVote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/poll-vote-input/QuickVote.tsx -------------------------------------------------------------------------------- /modules/polling/components/poll-vote-input/RankedChoiceSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/poll-vote-input/RankedChoiceSelect.tsx -------------------------------------------------------------------------------- /modules/polling/components/poll-vote-input/SingleSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/poll-vote-input/SingleSelect.tsx -------------------------------------------------------------------------------- /modules/polling/components/poll-vote-input/VoteBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/poll-vote-input/VoteBox.tsx -------------------------------------------------------------------------------- /modules/polling/components/review/ActivePollsBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/review/ActivePollsBox.tsx -------------------------------------------------------------------------------- /modules/polling/components/review/ReviewBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/review/ReviewBox.tsx -------------------------------------------------------------------------------- /modules/polling/components/vote-summary/ListVoteSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/vote-summary/ListVoteSummary.tsx -------------------------------------------------------------------------------- /modules/polling/components/vote-summary/PluralityVoteSummary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/components/vote-summary/PluralityVoteSummary.tsx -------------------------------------------------------------------------------- /modules/polling/context/BallotContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/context/BallotContext.tsx -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/__helpers__/poll-327.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/__helpers__/poll-327.js -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/__helpers__/poll-327.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/__helpers__/poll-327.md -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/__helpers__/poll-431.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/__helpers__/poll-431.js -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/__helpers__/poll-431.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/__helpers__/poll-431.md -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/filterPolls.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/filterPolls.spec.ts -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/getCategories.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/getCategories.spec.ts -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/parsePollMetadata.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/parsePollMetadata.spec.ts -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/parsePollOptions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/parsePollOptions.spec.ts -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/validatePollParameters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/validatePollParameters.spec.ts -------------------------------------------------------------------------------- /modules/polling/helpers/__tests__/validator.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/__tests__/validator.spec.ts -------------------------------------------------------------------------------- /modules/polling/helpers/ballotIncludesAlreadyVoted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/ballotIncludesAlreadyVoted.ts -------------------------------------------------------------------------------- /modules/polling/helpers/filterPolls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/filterPolls.ts -------------------------------------------------------------------------------- /modules/polling/helpers/getCategories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/getCategories.ts -------------------------------------------------------------------------------- /modules/polling/helpers/getExecutiveVotingWeightCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/getExecutiveVotingWeightCopy.ts -------------------------------------------------------------------------------- /modules/polling/helpers/getPollTally.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/getPollTally.ts -------------------------------------------------------------------------------- /modules/polling/helpers/getPollingVotingWeightCopy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/getPollingVotingWeightCopy.ts -------------------------------------------------------------------------------- /modules/polling/helpers/getVoteColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/getVoteColor.ts -------------------------------------------------------------------------------- /modules/polling/helpers/hasMkrRequiredVotingWeight.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/hasMkrRequiredVotingWeight.ts -------------------------------------------------------------------------------- /modules/polling/helpers/isValidRelayerTxIdParam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/isValidRelayerTxIdParam.ts -------------------------------------------------------------------------------- /modules/polling/helpers/parsePollMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/parsePollMetadata.ts -------------------------------------------------------------------------------- /modules/polling/helpers/parsePollOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/parsePollOptions.ts -------------------------------------------------------------------------------- /modules/polling/helpers/parseRawOptionId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/parseRawOptionId.ts -------------------------------------------------------------------------------- /modules/polling/helpers/recentlyUsedGaslessVotingCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/recentlyUsedGaslessVotingCheck.ts -------------------------------------------------------------------------------- /modules/polling/helpers/relayerCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/relayerCredentials.ts -------------------------------------------------------------------------------- /modules/polling/helpers/sortPolls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/sortPolls.ts -------------------------------------------------------------------------------- /modules/polling/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/utils.ts -------------------------------------------------------------------------------- /modules/polling/helpers/validatePollParameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/validatePollParameters.ts -------------------------------------------------------------------------------- /modules/polling/helpers/validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/helpers/validator.ts -------------------------------------------------------------------------------- /modules/polling/hooks/useAllUserVotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/hooks/useAllUserVotes.ts -------------------------------------------------------------------------------- /modules/polling/hooks/usePollCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/hooks/usePollCreate.ts -------------------------------------------------------------------------------- /modules/polling/hooks/usePollTally.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/hooks/usePollTally.ts -------------------------------------------------------------------------------- /modules/polling/hooks/useSkyPollTally.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/hooks/useSkyPollTally.ts -------------------------------------------------------------------------------- /modules/polling/polling.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/polling.constants.ts -------------------------------------------------------------------------------- /modules/polling/stores/polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/stores/polls.ts -------------------------------------------------------------------------------- /modules/polling/types/ballot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/ballot.d.ts -------------------------------------------------------------------------------- /modules/polling/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/index.ts -------------------------------------------------------------------------------- /modules/polling/types/instantRunoff.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/instantRunoff.d.ts -------------------------------------------------------------------------------- /modules/polling/types/poll.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/poll.d.ts -------------------------------------------------------------------------------- /modules/polling/types/pollSpock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/pollSpock.d.ts -------------------------------------------------------------------------------- /modules/polling/types/pollTally.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/pollTally.d.ts -------------------------------------------------------------------------------- /modules/polling/types/pollVoteHistory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/pollVoteHistory.d.ts -------------------------------------------------------------------------------- /modules/polling/types/pollVoteType.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/pollVoteType.d.ts -------------------------------------------------------------------------------- /modules/polling/types/pollsResponse.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/polling/types/pollsResponse.d.ts -------------------------------------------------------------------------------- /modules/tags/constants/delegates-tags-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/tags/constants/delegates-tags-definitions.json -------------------------------------------------------------------------------- /modules/tags/constants/poll-tags-definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/tags/constants/poll-tags-definitions.json -------------------------------------------------------------------------------- /modules/tags/constants/poll-tags-mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/tags/constants/poll-tags-mapping.json -------------------------------------------------------------------------------- /modules/wagmi/config/config.default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/wagmi/config/config.default.ts -------------------------------------------------------------------------------- /modules/wagmi/config/config.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/wagmi/config/config.e2e.ts -------------------------------------------------------------------------------- /modules/wagmi/config/testTenderlyChain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/wagmi/config/testTenderlyChain.ts -------------------------------------------------------------------------------- /modules/web3/api/getChiefApprovals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/api/getChiefApprovals.ts -------------------------------------------------------------------------------- /modules/web3/api/getSpellExecuationDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/api/getSpellExecuationDate.ts -------------------------------------------------------------------------------- /modules/web3/api/getSpellScheduledDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/api/getSpellScheduledDate.ts -------------------------------------------------------------------------------- /modules/web3/api/validateAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/api/validateAddress.ts -------------------------------------------------------------------------------- /modules/web3/components/AccountNotConnected.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/components/AccountNotConnected.tsx -------------------------------------------------------------------------------- /modules/web3/components/ConnectNetworkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/components/ConnectNetworkButton.tsx -------------------------------------------------------------------------------- /modules/web3/components/ConnectWalletButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/components/ConnectWalletButton.tsx -------------------------------------------------------------------------------- /modules/web3/components/EtherscanLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/components/EtherscanLink.tsx -------------------------------------------------------------------------------- /modules/web3/components/NetworkAlertModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/components/NetworkAlertModal.tsx -------------------------------------------------------------------------------- /modules/web3/constants/addresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/constants/addresses.ts -------------------------------------------------------------------------------- /modules/web3/constants/chainID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/constants/chainID.ts -------------------------------------------------------------------------------- /modules/web3/constants/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/constants/networks.ts -------------------------------------------------------------------------------- /modules/web3/constants/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/constants/tokens.ts -------------------------------------------------------------------------------- /modules/web3/constants/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/constants/transaction.ts -------------------------------------------------------------------------------- /modules/web3/constants/wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/constants/wallets.ts -------------------------------------------------------------------------------- /modules/web3/helpers/chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/chain.ts -------------------------------------------------------------------------------- /modules/web3/helpers/contract-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/contract-info.json -------------------------------------------------------------------------------- /modules/web3/helpers/ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/ens.ts -------------------------------------------------------------------------------- /modules/web3/helpers/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/errors.ts -------------------------------------------------------------------------------- /modules/web3/helpers/fetchGasPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/fetchGasPrice.ts -------------------------------------------------------------------------------- /modules/web3/helpers/getEtherscanLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/getEtherscanLink.ts -------------------------------------------------------------------------------- /modules/web3/helpers/getGaslessTransaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/getGaslessTransaction.ts -------------------------------------------------------------------------------- /modules/web3/helpers/getPublicClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/getPublicClient.ts -------------------------------------------------------------------------------- /modules/web3/helpers/networks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/networks.ts -------------------------------------------------------------------------------- /modules/web3/helpers/signTypedBallotData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/signTypedBallotData.ts -------------------------------------------------------------------------------- /modules/web3/helpers/tokenNameToConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/tokenNameToConfig.ts -------------------------------------------------------------------------------- /modules/web3/helpers/verifyTypedSignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/helpers/verifyTypedSignature.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useApproveUnlimitedToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useApproveUnlimitedToken.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useDaiSavingsRate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useDaiSavingsRate.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useGasPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useGasPrice.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useSystemSurplus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useSystemSurplus.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useSystemWideDebtCeiling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useSystemWideDebtCeiling.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useTokenAllowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useTokenAllowance.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useTokenBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useTokenBalance.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useTotalDai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useTotalDai.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useTotalSupply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useTotalSupply.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useWaitForSafeTxHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useWaitForSafeTxHash.ts -------------------------------------------------------------------------------- /modules/web3/hooks/useWriteContractFlow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/hooks/useWriteContractFlow.ts -------------------------------------------------------------------------------- /modules/web3/stores/__tests__/transactions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/stores/__tests__/transactions.spec.ts -------------------------------------------------------------------------------- /modules/web3/stores/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/stores/transactions.ts -------------------------------------------------------------------------------- /modules/web3/types/chain.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/types/chain.d.ts -------------------------------------------------------------------------------- /modules/web3/types/hooks.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/types/hooks.d.ts -------------------------------------------------------------------------------- /modules/web3/types/tokens.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/types/tokens.d.ts -------------------------------------------------------------------------------- /modules/web3/types/transaction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/modules/web3/types/transaction.d.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/_error.tsx -------------------------------------------------------------------------------- /pages/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/account.tsx -------------------------------------------------------------------------------- /pages/address/[address]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/address/[address]/index.tsx -------------------------------------------------------------------------------- /pages/api-docs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api-docs/index.tsx -------------------------------------------------------------------------------- /pages/api/address/[address]/delegated-to.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/address/[address]/delegated-to.ts -------------------------------------------------------------------------------- /pages/api/address/[address]/delegations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/address/[address]/delegations.ts -------------------------------------------------------------------------------- /pages/api/address/[address]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/address/[address]/index.ts -------------------------------------------------------------------------------- /pages/api/address/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/address/stats.ts -------------------------------------------------------------------------------- /pages/api/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/auth.ts -------------------------------------------------------------------------------- /pages/api/cache/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/cache/info.ts -------------------------------------------------------------------------------- /pages/api/cache/invalidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/cache/invalidate.ts -------------------------------------------------------------------------------- /pages/api/delegates/[address]/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/delegates/[address]/info.ts -------------------------------------------------------------------------------- /pages/api/delegates/delegation-history/[address].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/delegates/delegation-history/[address].ts -------------------------------------------------------------------------------- /pages/api/delegates/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/delegates/info.ts -------------------------------------------------------------------------------- /pages/api/delegates/v1/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/delegates/v1/index.ts -------------------------------------------------------------------------------- /pages/api/delegates/v2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/delegates/v2/index.ts -------------------------------------------------------------------------------- /pages/api/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/doc.ts -------------------------------------------------------------------------------- /pages/api/executive/[proposal-id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/executive/[proposal-id].ts -------------------------------------------------------------------------------- /pages/api/executive/analyze-spell/[address].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/executive/analyze-spell/[address].ts -------------------------------------------------------------------------------- /pages/api/executive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/executive/index.ts -------------------------------------------------------------------------------- /pages/api/executive/supporters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/executive/supporters.ts -------------------------------------------------------------------------------- /pages/api/generate-test-signature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/generate-test-signature.ts -------------------------------------------------------------------------------- /pages/api/github-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/github-tokens.ts -------------------------------------------------------------------------------- /pages/api/migration/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/migration/link.ts -------------------------------------------------------------------------------- /pages/api/polling/[poll-id-or-slug].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/[poll-id-or-slug].ts -------------------------------------------------------------------------------- /pages/api/polling/__tests__/vote.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/__tests__/vote.spec.ts -------------------------------------------------------------------------------- /pages/api/polling/precheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/precheck.ts -------------------------------------------------------------------------------- /pages/api/polling/relayer-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/relayer-balance.ts -------------------------------------------------------------------------------- /pages/api/polling/relayer-tx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/relayer-tx.ts -------------------------------------------------------------------------------- /pages/api/polling/tally/[poll-id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/tally/[poll-id].ts -------------------------------------------------------------------------------- /pages/api/polling/v1/all-polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/v1/all-polls.ts -------------------------------------------------------------------------------- /pages/api/polling/v2/active-poll-ids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/v2/active-poll-ids.ts -------------------------------------------------------------------------------- /pages/api/polling/v2/all-polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/v2/all-polls.ts -------------------------------------------------------------------------------- /pages/api/polling/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/polling/vote.ts -------------------------------------------------------------------------------- /pages/api/sky/executives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/sky/executives.ts -------------------------------------------------------------------------------- /pages/api/sky/executives/[proposal-id-or-key].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/sky/executives/[proposal-id-or-key].ts -------------------------------------------------------------------------------- /pages/api/sky/executives/supporters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/sky/executives/supporters.ts -------------------------------------------------------------------------------- /pages/api/sky/hat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/sky/hat.ts -------------------------------------------------------------------------------- /pages/api/sky/polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/sky/polls.ts -------------------------------------------------------------------------------- /pages/api/sky/polls/[poll-id-or-slug].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/sky/polls/[poll-id-or-slug].ts -------------------------------------------------------------------------------- /pages/api/sky/polls/tally/[poll-id].ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/api/sky/polls/tally/[poll-id].ts -------------------------------------------------------------------------------- /pages/custom-spell/[address].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/custom-spell/[address].tsx -------------------------------------------------------------------------------- /pages/custom-spell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/custom-spell/index.tsx -------------------------------------------------------------------------------- /pages/dashboard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/dashboard/index.tsx -------------------------------------------------------------------------------- /pages/delegates/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/delegates/index.tsx -------------------------------------------------------------------------------- /pages/executive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/executive.tsx -------------------------------------------------------------------------------- /pages/executive/[proposal-id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/executive/[proposal-id].tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/legacy-executive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/legacy-executive.tsx -------------------------------------------------------------------------------- /pages/legacy-polling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/legacy-polling.tsx -------------------------------------------------------------------------------- /pages/legacy-polling/[poll-hash].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/legacy-polling/[poll-hash].tsx -------------------------------------------------------------------------------- /pages/polling.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/polling.tsx -------------------------------------------------------------------------------- /pages/polling/[poll-hash].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/polling/[poll-hash].tsx -------------------------------------------------------------------------------- /pages/polling/review.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/polling/review.tsx -------------------------------------------------------------------------------- /pages/sky-executive/[proposal-id].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/sky-executive/[proposal-id].tsx -------------------------------------------------------------------------------- /pages/sky-polling/[poll-hash].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/sky-polling/[poll-hash].tsx -------------------------------------------------------------------------------- /pages/terms.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pages/terms.tsx -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /playwright/delegates.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/delegates.spec.ts -------------------------------------------------------------------------------- /playwright/executive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/executive.spec.ts -------------------------------------------------------------------------------- /playwright/fixtures/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/fixtures/base.ts -------------------------------------------------------------------------------- /playwright/fixtures/delegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/fixtures/delegate.ts -------------------------------------------------------------------------------- /playwright/fixtures/executive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/fixtures/executive.ts -------------------------------------------------------------------------------- /playwright/fixtures/polling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/fixtures/polling.ts -------------------------------------------------------------------------------- /playwright/fixtures/sky-executive-detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/fixtures/sky-executive-detail.ts -------------------------------------------------------------------------------- /playwright/fixtures/sky-executive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/fixtures/sky-executive.ts -------------------------------------------------------------------------------- /playwright/fixtures/sky-polling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/fixtures/sky-polling.ts -------------------------------------------------------------------------------- /playwright/fixtures/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/fixtures/wallet.ts -------------------------------------------------------------------------------- /playwright/forkVnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/forkVnet.ts -------------------------------------------------------------------------------- /playwright/helpers/delegateMkr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/helpers/delegateMkr.ts -------------------------------------------------------------------------------- /playwright/helpers/depositMkr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/helpers/depositMkr.ts -------------------------------------------------------------------------------- /playwright/legacy-executives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/legacy-executives.spec.ts -------------------------------------------------------------------------------- /playwright/legacy-polling.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/legacy-polling.spec.ts -------------------------------------------------------------------------------- /playwright/mock-rpc-call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/mock-rpc-call.ts -------------------------------------------------------------------------------- /playwright/polling.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/polling.spec.ts -------------------------------------------------------------------------------- /playwright/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/shared.ts -------------------------------------------------------------------------------- /playwright/sky-executive-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/sky-executive-detail.spec.ts -------------------------------------------------------------------------------- /playwright/sky-poll-detail.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/sky-poll-detail.spec.ts -------------------------------------------------------------------------------- /playwright/wallet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/playwright/wallet.spec.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/assets/bg_dark_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/bg_dark_medium.jpeg -------------------------------------------------------------------------------- /public/assets/bg_footer_dark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/bg_footer_dark.jpeg -------------------------------------------------------------------------------- /public/assets/bg_footer_light.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/bg_footer_light.jpeg -------------------------------------------------------------------------------- /public/assets/bg_medium.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/bg_medium.jpeg -------------------------------------------------------------------------------- /public/assets/empty-profile-picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/empty-profile-picture.svg -------------------------------------------------------------------------------- /public/assets/maker_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/maker_icon.png -------------------------------------------------------------------------------- /public/assets/maker_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/maker_logo.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_1.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_2.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_3.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_4.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_5.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_6.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_7.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_8.svg -------------------------------------------------------------------------------- /public/assets/resource_icon_9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/resource_icon_9.svg -------------------------------------------------------------------------------- /public/assets/sky_logo_outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/sky_logo_outline.svg -------------------------------------------------------------------------------- /public/assets/success-end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/success-end.png -------------------------------------------------------------------------------- /public/assets/switch-account-metamask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/assets/switch-account-metamask.gif -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/home/participation/clean-money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/home/participation/clean-money.png -------------------------------------------------------------------------------- /public/home/participation/improve-participation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/home/participation/improve-participation.png -------------------------------------------------------------------------------- /public/home/understand-governance/00_visual_how_to_participate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/home/understand-governance/00_visual_how_to_participate.png -------------------------------------------------------------------------------- /public/maker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/maker.svg -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/seo/delegates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/public/seo/delegates.png -------------------------------------------------------------------------------- /scripts/fetchTags.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/scripts/fetchTags.mjs -------------------------------------------------------------------------------- /scripts/generate_pr_description.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/scripts/generate_pr_description.sh -------------------------------------------------------------------------------- /scripts/test-sky-executive-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/scripts/test-sky-executive-api.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/server.js -------------------------------------------------------------------------------- /tenderlyTestnetData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/tenderlyTestnetData.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/vitest.config.mts -------------------------------------------------------------------------------- /wagmi.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/governance-portal-v2/HEAD/wagmi.config.ts --------------------------------------------------------------------------------