├── .dependency-cruiser.js ├── .env.local.sample ├── .eslintignore ├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ ├── autoapprove.yml │ ├── chromatic.yml │ ├── depcruise.yml │ ├── eslint.yml │ ├── nightly-merge.yml │ └── prettier.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .prettierignore ├── .prettierrc ├── .storybook ├── main.js └── preview.js ├── .stylelintrc.json ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── elf-council-dev-setup.png ├── jest-environment-jsdom.js ├── jest.config.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── airdrop.tsx ├── api │ └── hello.ts ├── delegate.tsx ├── gsc-overview.tsx ├── gsc-proposals.tsx ├── index.tsx ├── landing.tsx ├── proposals.tsx ├── vesting-claim.tsx ├── zk │ ├── discord.tsx │ └── github.tsx └── zkclaim.tsx ├── postcss.config.js ├── public ├── assets │ ├── landing-page │ │ ├── bottom-left-glow.png │ │ ├── bottom-right-glow.png │ │ └── top-glow.png │ └── overview-page │ │ └── elfi-nft.png └── gov-favicon.ico ├── src ├── @types │ ├── @metamask │ │ └── jazzicon │ │ │ └── index.d.ts │ ├── global.d.ts │ └── helper.d.ts ├── base │ ├── Unpacked.ts │ ├── assertNever.ts │ ├── browser │ │ └── copyToClipboard.tsx │ ├── copyToClipboard.tsx │ ├── dates.ts │ ├── downloadFile.ts │ ├── formatWalletAddress.ts │ ├── isValidAddress.ts │ ├── math │ │ └── fixedPoint.ts │ ├── merkle.ts │ ├── numbers.ts │ └── time.ts ├── codemods │ └── convertTailwind.ts ├── commonwealth.ts ├── elf-council-addresses │ ├── README.md │ ├── index.ts │ └── testnet.addresses.json ├── elf-council-delegates │ ├── delegates.ts │ ├── goerli.delegates.json │ ├── mainnet.delegates.json │ └── testnet.delegates.json ├── elf-council-proposals │ └── index.ts ├── elf-council-tokenlist │ ├── index.ts │ ├── testnet.tokenlist.json │ └── types.ts ├── elf-etherchain │ └── fetchGasPrice.ts ├── elf-etherscan │ └── domain.ts ├── elf-snapshot │ ├── endpoints.ts │ └── queries │ │ └── proposals.ts ├── elf │ ├── contracts.ts │ ├── delegate │ │ └── isFeaturedDelegate.ts │ ├── featureFlag │ │ ├── featureFlag.ts │ │ └── useFeatureFlag.ts │ ├── getEthereumProviderLibrary.ts │ ├── merkle │ │ ├── MerkleProof.ts │ │ └── useMerkleInfo.ts │ ├── proposals │ │ └── VotingPower.ts │ ├── providers │ │ └── providers.ts │ ├── queryClient.ts │ ├── token │ │ ├── useTokenAllowance.ts │ │ └── useTokenBalanceOf.ts │ ├── urls.ts │ └── wallets │ │ └── connectors.ts ├── ethereum.ts ├── formatBalance.ts ├── getMetamaskJazziconSeed.ts ├── tailwind.output.css ├── test │ ├── helpers │ │ ├── deployAirdrop.ts │ │ ├── deployCoreVoting.ts │ │ ├── deployGSCVault.ts │ │ ├── deployGovernance.ts │ │ ├── deployLockingVault.ts │ │ ├── deployOptimisticRewards.ts │ │ ├── deployTimelock.ts │ │ ├── deployTreasury.ts │ │ ├── deployVestingVault.ts │ │ ├── deployVotingToken.ts │ │ ├── initializeGovernance.ts │ │ ├── testClaiming.ts │ │ └── testProposal.ts │ ├── interfaces │ │ └── Timelock.json │ └── snapshots.ts ├── twitter.ts ├── typechain-types │ ├── ElfNFT.ts │ ├── common.ts │ └── factories │ │ └── ElfNFT__factory.ts └── ui │ ├── airdrop │ ├── AirdropAlreadyClaimed │ │ ├── AirdropAlreadyClaimed.tsx │ │ ├── ClaimedAmountCard.tsx │ │ └── DelegatedCard.tsx │ ├── AirdropAmountCard │ │ └── AirdropAmountCard.tsx │ ├── AirdropPage │ │ ├── AirdropPage.tsx │ │ ├── LoadingAirdropCard.tsx │ │ └── NoAirdropCard.tsx │ ├── AirdropPreview │ │ ├── AirdropAmountCard.tsx │ │ └── AirdropPreview.tsx │ ├── ChooseDelegate │ │ └── ChooseDelegate.tsx │ ├── ClaimSuccessful │ │ ├── CallToActionCard.tsx │ │ └── ClaimSuccessful.tsx │ ├── DelegateInstructions │ │ └── DelegateInstructions.tsx │ ├── ReviewClaim │ │ └── ReviewTransaction.tsx │ ├── StartAirdropCard │ │ └── StartAirdropCard.tsx │ ├── StepCard │ │ └── StepCard.tsx │ ├── useClaimAndDepositAirdrop.ts │ ├── useClaimedAirdrop.ts │ └── useUnclaimedAirdrop.ts │ ├── app │ ├── Footer.tsx │ ├── Header.tsx │ ├── PageView.tsx │ └── Sidebar.tsx │ ├── base │ ├── BalanceWithLabel │ │ ├── BalanceWithLabel.stories.tsx │ │ └── BalanceWithLabel.tsx │ ├── Button │ │ ├── AnchorButton.stories.tsx │ │ ├── AnchorButton.tsx │ │ ├── Button.stories.tsx │ │ ├── Button.tsx │ │ ├── LinkButton.stories.tsx │ │ ├── LinkButton.tsx │ │ ├── PopoverButton.stories.tsx │ │ ├── PopoverButton.tsx │ │ └── styles.ts │ ├── Card │ │ ├── Card.stories.tsx │ │ ├── Card.tsx │ │ ├── CardHeader.stories.tsx │ │ ├── CardHeader.tsx │ │ ├── GradientCard.stories.tsx │ │ └── GradientCard.tsx │ ├── Dialog │ │ ├── CloseButton.tsx │ │ ├── Dialog.example.tsx │ │ ├── Dialog.stories.tsx │ │ └── Dialog.tsx │ ├── ElementIconCircle │ │ ├── ElementIconCircle.stories.tsx │ │ └── ElementIconCircle.tsx │ ├── ExternalLink │ │ └── ExternalLink.tsx │ ├── H1 │ │ ├── H1.stories.tsx │ │ └── H1.tsx │ ├── H2 │ │ ├── H2.stories.tsx │ │ └── H2.tsx │ ├── H3 │ │ ├── H3.stories.tsx │ │ └── H3.tsx │ ├── HashString.tsx │ ├── Input │ │ ├── TextInput.stories.tsx │ │ ├── TextInput.tsx │ │ ├── TokenInput.stories.tsx │ │ ├── TokenInput.tsx │ │ ├── useNumericInputValue.ts │ │ └── validateNumericInput.ts │ ├── InputValidationIcon.tsx │ ├── Intent.tsx │ ├── Label │ │ ├── Label.stories.tsx │ │ └── Label.tsx │ ├── LabeledStat │ │ ├── LabeledStat.stories.tsx │ │ └── LabeledStat.tsx │ ├── OutlinedSection │ │ ├── OutlinedSection.stories.tsx │ │ └── OutlinedSection.tsx │ ├── ProgressBar │ │ ├── ProgressBar.stories.tsx │ │ └── ProgressBar.tsx │ ├── Spinner │ │ ├── Spinner.stories.tsx │ │ └── Spinner.tsx │ ├── Steps │ │ ├── StepDivider.stories.tsx │ │ ├── StepDivider.tsx │ │ ├── StepItem.stories.tsx │ │ ├── StepItem.tsx │ │ ├── Steps.stories.tsx │ │ └── Steps.tsx │ ├── Tabs │ │ ├── Tabs.stories.tsx │ │ └── Tabs.tsx │ ├── Tag │ │ ├── Tag.stories.tsx │ │ └── Tag.tsx │ ├── Tooltip │ │ ├── Tooltip.module.css │ │ ├── Tooltip.stories.tsx │ │ └── Tooltip.tsx │ ├── Well │ │ ├── Well.stories.tsx │ │ └── Well.tsx │ ├── lockingVault │ │ └── useDeposited.ts │ ├── svg │ │ ├── CoinbaseIcon │ │ │ ├── CoinbaseIcon.tsx │ │ │ └── coinbasewallet.svg │ │ ├── CommonwealthIcon.tsx │ │ ├── CouncilLogo │ │ │ ├── CouncilLogo.tsx │ │ │ └── councilLogo.svg │ │ ├── DiscordIcon.tsx │ │ ├── ElementIcon │ │ │ ├── ElementIcon.tsx │ │ │ ├── elementIcon--light.svg │ │ │ └── elementIcon.svg │ │ ├── ElementLogo │ │ │ ├── ElementLogo.stories.tsx │ │ │ └── ElementLogo.tsx │ │ ├── EmptySpaceFace.tsx │ │ ├── GasIcon.tsx │ │ ├── GithubIcon.tsx │ │ ├── HomeIcon.tsx │ │ ├── MetaMaskIcon │ │ │ ├── MetaMaskIcon.tsx │ │ │ └── metaMaskIcon.svg │ │ ├── PoweredByCouncil.tsx │ │ ├── SparkleIcon.tsx │ │ ├── TelegramIcon.tsx │ │ ├── TwitterIcon.tsx │ │ ├── WalletConnectIcon │ │ │ ├── WalletConnectIcon.tsx │ │ │ └── walletConnectIcon.svg │ │ └── types.ts │ ├── tailwindBreakpoints.ts │ ├── token │ │ └── useSetTokenAllowance.ts │ ├── useFile.ts │ ├── useMouseTracking.ts │ ├── usePopperWithRefs.ts │ └── useWorker.ts │ ├── contracts │ ├── useChangeDelegation.tsx │ ├── useDelegationVesting.tsx │ ├── useDeposits.ts │ └── useElementTokenBalance.ts │ ├── delegate-vesting │ └── VestingDelegatePage.tsx │ ├── delegate │ ├── DelegateCard │ │ ├── CurrentDelegate.tsx │ │ ├── DelegateAddressInput.tsx │ │ ├── DelegateButton.tsx │ │ ├── DelegateCard.tsx │ │ └── WarningLabel.tsx │ ├── DelegatePage.tsx │ ├── DelegatesList │ │ ├── DelegateProfileRow.tsx │ │ ├── DelegatesList.tsx │ │ └── DetailedDelegateProfile.tsx │ ├── useDelegate.test.tsx │ ├── useDelegate.ts │ └── useDelegateVesting.ts │ ├── ethereum │ ├── epochBlocksByChainId.ts │ ├── useBlockAtTimestamp.tsx │ ├── useEnsName.tsx │ ├── useFormattedWalletAddress.ts │ ├── useGasPrice.ts │ ├── useLatestBlockNumber.tsx │ └── useResolvedEnsName.ts │ ├── gsc │ ├── GSCMemberProfileRow.tsx │ ├── GSCOverviewPage.tsx │ ├── JoinGSCButton.tsx │ ├── useCandidates.tsx │ ├── useGSCMembers.tsx │ ├── useGSCVotePowerThreshold.tsx │ └── useIsGSCMember.tsx │ ├── landing │ ├── Header.tsx │ ├── LandingPage.tsx │ └── SideBar.tsx │ ├── notifications │ └── Notifications.tsx │ ├── overview │ ├── ElfiverseBanner.tsx │ ├── NFTTokenContractAddresses.ts │ ├── OverviewPage.tsx │ ├── PortfolioCard.tsx │ ├── ProgressCircle.tsx │ ├── RewardsCard │ │ └── ClaimAndDelegateButton.tsx │ ├── RightBar.tsx │ ├── SummaryCard.tsx │ ├── SummaryCards.tsx │ ├── getNFTTokenContract.ts │ ├── getRecentDelegators.ts │ ├── useNFTTokenBalanceOf.ts │ └── useNumDelegates.ts │ ├── proposals │ ├── GSCMember.tsx │ ├── GSCProposalsDetailsCard.tsx │ ├── GSCProposalsPage.tsx │ ├── GSCVoteTally.tsx │ ├── ProposalDetailsCard.tsx │ ├── ProposalList │ │ ├── ProposalList.tsx │ │ ├── ProposalListItem.tsx │ │ ├── ProposalStatus.ts │ │ └── ProposalStatusIcon.tsx │ ├── ProposalsPage.tsx │ ├── StaleVotingPowerMessage.tsx │ ├── tooltipDefinitions.ts │ ├── useProposalExecuted.ts │ ├── useSnapshotProposals.ts │ └── useVotingPowerForProposal.ts │ ├── router │ ├── useParams.ts │ └── useRouterSteps.ts │ ├── signer │ └── useSigner.ts │ ├── voting │ ├── Ballot.ts │ ├── VotingBallotButton.tsx │ ├── tooltipDefinitions.ts │ ├── useBallot.ts │ ├── useLastVoteTransactionForAccount.ts │ ├── useLockingVaultBalance.ts │ ├── useLockingVaultVotingPower.ts │ ├── useQueryVotePower.ts │ ├── useVestingVaultVotingPower.ts │ ├── useVote.ts │ ├── useVotedEvents.ts │ ├── useVotingPowerForAccount.ts │ └── useVotingPowerForProtocol.tsx │ ├── wallet │ ├── ConnectWalletButton.tsx │ ├── ConnectWalletDialog.tsx │ ├── WalletJazzicon.tsx │ ├── useAddToWallet.ts │ └── useOnConnected.ts │ ├── zk │ ├── DiscordShareCard.tsx │ ├── EncryptionCard.tsx │ ├── EncryptionCard │ │ ├── HashSlider.tsx │ │ └── generateHashSeed.ts │ ├── GitHubShareCard.tsx │ ├── IntroCard.tsx │ ├── RadiantShieldIcon.tsx │ ├── ZKPage.tsx │ ├── constants.ts │ └── types.ts │ └── zkclaim │ ├── AlreadyClaimedCard.tsx │ ├── CallToActionCard.tsx │ ├── ChooseDelegateCard.tsx │ ├── ClaimAmountCard.tsx │ ├── DelegateInfoCard.tsx │ ├── EligibleCard.tsx │ ├── InlineElfiLabel.tsx │ ├── LookupCard.tsx │ ├── NoPassCard.tsx │ ├── NotEligibleCard.tsx │ ├── ShareCard.tsx │ ├── TransactionCard.tsx │ ├── ZKClaimPage.tsx │ ├── isValidKeyOrSecret.ts │ ├── useAddressScreening.ts │ ├── useAlreadyClaimed.ts │ ├── useClaimAndDelegate.ts │ ├── useClaimableAmount.ts │ └── useZKProof.ts ├── styles └── globals.css ├── svgr-template.js ├── tailwind.config.js ├── tsconfig.cjs.json └── tsconfig.json /.dependency-cruiser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.dependency-cruiser.js -------------------------------------------------------------------------------- /.env.local.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.env.local.sample -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/tailwind.output.css -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/autoapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.github/workflows/autoapprove.yml -------------------------------------------------------------------------------- /.github/workflows/chromatic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.github/workflows/chromatic.yml -------------------------------------------------------------------------------- /.github/workflows/depcruise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.github/workflows/depcruise.yml -------------------------------------------------------------------------------- /.github/workflows/eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.github/workflows/eslint.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.github/workflows/nightly-merge.yml -------------------------------------------------------------------------------- /.github/workflows/prettier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.github/workflows/prettier.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.prettierrc -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/README.md -------------------------------------------------------------------------------- /elf-council-dev-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/elf-council-dev-setup.png -------------------------------------------------------------------------------- /jest-environment-jsdom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/jest-environment-jsdom.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/jest.config.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/airdrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/airdrop.tsx -------------------------------------------------------------------------------- /pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/api/hello.ts -------------------------------------------------------------------------------- /pages/delegate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/delegate.tsx -------------------------------------------------------------------------------- /pages/gsc-overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/gsc-overview.tsx -------------------------------------------------------------------------------- /pages/gsc-proposals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/gsc-proposals.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/landing.tsx -------------------------------------------------------------------------------- /pages/proposals.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/proposals.tsx -------------------------------------------------------------------------------- /pages/vesting-claim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/vesting-claim.tsx -------------------------------------------------------------------------------- /pages/zk/discord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/zk/discord.tsx -------------------------------------------------------------------------------- /pages/zk/github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/zk/github.tsx -------------------------------------------------------------------------------- /pages/zkclaim.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/pages/zkclaim.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/assets/landing-page/bottom-left-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/public/assets/landing-page/bottom-left-glow.png -------------------------------------------------------------------------------- /public/assets/landing-page/bottom-right-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/public/assets/landing-page/bottom-right-glow.png -------------------------------------------------------------------------------- /public/assets/landing-page/top-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/public/assets/landing-page/top-glow.png -------------------------------------------------------------------------------- /public/assets/overview-page/elfi-nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/public/assets/overview-page/elfi-nft.png -------------------------------------------------------------------------------- /public/gov-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/public/gov-favicon.ico -------------------------------------------------------------------------------- /src/@types/@metamask/jazzicon/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/@types/@metamask/jazzicon/index.d.ts -------------------------------------------------------------------------------- /src/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/@types/global.d.ts -------------------------------------------------------------------------------- /src/@types/helper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/@types/helper.d.ts -------------------------------------------------------------------------------- /src/base/Unpacked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/Unpacked.ts -------------------------------------------------------------------------------- /src/base/assertNever.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/assertNever.ts -------------------------------------------------------------------------------- /src/base/browser/copyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/browser/copyToClipboard.tsx -------------------------------------------------------------------------------- /src/base/copyToClipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/copyToClipboard.tsx -------------------------------------------------------------------------------- /src/base/dates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/dates.ts -------------------------------------------------------------------------------- /src/base/downloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/downloadFile.ts -------------------------------------------------------------------------------- /src/base/formatWalletAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/formatWalletAddress.ts -------------------------------------------------------------------------------- /src/base/isValidAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/isValidAddress.ts -------------------------------------------------------------------------------- /src/base/math/fixedPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/math/fixedPoint.ts -------------------------------------------------------------------------------- /src/base/merkle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/merkle.ts -------------------------------------------------------------------------------- /src/base/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/numbers.ts -------------------------------------------------------------------------------- /src/base/time.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/base/time.ts -------------------------------------------------------------------------------- /src/codemods/convertTailwind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/codemods/convertTailwind.ts -------------------------------------------------------------------------------- /src/commonwealth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/commonwealth.ts -------------------------------------------------------------------------------- /src/elf-council-addresses/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-addresses/README.md -------------------------------------------------------------------------------- /src/elf-council-addresses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-addresses/index.ts -------------------------------------------------------------------------------- /src/elf-council-addresses/testnet.addresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-addresses/testnet.addresses.json -------------------------------------------------------------------------------- /src/elf-council-delegates/delegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-delegates/delegates.ts -------------------------------------------------------------------------------- /src/elf-council-delegates/goerli.delegates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-delegates/goerli.delegates.json -------------------------------------------------------------------------------- /src/elf-council-delegates/mainnet.delegates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-delegates/mainnet.delegates.json -------------------------------------------------------------------------------- /src/elf-council-delegates/testnet.delegates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-delegates/testnet.delegates.json -------------------------------------------------------------------------------- /src/elf-council-proposals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-proposals/index.ts -------------------------------------------------------------------------------- /src/elf-council-tokenlist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-tokenlist/index.ts -------------------------------------------------------------------------------- /src/elf-council-tokenlist/testnet.tokenlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-tokenlist/testnet.tokenlist.json -------------------------------------------------------------------------------- /src/elf-council-tokenlist/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-council-tokenlist/types.ts -------------------------------------------------------------------------------- /src/elf-etherchain/fetchGasPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-etherchain/fetchGasPrice.ts -------------------------------------------------------------------------------- /src/elf-etherscan/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-etherscan/domain.ts -------------------------------------------------------------------------------- /src/elf-snapshot/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-snapshot/endpoints.ts -------------------------------------------------------------------------------- /src/elf-snapshot/queries/proposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf-snapshot/queries/proposals.ts -------------------------------------------------------------------------------- /src/elf/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/contracts.ts -------------------------------------------------------------------------------- /src/elf/delegate/isFeaturedDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/delegate/isFeaturedDelegate.ts -------------------------------------------------------------------------------- /src/elf/featureFlag/featureFlag.ts: -------------------------------------------------------------------------------- 1 | export enum FeatureFlag { 2 | GSC = "GSC", 3 | } 4 | -------------------------------------------------------------------------------- /src/elf/featureFlag/useFeatureFlag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/featureFlag/useFeatureFlag.ts -------------------------------------------------------------------------------- /src/elf/getEthereumProviderLibrary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/getEthereumProviderLibrary.ts -------------------------------------------------------------------------------- /src/elf/merkle/MerkleProof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/merkle/MerkleProof.ts -------------------------------------------------------------------------------- /src/elf/merkle/useMerkleInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/merkle/useMerkleInfo.ts -------------------------------------------------------------------------------- /src/elf/proposals/VotingPower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/proposals/VotingPower.ts -------------------------------------------------------------------------------- /src/elf/providers/providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/providers/providers.ts -------------------------------------------------------------------------------- /src/elf/queryClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/queryClient.ts -------------------------------------------------------------------------------- /src/elf/token/useTokenAllowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/token/useTokenAllowance.ts -------------------------------------------------------------------------------- /src/elf/token/useTokenBalanceOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/token/useTokenBalanceOf.ts -------------------------------------------------------------------------------- /src/elf/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/urls.ts -------------------------------------------------------------------------------- /src/elf/wallets/connectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/elf/wallets/connectors.ts -------------------------------------------------------------------------------- /src/ethereum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ethereum.ts -------------------------------------------------------------------------------- /src/formatBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/formatBalance.ts -------------------------------------------------------------------------------- /src/getMetamaskJazziconSeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/getMetamaskJazziconSeed.ts -------------------------------------------------------------------------------- /src/tailwind.output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/tailwind.output.css -------------------------------------------------------------------------------- /src/test/helpers/deployAirdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployAirdrop.ts -------------------------------------------------------------------------------- /src/test/helpers/deployCoreVoting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployCoreVoting.ts -------------------------------------------------------------------------------- /src/test/helpers/deployGSCVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployGSCVault.ts -------------------------------------------------------------------------------- /src/test/helpers/deployGovernance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployGovernance.ts -------------------------------------------------------------------------------- /src/test/helpers/deployLockingVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployLockingVault.ts -------------------------------------------------------------------------------- /src/test/helpers/deployOptimisticRewards.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployOptimisticRewards.ts -------------------------------------------------------------------------------- /src/test/helpers/deployTimelock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployTimelock.ts -------------------------------------------------------------------------------- /src/test/helpers/deployTreasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployTreasury.ts -------------------------------------------------------------------------------- /src/test/helpers/deployVestingVault.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployVestingVault.ts -------------------------------------------------------------------------------- /src/test/helpers/deployVotingToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/deployVotingToken.ts -------------------------------------------------------------------------------- /src/test/helpers/initializeGovernance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/initializeGovernance.ts -------------------------------------------------------------------------------- /src/test/helpers/testClaiming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/testClaiming.ts -------------------------------------------------------------------------------- /src/test/helpers/testProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/helpers/testProposal.ts -------------------------------------------------------------------------------- /src/test/interfaces/Timelock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/interfaces/Timelock.json -------------------------------------------------------------------------------- /src/test/snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/test/snapshots.ts -------------------------------------------------------------------------------- /src/twitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/twitter.ts -------------------------------------------------------------------------------- /src/typechain-types/ElfNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/typechain-types/ElfNFT.ts -------------------------------------------------------------------------------- /src/typechain-types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/typechain-types/common.ts -------------------------------------------------------------------------------- /src/typechain-types/factories/ElfNFT__factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/typechain-types/factories/ElfNFT__factory.ts -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropAlreadyClaimed/AirdropAlreadyClaimed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropAlreadyClaimed/AirdropAlreadyClaimed.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropAlreadyClaimed/ClaimedAmountCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropAlreadyClaimed/ClaimedAmountCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropAlreadyClaimed/DelegatedCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropAlreadyClaimed/DelegatedCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropAmountCard/AirdropAmountCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropAmountCard/AirdropAmountCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropPage/AirdropPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropPage/AirdropPage.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropPage/LoadingAirdropCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropPage/LoadingAirdropCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropPage/NoAirdropCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropPage/NoAirdropCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropPreview/AirdropAmountCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropPreview/AirdropAmountCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/AirdropPreview/AirdropPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/AirdropPreview/AirdropPreview.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/ChooseDelegate/ChooseDelegate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/ChooseDelegate/ChooseDelegate.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/ClaimSuccessful/CallToActionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/ClaimSuccessful/CallToActionCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/ClaimSuccessful/ClaimSuccessful.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/ClaimSuccessful/ClaimSuccessful.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/DelegateInstructions/DelegateInstructions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/DelegateInstructions/DelegateInstructions.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/ReviewClaim/ReviewTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/ReviewClaim/ReviewTransaction.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/StartAirdropCard/StartAirdropCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/StartAirdropCard/StartAirdropCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/StepCard/StepCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/StepCard/StepCard.tsx -------------------------------------------------------------------------------- /src/ui/airdrop/useClaimAndDepositAirdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/useClaimAndDepositAirdrop.ts -------------------------------------------------------------------------------- /src/ui/airdrop/useClaimedAirdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/useClaimedAirdrop.ts -------------------------------------------------------------------------------- /src/ui/airdrop/useUnclaimedAirdrop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/airdrop/useUnclaimedAirdrop.ts -------------------------------------------------------------------------------- /src/ui/app/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/app/Footer.tsx -------------------------------------------------------------------------------- /src/ui/app/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/app/Header.tsx -------------------------------------------------------------------------------- /src/ui/app/PageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/app/PageView.tsx -------------------------------------------------------------------------------- /src/ui/app/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/app/Sidebar.tsx -------------------------------------------------------------------------------- /src/ui/base/BalanceWithLabel/BalanceWithLabel.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/BalanceWithLabel/BalanceWithLabel.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/BalanceWithLabel/BalanceWithLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/BalanceWithLabel/BalanceWithLabel.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/AnchorButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/AnchorButton.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/AnchorButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/AnchorButton.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/Button.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/Button.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/Button.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/LinkButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/LinkButton.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/LinkButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/LinkButton.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/PopoverButton.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/PopoverButton.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/PopoverButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/PopoverButton.tsx -------------------------------------------------------------------------------- /src/ui/base/Button/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Button/styles.ts -------------------------------------------------------------------------------- /src/ui/base/Card/Card.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Card/Card.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Card/Card.tsx -------------------------------------------------------------------------------- /src/ui/base/Card/CardHeader.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Card/CardHeader.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Card/CardHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Card/CardHeader.tsx -------------------------------------------------------------------------------- /src/ui/base/Card/GradientCard.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Card/GradientCard.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Card/GradientCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Card/GradientCard.tsx -------------------------------------------------------------------------------- /src/ui/base/Dialog/CloseButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Dialog/CloseButton.tsx -------------------------------------------------------------------------------- /src/ui/base/Dialog/Dialog.example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Dialog/Dialog.example.tsx -------------------------------------------------------------------------------- /src/ui/base/Dialog/Dialog.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Dialog/Dialog.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Dialog/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Dialog/Dialog.tsx -------------------------------------------------------------------------------- /src/ui/base/ElementIconCircle/ElementIconCircle.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/ElementIconCircle/ElementIconCircle.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/ElementIconCircle/ElementIconCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/ElementIconCircle/ElementIconCircle.tsx -------------------------------------------------------------------------------- /src/ui/base/ExternalLink/ExternalLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/ExternalLink/ExternalLink.tsx -------------------------------------------------------------------------------- /src/ui/base/H1/H1.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/H1/H1.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/H1/H1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/H1/H1.tsx -------------------------------------------------------------------------------- /src/ui/base/H2/H2.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/H2/H2.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/H2/H2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/H2/H2.tsx -------------------------------------------------------------------------------- /src/ui/base/H3/H3.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/H3/H3.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/H3/H3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/H3/H3.tsx -------------------------------------------------------------------------------- /src/ui/base/HashString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/HashString.tsx -------------------------------------------------------------------------------- /src/ui/base/Input/TextInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Input/TextInput.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Input/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Input/TextInput.tsx -------------------------------------------------------------------------------- /src/ui/base/Input/TokenInput.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Input/TokenInput.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Input/TokenInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Input/TokenInput.tsx -------------------------------------------------------------------------------- /src/ui/base/Input/useNumericInputValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Input/useNumericInputValue.ts -------------------------------------------------------------------------------- /src/ui/base/Input/validateNumericInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Input/validateNumericInput.ts -------------------------------------------------------------------------------- /src/ui/base/InputValidationIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/InputValidationIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/Intent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Intent.tsx -------------------------------------------------------------------------------- /src/ui/base/Label/Label.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Label/Label.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Label/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Label/Label.tsx -------------------------------------------------------------------------------- /src/ui/base/LabeledStat/LabeledStat.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/LabeledStat/LabeledStat.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/LabeledStat/LabeledStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/LabeledStat/LabeledStat.tsx -------------------------------------------------------------------------------- /src/ui/base/OutlinedSection/OutlinedSection.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/OutlinedSection/OutlinedSection.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/OutlinedSection/OutlinedSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/OutlinedSection/OutlinedSection.tsx -------------------------------------------------------------------------------- /src/ui/base/ProgressBar/ProgressBar.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/ProgressBar/ProgressBar.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/ProgressBar/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/ProgressBar/ProgressBar.tsx -------------------------------------------------------------------------------- /src/ui/base/Spinner/Spinner.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Spinner/Spinner.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Spinner/Spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Spinner/Spinner.tsx -------------------------------------------------------------------------------- /src/ui/base/Steps/StepDivider.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Steps/StepDivider.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Steps/StepDivider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Steps/StepDivider.tsx -------------------------------------------------------------------------------- /src/ui/base/Steps/StepItem.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Steps/StepItem.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Steps/StepItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Steps/StepItem.tsx -------------------------------------------------------------------------------- /src/ui/base/Steps/Steps.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Steps/Steps.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Steps/Steps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Steps/Steps.tsx -------------------------------------------------------------------------------- /src/ui/base/Tabs/Tabs.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Tabs/Tabs.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/ui/base/Tag/Tag.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Tag/Tag.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Tag/Tag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Tag/Tag.tsx -------------------------------------------------------------------------------- /src/ui/base/Tooltip/Tooltip.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Tooltip/Tooltip.module.css -------------------------------------------------------------------------------- /src/ui/base/Tooltip/Tooltip.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Tooltip/Tooltip.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /src/ui/base/Well/Well.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Well/Well.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/Well/Well.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/Well/Well.tsx -------------------------------------------------------------------------------- /src/ui/base/lockingVault/useDeposited.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/lockingVault/useDeposited.ts -------------------------------------------------------------------------------- /src/ui/base/svg/CoinbaseIcon/CoinbaseIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/CoinbaseIcon/CoinbaseIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/CoinbaseIcon/coinbasewallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/CoinbaseIcon/coinbasewallet.svg -------------------------------------------------------------------------------- /src/ui/base/svg/CommonwealthIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/CommonwealthIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/CouncilLogo/CouncilLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/CouncilLogo/CouncilLogo.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/CouncilLogo/councilLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/CouncilLogo/councilLogo.svg -------------------------------------------------------------------------------- /src/ui/base/svg/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/DiscordIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/ElementIcon/ElementIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/ElementIcon/ElementIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/ElementIcon/elementIcon--light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/ElementIcon/elementIcon--light.svg -------------------------------------------------------------------------------- /src/ui/base/svg/ElementIcon/elementIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/ElementIcon/elementIcon.svg -------------------------------------------------------------------------------- /src/ui/base/svg/ElementLogo/ElementLogo.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/ElementLogo/ElementLogo.stories.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/ElementLogo/ElementLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/ElementLogo/ElementLogo.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/EmptySpaceFace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/EmptySpaceFace.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/GasIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/GasIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/GithubIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/HomeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/HomeIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/MetaMaskIcon/MetaMaskIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/MetaMaskIcon/MetaMaskIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/MetaMaskIcon/metaMaskIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/MetaMaskIcon/metaMaskIcon.svg -------------------------------------------------------------------------------- /src/ui/base/svg/PoweredByCouncil.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/PoweredByCouncil.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/SparkleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/SparkleIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/TelegramIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/TelegramIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/TwitterIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/TwitterIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/WalletConnectIcon/WalletConnectIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/WalletConnectIcon/WalletConnectIcon.tsx -------------------------------------------------------------------------------- /src/ui/base/svg/WalletConnectIcon/walletConnectIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/WalletConnectIcon/walletConnectIcon.svg -------------------------------------------------------------------------------- /src/ui/base/svg/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/svg/types.ts -------------------------------------------------------------------------------- /src/ui/base/tailwindBreakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/tailwindBreakpoints.ts -------------------------------------------------------------------------------- /src/ui/base/token/useSetTokenAllowance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/token/useSetTokenAllowance.ts -------------------------------------------------------------------------------- /src/ui/base/useFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/useFile.ts -------------------------------------------------------------------------------- /src/ui/base/useMouseTracking.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/useMouseTracking.ts -------------------------------------------------------------------------------- /src/ui/base/usePopperWithRefs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/usePopperWithRefs.ts -------------------------------------------------------------------------------- /src/ui/base/useWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/base/useWorker.ts -------------------------------------------------------------------------------- /src/ui/contracts/useChangeDelegation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/contracts/useChangeDelegation.tsx -------------------------------------------------------------------------------- /src/ui/contracts/useDelegationVesting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/contracts/useDelegationVesting.tsx -------------------------------------------------------------------------------- /src/ui/contracts/useDeposits.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/contracts/useDeposits.ts -------------------------------------------------------------------------------- /src/ui/contracts/useElementTokenBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/contracts/useElementTokenBalance.ts -------------------------------------------------------------------------------- /src/ui/delegate-vesting/VestingDelegatePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate-vesting/VestingDelegatePage.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegateCard/CurrentDelegate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegateCard/CurrentDelegate.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegateCard/DelegateAddressInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegateCard/DelegateAddressInput.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegateCard/DelegateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegateCard/DelegateButton.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegateCard/DelegateCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegateCard/DelegateCard.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegateCard/WarningLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegateCard/WarningLabel.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegatePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegatePage.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegatesList/DelegateProfileRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegatesList/DelegateProfileRow.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegatesList/DelegatesList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegatesList/DelegatesList.tsx -------------------------------------------------------------------------------- /src/ui/delegate/DelegatesList/DetailedDelegateProfile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/DelegatesList/DetailedDelegateProfile.tsx -------------------------------------------------------------------------------- /src/ui/delegate/useDelegate.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/useDelegate.test.tsx -------------------------------------------------------------------------------- /src/ui/delegate/useDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/useDelegate.ts -------------------------------------------------------------------------------- /src/ui/delegate/useDelegateVesting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/delegate/useDelegateVesting.ts -------------------------------------------------------------------------------- /src/ui/ethereum/epochBlocksByChainId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/ethereum/epochBlocksByChainId.ts -------------------------------------------------------------------------------- /src/ui/ethereum/useBlockAtTimestamp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/ethereum/useBlockAtTimestamp.tsx -------------------------------------------------------------------------------- /src/ui/ethereum/useEnsName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/ethereum/useEnsName.tsx -------------------------------------------------------------------------------- /src/ui/ethereum/useFormattedWalletAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/ethereum/useFormattedWalletAddress.ts -------------------------------------------------------------------------------- /src/ui/ethereum/useGasPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/ethereum/useGasPrice.ts -------------------------------------------------------------------------------- /src/ui/ethereum/useLatestBlockNumber.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/ethereum/useLatestBlockNumber.tsx -------------------------------------------------------------------------------- /src/ui/ethereum/useResolvedEnsName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/ethereum/useResolvedEnsName.ts -------------------------------------------------------------------------------- /src/ui/gsc/GSCMemberProfileRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/gsc/GSCMemberProfileRow.tsx -------------------------------------------------------------------------------- /src/ui/gsc/GSCOverviewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/gsc/GSCOverviewPage.tsx -------------------------------------------------------------------------------- /src/ui/gsc/JoinGSCButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/gsc/JoinGSCButton.tsx -------------------------------------------------------------------------------- /src/ui/gsc/useCandidates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/gsc/useCandidates.tsx -------------------------------------------------------------------------------- /src/ui/gsc/useGSCMembers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/gsc/useGSCMembers.tsx -------------------------------------------------------------------------------- /src/ui/gsc/useGSCVotePowerThreshold.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/gsc/useGSCVotePowerThreshold.tsx -------------------------------------------------------------------------------- /src/ui/gsc/useIsGSCMember.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/gsc/useIsGSCMember.tsx -------------------------------------------------------------------------------- /src/ui/landing/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/landing/Header.tsx -------------------------------------------------------------------------------- /src/ui/landing/LandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/landing/LandingPage.tsx -------------------------------------------------------------------------------- /src/ui/landing/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/landing/SideBar.tsx -------------------------------------------------------------------------------- /src/ui/notifications/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/notifications/Notifications.tsx -------------------------------------------------------------------------------- /src/ui/overview/ElfiverseBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/ElfiverseBanner.tsx -------------------------------------------------------------------------------- /src/ui/overview/NFTTokenContractAddresses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/NFTTokenContractAddresses.ts -------------------------------------------------------------------------------- /src/ui/overview/OverviewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/OverviewPage.tsx -------------------------------------------------------------------------------- /src/ui/overview/PortfolioCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/PortfolioCard.tsx -------------------------------------------------------------------------------- /src/ui/overview/ProgressCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/ProgressCircle.tsx -------------------------------------------------------------------------------- /src/ui/overview/RewardsCard/ClaimAndDelegateButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/RewardsCard/ClaimAndDelegateButton.tsx -------------------------------------------------------------------------------- /src/ui/overview/RightBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/RightBar.tsx -------------------------------------------------------------------------------- /src/ui/overview/SummaryCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/SummaryCard.tsx -------------------------------------------------------------------------------- /src/ui/overview/SummaryCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/SummaryCards.tsx -------------------------------------------------------------------------------- /src/ui/overview/getNFTTokenContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/getNFTTokenContract.ts -------------------------------------------------------------------------------- /src/ui/overview/getRecentDelegators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/getRecentDelegators.ts -------------------------------------------------------------------------------- /src/ui/overview/useNFTTokenBalanceOf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/useNFTTokenBalanceOf.ts -------------------------------------------------------------------------------- /src/ui/overview/useNumDelegates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/overview/useNumDelegates.ts -------------------------------------------------------------------------------- /src/ui/proposals/GSCMember.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/GSCMember.tsx -------------------------------------------------------------------------------- /src/ui/proposals/GSCProposalsDetailsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/GSCProposalsDetailsCard.tsx -------------------------------------------------------------------------------- /src/ui/proposals/GSCProposalsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/GSCProposalsPage.tsx -------------------------------------------------------------------------------- /src/ui/proposals/GSCVoteTally.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/GSCVoteTally.tsx -------------------------------------------------------------------------------- /src/ui/proposals/ProposalDetailsCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/ProposalDetailsCard.tsx -------------------------------------------------------------------------------- /src/ui/proposals/ProposalList/ProposalList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/ProposalList/ProposalList.tsx -------------------------------------------------------------------------------- /src/ui/proposals/ProposalList/ProposalListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/ProposalList/ProposalListItem.tsx -------------------------------------------------------------------------------- /src/ui/proposals/ProposalList/ProposalStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/ProposalList/ProposalStatus.ts -------------------------------------------------------------------------------- /src/ui/proposals/ProposalList/ProposalStatusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/ProposalList/ProposalStatusIcon.tsx -------------------------------------------------------------------------------- /src/ui/proposals/ProposalsPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/ProposalsPage.tsx -------------------------------------------------------------------------------- /src/ui/proposals/StaleVotingPowerMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/StaleVotingPowerMessage.tsx -------------------------------------------------------------------------------- /src/ui/proposals/tooltipDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/tooltipDefinitions.ts -------------------------------------------------------------------------------- /src/ui/proposals/useProposalExecuted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/useProposalExecuted.ts -------------------------------------------------------------------------------- /src/ui/proposals/useSnapshotProposals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/useSnapshotProposals.ts -------------------------------------------------------------------------------- /src/ui/proposals/useVotingPowerForProposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/proposals/useVotingPowerForProposal.ts -------------------------------------------------------------------------------- /src/ui/router/useParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/router/useParams.ts -------------------------------------------------------------------------------- /src/ui/router/useRouterSteps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/router/useRouterSteps.ts -------------------------------------------------------------------------------- /src/ui/signer/useSigner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/signer/useSigner.ts -------------------------------------------------------------------------------- /src/ui/voting/Ballot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/Ballot.ts -------------------------------------------------------------------------------- /src/ui/voting/VotingBallotButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/VotingBallotButton.tsx -------------------------------------------------------------------------------- /src/ui/voting/tooltipDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/tooltipDefinitions.ts -------------------------------------------------------------------------------- /src/ui/voting/useBallot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useBallot.ts -------------------------------------------------------------------------------- /src/ui/voting/useLastVoteTransactionForAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useLastVoteTransactionForAccount.ts -------------------------------------------------------------------------------- /src/ui/voting/useLockingVaultBalance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useLockingVaultBalance.ts -------------------------------------------------------------------------------- /src/ui/voting/useLockingVaultVotingPower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useLockingVaultVotingPower.ts -------------------------------------------------------------------------------- /src/ui/voting/useQueryVotePower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useQueryVotePower.ts -------------------------------------------------------------------------------- /src/ui/voting/useVestingVaultVotingPower.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useVestingVaultVotingPower.ts -------------------------------------------------------------------------------- /src/ui/voting/useVote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useVote.ts -------------------------------------------------------------------------------- /src/ui/voting/useVotedEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useVotedEvents.ts -------------------------------------------------------------------------------- /src/ui/voting/useVotingPowerForAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useVotingPowerForAccount.ts -------------------------------------------------------------------------------- /src/ui/voting/useVotingPowerForProtocol.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/voting/useVotingPowerForProtocol.tsx -------------------------------------------------------------------------------- /src/ui/wallet/ConnectWalletButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/wallet/ConnectWalletButton.tsx -------------------------------------------------------------------------------- /src/ui/wallet/ConnectWalletDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/wallet/ConnectWalletDialog.tsx -------------------------------------------------------------------------------- /src/ui/wallet/WalletJazzicon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/wallet/WalletJazzicon.tsx -------------------------------------------------------------------------------- /src/ui/wallet/useAddToWallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/wallet/useAddToWallet.ts -------------------------------------------------------------------------------- /src/ui/wallet/useOnConnected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/wallet/useOnConnected.ts -------------------------------------------------------------------------------- /src/ui/zk/DiscordShareCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/DiscordShareCard.tsx -------------------------------------------------------------------------------- /src/ui/zk/EncryptionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/EncryptionCard.tsx -------------------------------------------------------------------------------- /src/ui/zk/EncryptionCard/HashSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/EncryptionCard/HashSlider.tsx -------------------------------------------------------------------------------- /src/ui/zk/EncryptionCard/generateHashSeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/EncryptionCard/generateHashSeed.ts -------------------------------------------------------------------------------- /src/ui/zk/GitHubShareCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/GitHubShareCard.tsx -------------------------------------------------------------------------------- /src/ui/zk/IntroCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/IntroCard.tsx -------------------------------------------------------------------------------- /src/ui/zk/RadiantShieldIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/RadiantShieldIcon.tsx -------------------------------------------------------------------------------- /src/ui/zk/ZKPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/ZKPage.tsx -------------------------------------------------------------------------------- /src/ui/zk/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/constants.ts -------------------------------------------------------------------------------- /src/ui/zk/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zk/types.ts -------------------------------------------------------------------------------- /src/ui/zkclaim/AlreadyClaimedCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/AlreadyClaimedCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/CallToActionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/CallToActionCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/ChooseDelegateCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/ChooseDelegateCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/ClaimAmountCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/ClaimAmountCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/DelegateInfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/DelegateInfoCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/EligibleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/EligibleCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/InlineElfiLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/InlineElfiLabel.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/LookupCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/LookupCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/NoPassCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/NoPassCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/NotEligibleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/NotEligibleCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/ShareCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/ShareCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/TransactionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/TransactionCard.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/ZKClaimPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/ZKClaimPage.tsx -------------------------------------------------------------------------------- /src/ui/zkclaim/isValidKeyOrSecret.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/isValidKeyOrSecret.ts -------------------------------------------------------------------------------- /src/ui/zkclaim/useAddressScreening.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/useAddressScreening.ts -------------------------------------------------------------------------------- /src/ui/zkclaim/useAlreadyClaimed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/useAlreadyClaimed.ts -------------------------------------------------------------------------------- /src/ui/zkclaim/useClaimAndDelegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/useClaimAndDelegate.ts -------------------------------------------------------------------------------- /src/ui/zkclaim/useClaimableAmount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/useClaimableAmount.ts -------------------------------------------------------------------------------- /src/ui/zkclaim/useZKProof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/src/ui/zkclaim/useZKProof.ts -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/styles/globals.css -------------------------------------------------------------------------------- /svgr-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/svgr-template.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/tsconfig.cjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delvtech/elf-council-frontend/HEAD/tsconfig.json --------------------------------------------------------------------------------