├── .env.example ├── .github ├── CODEOWNERS └── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .tool-versions ├── .vscode └── settings.json ├── @types └── custom.d.ts ├── Dockerfile ├── README.md ├── apollo ├── createSchema.ts ├── index.tsx └── subgraph.ts ├── codegen.yml ├── components ├── Account │ └── index.tsx ├── AccountCell │ └── index.tsx ├── AnimatedToken │ └── index.tsx ├── AppBar │ └── index.tsx ├── Approve │ └── index.tsx ├── Banner │ └── index.tsx ├── BottomDrawer │ └── index.tsx ├── Button │ └── index.tsx ├── CircularProgressBar │ └── index.tsx ├── Claim │ └── index.tsx ├── CodeBlock │ └── index.tsx ├── ConnectButton │ └── index.tsx ├── DelegatingView │ └── index.tsx ├── DelegatingWidget │ ├── Delegate.tsx │ ├── Footer.tsx │ ├── Footnote.tsx │ ├── Header.tsx │ ├── Input.tsx │ ├── InputBox.tsx │ ├── ProjectionBox.tsx │ ├── Tabs.tsx │ ├── Undelegate.tsx │ └── index.tsx ├── Drawer │ └── index.tsx ├── EditProfile │ └── index.tsx ├── ExplorerChart │ └── index.tsx ├── ExplorerTooltip │ └── index.tsx ├── Hamburger │ └── index.tsx ├── HistoryView │ └── index.tsx ├── IdentityAvatar │ └── index.tsx ├── InactiveWarning │ └── index.tsx ├── LlamaswapModal │ └── index.tsx ├── Logo │ └── index.tsx ├── MarkdownRenderer │ └── index.tsx ├── OrchestratingView │ └── index.tsx ├── OrchestratorList │ └── index.tsx ├── PerformanceList │ └── index.tsx ├── PerformanceListSelector │ └── index.tsx ├── PopoverLink │ └── index.tsx ├── Pre │ └── index.tsx ├── Profile │ └── index.tsx ├── ProgressBar │ └── index.tsx ├── ProgressSteps │ └── index.tsx ├── QueueExecuteButton │ └── index.tsx ├── Redelegate │ └── index.tsx ├── RedelegateFromUndelegated │ └── index.tsx ├── RegisterToVote │ └── index.tsx ├── RoundStatus │ └── index.tsx ├── Search │ └── index.tsx ├── Spinner │ └── index.tsx ├── StakeTransactions │ └── index.tsx ├── Stat │ └── index.tsx ├── Table │ └── index.tsx ├── ThreeBoxSteps │ └── index.tsx ├── TransactionsList │ └── index.tsx ├── TreasuryProposalRow │ └── index.tsx ├── TreasuryVotingReason │ └── index.tsx ├── TreasuryVotingWidget │ └── index.tsx ├── TxConfirmedDialog │ └── index.tsx ├── TxStartedDialog │ └── index.tsx ├── TxSummaryDialog │ └── index.tsx ├── VoteButton │ └── index.tsx ├── VotingWidget │ └── index.tsx └── WithdrawStake │ └── index.tsx ├── constants └── rainbowTheme.ts ├── data ├── delegatorClaimSnapshot.json ├── delegatorClaimSnapshotRinkeby.json ├── earningsTree.js ├── earningsTree_rinkeby.js ├── historical-usage.ts ├── image-to-video.json ├── text-to-audio.json └── text-to-image.json ├── eslint.config.mjs ├── hooks ├── index.tsx ├── useContracts.ts ├── useExplorerStore.tsx ├── useHandleTransaction.tsx ├── useSwr.tsx └── wallet.tsx ├── layouts ├── account.tsx └── main.tsx ├── lib ├── api │ ├── abis │ │ ├── bridge │ │ │ ├── ArbRetryableTx.ts │ │ │ ├── Inbox.ts │ │ │ ├── L1BondingManager.ts │ │ │ ├── L1Migrator.ts │ │ │ ├── L2LPTGateway.ts │ │ │ ├── L2Migrator.ts │ │ │ └── NodeInterface.ts │ │ └── main │ │ │ ├── BondingManager.ts │ │ │ ├── BondingVotes.ts │ │ │ ├── Controller.ts │ │ │ ├── L2Migrator.ts │ │ │ ├── LivepeerGovernor.ts │ │ │ ├── LivepeerToken.ts │ │ │ ├── LivepeerTokenFaucet.ts │ │ │ ├── MerkleSnapshot.ts │ │ │ ├── Minter.ts │ │ │ ├── Poll.ts │ │ │ ├── PollCreator.ts │ │ │ ├── RoundsManager.ts │ │ │ ├── ServiceRegistry.ts │ │ │ └── TicketBroker.ts │ ├── api.ts │ ├── contracts.ts │ ├── ens.ts │ ├── index.ts │ ├── polls.ts │ ├── ssr.ts │ ├── treasury.ts │ └── types │ │ ├── add-ipfs.ts │ │ ├── get-account-balance.ts │ │ ├── get-available-pipelines.ts │ │ ├── get-changefeed.ts │ │ ├── get-chart-data.ts │ │ ├── get-contract-info.ts │ │ ├── get-current-round.ts │ │ ├── get-ens.ts │ │ ├── get-l1-delegator.ts │ │ ├── get-pending-stake.ts │ │ ├── get-performance.ts │ │ ├── get-regions.ts │ │ └── get-treasury-proposal.ts ├── axios.ts ├── chains.ts ├── dayjs.ts ├── earningsTree.tsx ├── fetchWithRetry.ts ├── globalStyles.ts ├── roi.ts └── utils.tsx ├── logo.png ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── _app.tsx ├── _document.tsx ├── _error.tsx ├── accounts │ └── [account] │ │ ├── delegating.tsx │ │ ├── history.tsx │ │ └── orchestrating.tsx ├── api │ ├── account-balance │ │ └── [address].tsx │ ├── changefeed.tsx │ ├── contracts.tsx │ ├── current-round.tsx │ ├── ens-data │ │ ├── [address].tsx │ │ ├── image │ │ │ └── [name].tsx │ │ └── index.tsx │ ├── generateProof.tsx │ ├── l1-delegator │ │ └── [address].tsx │ ├── pending-stake │ │ └── [address].tsx │ ├── pipelines │ │ └── index.tsx │ ├── regions │ │ └── index.ts │ ├── score │ │ ├── [address].tsx │ │ └── index.tsx │ ├── totalTokenSupply.tsx │ ├── treasury │ │ ├── proposal │ │ │ └── [proposalId] │ │ │ │ ├── state.tsx │ │ │ │ └── votes │ │ │ │ └── [address].tsx │ │ └── votes │ │ │ └── [address] │ │ │ ├── index.tsx │ │ │ └── registered.tsx │ ├── upload-ipfs.tsx │ └── usage.tsx ├── index.tsx ├── leaderboard.tsx ├── migrate │ ├── broadcaster.tsx │ ├── delegator │ │ ├── contract-wallet-tool.tsx │ │ └── index.tsx │ ├── index.tsx │ └── orchestrator.tsx ├── orchestrators.tsx ├── transactions.tsx ├── treasury │ ├── [proposal].tsx │ ├── create-proposal.tsx │ └── index.tsx ├── voting │ ├── [poll].tsx │ ├── create-poll.tsx │ └── index.tsx └── whats-new.tsx ├── pnpm-lock.yaml ├── prettier.config.mjs ├── public ├── favicon.ico ├── img │ ├── account.svg │ ├── add-photo.svg │ ├── approve.svg │ ├── arbitrum.svg │ ├── arrow-down.svg │ ├── arrow-right-long.svg │ ├── arrow-right.svg │ ├── ballot.svg │ ├── camera.svg │ ├── change.svg │ ├── check.svg │ ├── claim.svg │ ├── close.svg │ ├── coinbase-wallet.svg │ ├── copy.svg │ ├── dns.svg │ ├── eth.svg │ ├── etherscan.svg │ ├── green-loader.svg │ ├── help.svg │ ├── link.svg │ ├── logo-icon.svg │ ├── logo.svg │ ├── logos │ │ ├── arbitrum.png │ │ ├── arbitrum.svg │ │ ├── ethereum.png │ │ ├── logo-circle-black.png │ │ ├── logo-circle-black.svg │ │ ├── logo-circle-green.png │ │ ├── logo-circle-green.svg │ │ ├── logo-circle-white.png │ │ ├── logo-circle-white.svg │ │ └── logo.png │ ├── lpt.svg │ ├── metamask-fill.svg │ ├── metamask.svg │ ├── network.svg │ ├── new.svg │ ├── open-in-new.svg │ ├── orchestrators.svg │ ├── play-outline.svg │ ├── play.svg │ ├── portis.svg │ ├── power.svg │ ├── search.svg │ ├── secure.svg │ ├── sign-message-screenshot-1.png │ ├── sign-message-screenshot-2.png │ ├── sign-message-screenshot-3.png │ ├── squiggle.svg │ ├── stake.svg │ ├── star.svg │ ├── trending.svg │ ├── unlink.svg │ ├── verified.svg │ ├── wallet-connect.svg │ ├── wallet.svg │ ├── wifi.svg │ └── yield-chart.svg └── sitemap.xml ├── queries ├── account.graphql ├── accountInactive.graphql ├── currentRound.graphql ├── days.graphql ├── events.graphql ├── orchestrators.graphql ├── orchestratorsSorted.graphql ├── poll.graphql ├── polls.graphql ├── protocol.graphql ├── protocolByBlock.graphql ├── transactions.graphql ├── treasuryProposal.graphql ├── treasuryProposals.graphql └── vote.graphql ├── tsconfig.json └── utils ├── Inbox.json ├── encoder.ts ├── ipfs.ts ├── messaging.ts └── stepperStyles.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/.env.example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default owner for everything in the repo 2 | * @ECWireless 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/.prettierignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 20.0.0 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /@types/custom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/@types/custom.d.ts -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/README.md -------------------------------------------------------------------------------- /apollo/createSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/apollo/createSchema.ts -------------------------------------------------------------------------------- /apollo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/apollo/index.tsx -------------------------------------------------------------------------------- /apollo/subgraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/apollo/subgraph.ts -------------------------------------------------------------------------------- /codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/codegen.yml -------------------------------------------------------------------------------- /components/Account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Account/index.tsx -------------------------------------------------------------------------------- /components/AccountCell/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/AccountCell/index.tsx -------------------------------------------------------------------------------- /components/AnimatedToken/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/AnimatedToken/index.tsx -------------------------------------------------------------------------------- /components/AppBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/AppBar/index.tsx -------------------------------------------------------------------------------- /components/Approve/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Approve/index.tsx -------------------------------------------------------------------------------- /components/Banner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Banner/index.tsx -------------------------------------------------------------------------------- /components/BottomDrawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/BottomDrawer/index.tsx -------------------------------------------------------------------------------- /components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Button/index.tsx -------------------------------------------------------------------------------- /components/CircularProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/CircularProgressBar/index.tsx -------------------------------------------------------------------------------- /components/Claim/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Claim/index.tsx -------------------------------------------------------------------------------- /components/CodeBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/CodeBlock/index.tsx -------------------------------------------------------------------------------- /components/ConnectButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/ConnectButton/index.tsx -------------------------------------------------------------------------------- /components/DelegatingView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingView/index.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/Delegate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/Delegate.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/Footer.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/Footnote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/Footnote.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/Header.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/Input.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/InputBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/InputBox.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/ProjectionBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/ProjectionBox.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/Tabs.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/Undelegate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/Undelegate.tsx -------------------------------------------------------------------------------- /components/DelegatingWidget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/DelegatingWidget/index.tsx -------------------------------------------------------------------------------- /components/Drawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Drawer/index.tsx -------------------------------------------------------------------------------- /components/EditProfile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/EditProfile/index.tsx -------------------------------------------------------------------------------- /components/ExplorerChart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/ExplorerChart/index.tsx -------------------------------------------------------------------------------- /components/ExplorerTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/ExplorerTooltip/index.tsx -------------------------------------------------------------------------------- /components/Hamburger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Hamburger/index.tsx -------------------------------------------------------------------------------- /components/HistoryView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/HistoryView/index.tsx -------------------------------------------------------------------------------- /components/IdentityAvatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/IdentityAvatar/index.tsx -------------------------------------------------------------------------------- /components/InactiveWarning/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/InactiveWarning/index.tsx -------------------------------------------------------------------------------- /components/LlamaswapModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/LlamaswapModal/index.tsx -------------------------------------------------------------------------------- /components/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Logo/index.tsx -------------------------------------------------------------------------------- /components/MarkdownRenderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/MarkdownRenderer/index.tsx -------------------------------------------------------------------------------- /components/OrchestratingView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/OrchestratingView/index.tsx -------------------------------------------------------------------------------- /components/OrchestratorList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/OrchestratorList/index.tsx -------------------------------------------------------------------------------- /components/PerformanceList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/PerformanceList/index.tsx -------------------------------------------------------------------------------- /components/PerformanceListSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/PerformanceListSelector/index.tsx -------------------------------------------------------------------------------- /components/PopoverLink/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/PopoverLink/index.tsx -------------------------------------------------------------------------------- /components/Pre/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Pre/index.tsx -------------------------------------------------------------------------------- /components/Profile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Profile/index.tsx -------------------------------------------------------------------------------- /components/ProgressBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/ProgressBar/index.tsx -------------------------------------------------------------------------------- /components/ProgressSteps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/ProgressSteps/index.tsx -------------------------------------------------------------------------------- /components/QueueExecuteButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/QueueExecuteButton/index.tsx -------------------------------------------------------------------------------- /components/Redelegate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Redelegate/index.tsx -------------------------------------------------------------------------------- /components/RedelegateFromUndelegated/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/RedelegateFromUndelegated/index.tsx -------------------------------------------------------------------------------- /components/RegisterToVote/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/RegisterToVote/index.tsx -------------------------------------------------------------------------------- /components/RoundStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/RoundStatus/index.tsx -------------------------------------------------------------------------------- /components/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Search/index.tsx -------------------------------------------------------------------------------- /components/Spinner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Spinner/index.tsx -------------------------------------------------------------------------------- /components/StakeTransactions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/StakeTransactions/index.tsx -------------------------------------------------------------------------------- /components/Stat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Stat/index.tsx -------------------------------------------------------------------------------- /components/Table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/Table/index.tsx -------------------------------------------------------------------------------- /components/ThreeBoxSteps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/ThreeBoxSteps/index.tsx -------------------------------------------------------------------------------- /components/TransactionsList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/TransactionsList/index.tsx -------------------------------------------------------------------------------- /components/TreasuryProposalRow/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/TreasuryProposalRow/index.tsx -------------------------------------------------------------------------------- /components/TreasuryVotingReason/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/TreasuryVotingReason/index.tsx -------------------------------------------------------------------------------- /components/TreasuryVotingWidget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/TreasuryVotingWidget/index.tsx -------------------------------------------------------------------------------- /components/TxConfirmedDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/TxConfirmedDialog/index.tsx -------------------------------------------------------------------------------- /components/TxStartedDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/TxStartedDialog/index.tsx -------------------------------------------------------------------------------- /components/TxSummaryDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/TxSummaryDialog/index.tsx -------------------------------------------------------------------------------- /components/VoteButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/VoteButton/index.tsx -------------------------------------------------------------------------------- /components/VotingWidget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/VotingWidget/index.tsx -------------------------------------------------------------------------------- /components/WithdrawStake/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/components/WithdrawStake/index.tsx -------------------------------------------------------------------------------- /constants/rainbowTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/constants/rainbowTheme.ts -------------------------------------------------------------------------------- /data/delegatorClaimSnapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/data/delegatorClaimSnapshot.json -------------------------------------------------------------------------------- /data/delegatorClaimSnapshotRinkeby.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/data/delegatorClaimSnapshotRinkeby.json -------------------------------------------------------------------------------- /data/earningsTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/data/earningsTree.js -------------------------------------------------------------------------------- /data/earningsTree_rinkeby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/data/earningsTree_rinkeby.js -------------------------------------------------------------------------------- /data/historical-usage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/data/historical-usage.ts -------------------------------------------------------------------------------- /data/image-to-video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/data/image-to-video.json -------------------------------------------------------------------------------- /data/text-to-audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/data/text-to-audio.json -------------------------------------------------------------------------------- /data/text-to-image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/data/text-to-image.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/hooks/index.tsx -------------------------------------------------------------------------------- /hooks/useContracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/hooks/useContracts.ts -------------------------------------------------------------------------------- /hooks/useExplorerStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/hooks/useExplorerStore.tsx -------------------------------------------------------------------------------- /hooks/useHandleTransaction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/hooks/useHandleTransaction.tsx -------------------------------------------------------------------------------- /hooks/useSwr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/hooks/useSwr.tsx -------------------------------------------------------------------------------- /hooks/wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/hooks/wallet.tsx -------------------------------------------------------------------------------- /layouts/account.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/layouts/account.tsx -------------------------------------------------------------------------------- /layouts/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/layouts/main.tsx -------------------------------------------------------------------------------- /lib/api/abis/bridge/ArbRetryableTx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/bridge/ArbRetryableTx.ts -------------------------------------------------------------------------------- /lib/api/abis/bridge/Inbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/bridge/Inbox.ts -------------------------------------------------------------------------------- /lib/api/abis/bridge/L1BondingManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/bridge/L1BondingManager.ts -------------------------------------------------------------------------------- /lib/api/abis/bridge/L1Migrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/bridge/L1Migrator.ts -------------------------------------------------------------------------------- /lib/api/abis/bridge/L2LPTGateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/bridge/L2LPTGateway.ts -------------------------------------------------------------------------------- /lib/api/abis/bridge/L2Migrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/bridge/L2Migrator.ts -------------------------------------------------------------------------------- /lib/api/abis/bridge/NodeInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/bridge/NodeInterface.ts -------------------------------------------------------------------------------- /lib/api/abis/main/BondingManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/BondingManager.ts -------------------------------------------------------------------------------- /lib/api/abis/main/BondingVotes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/BondingVotes.ts -------------------------------------------------------------------------------- /lib/api/abis/main/Controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/Controller.ts -------------------------------------------------------------------------------- /lib/api/abis/main/L2Migrator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/L2Migrator.ts -------------------------------------------------------------------------------- /lib/api/abis/main/LivepeerGovernor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/LivepeerGovernor.ts -------------------------------------------------------------------------------- /lib/api/abis/main/LivepeerToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/LivepeerToken.ts -------------------------------------------------------------------------------- /lib/api/abis/main/LivepeerTokenFaucet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/LivepeerTokenFaucet.ts -------------------------------------------------------------------------------- /lib/api/abis/main/MerkleSnapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/MerkleSnapshot.ts -------------------------------------------------------------------------------- /lib/api/abis/main/Minter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/Minter.ts -------------------------------------------------------------------------------- /lib/api/abis/main/Poll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/Poll.ts -------------------------------------------------------------------------------- /lib/api/abis/main/PollCreator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/PollCreator.ts -------------------------------------------------------------------------------- /lib/api/abis/main/RoundsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/RoundsManager.ts -------------------------------------------------------------------------------- /lib/api/abis/main/ServiceRegistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/ServiceRegistry.ts -------------------------------------------------------------------------------- /lib/api/abis/main/TicketBroker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/abis/main/TicketBroker.ts -------------------------------------------------------------------------------- /lib/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/api.ts -------------------------------------------------------------------------------- /lib/api/contracts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/contracts.ts -------------------------------------------------------------------------------- /lib/api/ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/ens.ts -------------------------------------------------------------------------------- /lib/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/index.ts -------------------------------------------------------------------------------- /lib/api/polls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/polls.ts -------------------------------------------------------------------------------- /lib/api/ssr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/ssr.ts -------------------------------------------------------------------------------- /lib/api/treasury.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/treasury.ts -------------------------------------------------------------------------------- /lib/api/types/add-ipfs.ts: -------------------------------------------------------------------------------- 1 | export type AddIpfs = { 2 | hash: string; 3 | }; 4 | -------------------------------------------------------------------------------- /lib/api/types/get-account-balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-account-balance.ts -------------------------------------------------------------------------------- /lib/api/types/get-available-pipelines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-available-pipelines.ts -------------------------------------------------------------------------------- /lib/api/types/get-changefeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-changefeed.ts -------------------------------------------------------------------------------- /lib/api/types/get-chart-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-chart-data.ts -------------------------------------------------------------------------------- /lib/api/types/get-contract-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-contract-info.ts -------------------------------------------------------------------------------- /lib/api/types/get-current-round.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-current-round.ts -------------------------------------------------------------------------------- /lib/api/types/get-ens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-ens.ts -------------------------------------------------------------------------------- /lib/api/types/get-l1-delegator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-l1-delegator.ts -------------------------------------------------------------------------------- /lib/api/types/get-pending-stake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-pending-stake.ts -------------------------------------------------------------------------------- /lib/api/types/get-performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-performance.ts -------------------------------------------------------------------------------- /lib/api/types/get-regions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-regions.ts -------------------------------------------------------------------------------- /lib/api/types/get-treasury-proposal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/api/types/get-treasury-proposal.ts -------------------------------------------------------------------------------- /lib/axios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/axios.ts -------------------------------------------------------------------------------- /lib/chains.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/chains.ts -------------------------------------------------------------------------------- /lib/dayjs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/dayjs.ts -------------------------------------------------------------------------------- /lib/earningsTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/earningsTree.tsx -------------------------------------------------------------------------------- /lib/fetchWithRetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/fetchWithRetry.ts -------------------------------------------------------------------------------- /lib/globalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/globalStyles.ts -------------------------------------------------------------------------------- /lib/roi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/roi.ts -------------------------------------------------------------------------------- /lib/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/lib/utils.tsx -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/logo.png -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/_error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/_error.tsx -------------------------------------------------------------------------------- /pages/accounts/[account]/delegating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/accounts/[account]/delegating.tsx -------------------------------------------------------------------------------- /pages/accounts/[account]/history.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/accounts/[account]/history.tsx -------------------------------------------------------------------------------- /pages/accounts/[account]/orchestrating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/accounts/[account]/orchestrating.tsx -------------------------------------------------------------------------------- /pages/api/account-balance/[address].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/account-balance/[address].tsx -------------------------------------------------------------------------------- /pages/api/changefeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/changefeed.tsx -------------------------------------------------------------------------------- /pages/api/contracts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/contracts.tsx -------------------------------------------------------------------------------- /pages/api/current-round.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/current-round.tsx -------------------------------------------------------------------------------- /pages/api/ens-data/[address].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/ens-data/[address].tsx -------------------------------------------------------------------------------- /pages/api/ens-data/image/[name].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/ens-data/image/[name].tsx -------------------------------------------------------------------------------- /pages/api/ens-data/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/ens-data/index.tsx -------------------------------------------------------------------------------- /pages/api/generateProof.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/generateProof.tsx -------------------------------------------------------------------------------- /pages/api/l1-delegator/[address].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/l1-delegator/[address].tsx -------------------------------------------------------------------------------- /pages/api/pending-stake/[address].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/pending-stake/[address].tsx -------------------------------------------------------------------------------- /pages/api/pipelines/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/pipelines/index.tsx -------------------------------------------------------------------------------- /pages/api/regions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/regions/index.ts -------------------------------------------------------------------------------- /pages/api/score/[address].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/score/[address].tsx -------------------------------------------------------------------------------- /pages/api/score/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/score/index.tsx -------------------------------------------------------------------------------- /pages/api/totalTokenSupply.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/totalTokenSupply.tsx -------------------------------------------------------------------------------- /pages/api/treasury/proposal/[proposalId]/state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/treasury/proposal/[proposalId]/state.tsx -------------------------------------------------------------------------------- /pages/api/treasury/proposal/[proposalId]/votes/[address].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/treasury/proposal/[proposalId]/votes/[address].tsx -------------------------------------------------------------------------------- /pages/api/treasury/votes/[address]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/treasury/votes/[address]/index.tsx -------------------------------------------------------------------------------- /pages/api/treasury/votes/[address]/registered.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/treasury/votes/[address]/registered.tsx -------------------------------------------------------------------------------- /pages/api/upload-ipfs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/upload-ipfs.tsx -------------------------------------------------------------------------------- /pages/api/usage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/api/usage.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/leaderboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/leaderboard.tsx -------------------------------------------------------------------------------- /pages/migrate/broadcaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/migrate/broadcaster.tsx -------------------------------------------------------------------------------- /pages/migrate/delegator/contract-wallet-tool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/migrate/delegator/contract-wallet-tool.tsx -------------------------------------------------------------------------------- /pages/migrate/delegator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/migrate/delegator/index.tsx -------------------------------------------------------------------------------- /pages/migrate/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/migrate/index.tsx -------------------------------------------------------------------------------- /pages/migrate/orchestrator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/migrate/orchestrator.tsx -------------------------------------------------------------------------------- /pages/orchestrators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/orchestrators.tsx -------------------------------------------------------------------------------- /pages/transactions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/transactions.tsx -------------------------------------------------------------------------------- /pages/treasury/[proposal].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/treasury/[proposal].tsx -------------------------------------------------------------------------------- /pages/treasury/create-proposal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/treasury/create-proposal.tsx -------------------------------------------------------------------------------- /pages/treasury/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/treasury/index.tsx -------------------------------------------------------------------------------- /pages/voting/[poll].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/voting/[poll].tsx -------------------------------------------------------------------------------- /pages/voting/create-poll.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/voting/create-poll.tsx -------------------------------------------------------------------------------- /pages/voting/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/voting/index.tsx -------------------------------------------------------------------------------- /pages/whats-new.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pages/whats-new.tsx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/img/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/account.svg -------------------------------------------------------------------------------- /public/img/add-photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/add-photo.svg -------------------------------------------------------------------------------- /public/img/approve.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/approve.svg -------------------------------------------------------------------------------- /public/img/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/arbitrum.svg -------------------------------------------------------------------------------- /public/img/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/arrow-down.svg -------------------------------------------------------------------------------- /public/img/arrow-right-long.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/arrow-right-long.svg -------------------------------------------------------------------------------- /public/img/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/arrow-right.svg -------------------------------------------------------------------------------- /public/img/ballot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/ballot.svg -------------------------------------------------------------------------------- /public/img/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/camera.svg -------------------------------------------------------------------------------- /public/img/change.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/change.svg -------------------------------------------------------------------------------- /public/img/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/check.svg -------------------------------------------------------------------------------- /public/img/claim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/claim.svg -------------------------------------------------------------------------------- /public/img/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/close.svg -------------------------------------------------------------------------------- /public/img/coinbase-wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/coinbase-wallet.svg -------------------------------------------------------------------------------- /public/img/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/copy.svg -------------------------------------------------------------------------------- /public/img/dns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/dns.svg -------------------------------------------------------------------------------- /public/img/eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/eth.svg -------------------------------------------------------------------------------- /public/img/etherscan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/etherscan.svg -------------------------------------------------------------------------------- /public/img/green-loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/green-loader.svg -------------------------------------------------------------------------------- /public/img/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/help.svg -------------------------------------------------------------------------------- /public/img/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/link.svg -------------------------------------------------------------------------------- /public/img/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logo-icon.svg -------------------------------------------------------------------------------- /public/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logo.svg -------------------------------------------------------------------------------- /public/img/logos/arbitrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/arbitrum.png -------------------------------------------------------------------------------- /public/img/logos/arbitrum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/arbitrum.svg -------------------------------------------------------------------------------- /public/img/logos/ethereum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/ethereum.png -------------------------------------------------------------------------------- /public/img/logos/logo-circle-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/logo-circle-black.png -------------------------------------------------------------------------------- /public/img/logos/logo-circle-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/logo-circle-black.svg -------------------------------------------------------------------------------- /public/img/logos/logo-circle-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/logo-circle-green.png -------------------------------------------------------------------------------- /public/img/logos/logo-circle-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/logo-circle-green.svg -------------------------------------------------------------------------------- /public/img/logos/logo-circle-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/logo-circle-white.png -------------------------------------------------------------------------------- /public/img/logos/logo-circle-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/logo-circle-white.svg -------------------------------------------------------------------------------- /public/img/logos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/logos/logo.png -------------------------------------------------------------------------------- /public/img/lpt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/lpt.svg -------------------------------------------------------------------------------- /public/img/metamask-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/metamask-fill.svg -------------------------------------------------------------------------------- /public/img/metamask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/metamask.svg -------------------------------------------------------------------------------- /public/img/network.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/network.svg -------------------------------------------------------------------------------- /public/img/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/new.svg -------------------------------------------------------------------------------- /public/img/open-in-new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/open-in-new.svg -------------------------------------------------------------------------------- /public/img/orchestrators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/orchestrators.svg -------------------------------------------------------------------------------- /public/img/play-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/play-outline.svg -------------------------------------------------------------------------------- /public/img/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/play.svg -------------------------------------------------------------------------------- /public/img/portis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/portis.svg -------------------------------------------------------------------------------- /public/img/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/power.svg -------------------------------------------------------------------------------- /public/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/search.svg -------------------------------------------------------------------------------- /public/img/secure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/secure.svg -------------------------------------------------------------------------------- /public/img/sign-message-screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/sign-message-screenshot-1.png -------------------------------------------------------------------------------- /public/img/sign-message-screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/sign-message-screenshot-2.png -------------------------------------------------------------------------------- /public/img/sign-message-screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/sign-message-screenshot-3.png -------------------------------------------------------------------------------- /public/img/squiggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/squiggle.svg -------------------------------------------------------------------------------- /public/img/stake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/stake.svg -------------------------------------------------------------------------------- /public/img/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/star.svg -------------------------------------------------------------------------------- /public/img/trending.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/trending.svg -------------------------------------------------------------------------------- /public/img/unlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/unlink.svg -------------------------------------------------------------------------------- /public/img/verified.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/verified.svg -------------------------------------------------------------------------------- /public/img/wallet-connect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/wallet-connect.svg -------------------------------------------------------------------------------- /public/img/wallet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/wallet.svg -------------------------------------------------------------------------------- /public/img/wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/wifi.svg -------------------------------------------------------------------------------- /public/img/yield-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/img/yield-chart.svg -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /queries/account.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/account.graphql -------------------------------------------------------------------------------- /queries/accountInactive.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/accountInactive.graphql -------------------------------------------------------------------------------- /queries/currentRound.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/currentRound.graphql -------------------------------------------------------------------------------- /queries/days.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/days.graphql -------------------------------------------------------------------------------- /queries/events.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/events.graphql -------------------------------------------------------------------------------- /queries/orchestrators.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/orchestrators.graphql -------------------------------------------------------------------------------- /queries/orchestratorsSorted.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/orchestratorsSorted.graphql -------------------------------------------------------------------------------- /queries/poll.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/poll.graphql -------------------------------------------------------------------------------- /queries/polls.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/polls.graphql -------------------------------------------------------------------------------- /queries/protocol.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/protocol.graphql -------------------------------------------------------------------------------- /queries/protocolByBlock.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/protocolByBlock.graphql -------------------------------------------------------------------------------- /queries/transactions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/transactions.graphql -------------------------------------------------------------------------------- /queries/treasuryProposal.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/treasuryProposal.graphql -------------------------------------------------------------------------------- /queries/treasuryProposals.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/treasuryProposals.graphql -------------------------------------------------------------------------------- /queries/vote.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/queries/vote.graphql -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/Inbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/utils/Inbox.json -------------------------------------------------------------------------------- /utils/encoder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/utils/encoder.ts -------------------------------------------------------------------------------- /utils/ipfs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/utils/ipfs.ts -------------------------------------------------------------------------------- /utils/messaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/utils/messaging.ts -------------------------------------------------------------------------------- /utils/stepperStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livepeer/explorer/HEAD/utils/stepperStyles.ts --------------------------------------------------------------------------------