Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
779c340
feat: add OrchestratorVotingList component for displaying voting data
Jipperism Dec 22, 2025
77689dd
feat: integrate Cube.js client and add VotingHistoryView component
Jipperism Dec 22, 2025
b2499a3
feat: enhance voting history functionality and UI
Jipperism Dec 22, 2025
7a772b0
feat: enhance orchestrators page with voting history and summaries
Jipperism Dec 22, 2025
d4d97c0
feat: add Vector.png asset for UI enhancements
Jipperism Dec 22, 2025
ea087fc
Cherry pick PR https://github.com/livepeer/explorer/pull/300
Jipperism Dec 22, 2025
3e5ac11
Merge branch 'main' into 310-showcase-orchestrator-voting-activity-in…
Jipperism Dec 22, 2025
0a56114
fix: update Cube.js data fetching and response handling
Jipperism Dec 23, 2025
91d8581
fix: standardize address and transaction hash formatting
Jipperism Dec 23, 2025
a443e2b
fix: orchestrators page early return
Jipperism Dec 23, 2025
6e55877
feat: add governance participation stat card to orchestrator overview
thebeyondr Dec 23, 2025
504f604
fix: add TypeScript error handling for string query in getAccountVote…
thebeyondr Dec 23, 2025
278a93a
refactor: refresh the treasury voters list experience and unify termi…
thebeyondr Dec 24, 2025
5c758d8
refactor: remove unused agent log and clean up VoteTable component
thebeyondr Dec 24, 2025
2a4911d
refactor: update voting badge terminology and styling in Transactions…
thebeyondr Dec 24, 2025
debdee4
fix(votes): correct SWR key to resolve missing proposal titles
thebeyondr Dec 24, 2025
a9684e1
feat(ux): add focus trap, keyboard shortcuts, and ARIA support to modal
thebeyondr Dec 24, 2025
4a2c314
feat(votes): add voting summary stats and ENS propagation to voter hi…
thebeyondr Dec 24, 2025
08039eb
style(ui): refactor vote cards with timeline layout and high-contrast…
thebeyondr Dec 24, 2025
fc7293a
style(table): change overflow property from scroll to auto for better…
thebeyondr Dec 24, 2025
a0e5a1e
style: refine treasury voting widget UI and accessibility
thebeyondr Dec 24, 2025
0e5e915
style: Reduce font weight from 600 to 500 for better visual hierarchy.
thebeyondr Dec 24, 2025
4a84597
refactor(account): remove voting history tab and associated components
Jipperism Jan 9, 2026
d79f05b
feat(votes): add treasury and vote event queries with hooks
Jipperism Jan 9, 2026
a122748
feat(history): integrate treasury and vote events into HistoryView
Jipperism Jan 9, 2026
507bda9
chore(voting): remove VotingHistoryView component
Jipperism Jan 9, 2026
c3d1e88
chore: remove OrchestratorVotingList component
Jipperism Jan 9, 2026
28e7999
chore: remove voting_history component as votes have been integrated …
Jipperism Jan 9, 2026
fa784c5
chore: remove Cube.js client and related query generator
Jipperism Jan 9, 2026
6df9ac9
feat(votes): enhance treasury vote handling and display
Jipperism Jan 9, 2026
4738dcb
chore: remove outdated hooks
Jipperism Jan 9, 2026
8d9206e
chore: remove outdated variables
Jipperism Jan 9, 2026
53a340d
style(voting): standardize For/Against colors and labels
thebeyondr Jan 9, 2026
46e8fbe
style(vote-table): update link and badge styles
thebeyondr Jan 9, 2026
efcd61b
style(voting): unify governance UI and implement accessibility signals
thebeyondr Jan 9, 2026
0795ac5
chore(merge): Merge branch '310-showcase-orchestrator-voting-activity…
thebeyondr Jan 9, 2026
a6b317f
Merge branch 'main' into 310-showcase-orchestrator-voting-activity-in…
Jipperism Jan 12, 2026
0502be8
refactor(votes): separate poll and treasury vote types
thebeyondr Jan 12, 2026
d55815a
refactor(votes): migrate components to use new vote type system
thebeyondr Jan 12, 2026
75f4576
refactor(votes): standardize terminology from Yes/No to For/Against
thebeyondr Jan 12, 2026
095c822
feat(votes): add vote icons and improve badge styling
thebeyondr Jan 12, 2026
18ca7dd
feat(treasury): add TreasuryVoteEvent component to display voting det…
Jipperism Jan 13, 2026
d3272cd
refactor(votes): extract vote logic into custom hook and enhance load…
Jipperism Jan 13, 2026
437236a
feat(votes): add formatWeight prop to VoteDetail and VotePopover comp…
Jipperism Jan 13, 2026
443921f
refactor(history): standardize naming for treasury vote events and im…
Jipperism Jan 13, 2026
246e5f9
style(voting): update text colors and border radius for voting indica…
thebeyondr Jan 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,160 changes: 1,071 additions & 89 deletions apollo/subgraph.ts

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions components/Account/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { formatAddress } from "@lib/utils";
import { Box, Flex, Link as A } from "@livepeer/design-system";
import { useAccountAddress, useEnsData } from "hooks";
import Link from "next/link";
Expand Down Expand Up @@ -52,11 +53,7 @@ const Account = () => {
>
<AccountIcon />
</Flex>
<Box>
{ens?.name
? ens.name
: accountAddress.replace(accountAddress.slice(6, 38), "…")}
</Box>
<Box>{ens?.name ? ens.name : formatAddress(accountAddress)}</Box>
</A>
</Flex>
</Box>
Expand Down
4 changes: 2 additions & 2 deletions components/AccountCell/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { textTruncate } from "@lib/utils";
import { formatAddress, textTruncate } from "@lib/utils";
import { Box, Flex } from "@livepeer/design-system";
import { useEnsData } from "hooks";
import { QRCodeCanvas } from "qrcode.react";
Expand Down Expand Up @@ -88,7 +88,7 @@ const Index = ({ active, address }) => {
<Box css={{ fontWeight: 600 }}>
{identity?.name
? textTruncate(identity.name, 12, "…")
: address.replace(address.slice(5, 36), "…")}
: formatAddress(address)}
</Box>
</Flex>
</Flex>
Expand Down
6 changes: 2 additions & 4 deletions components/Claim/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { LAYOUT_MAX_WIDTH } from "@layouts/constants";
import { l2Migrator } from "@lib/api/abis/bridge/L2Migrator";
import { getL2MigratorAddress } from "@lib/api/contracts";
import { formatAddress } from "@lib/utils";
import { Box, Button, Container, Flex, Text } from "@livepeer/design-system";
import { ArrowTopRightIcon } from "@modulz/radix-icons";
import { constants, ethers } from "ethers";
Expand Down Expand Up @@ -202,10 +203,7 @@ const Claim = () => {
borderBottom: "1px solid rgba(255,255,255, .2)",
}}
>
{migrationParams.delegate.replace(
migrationParams.delegate.slice(6, 38),
"…"
)}
{formatAddress(migrationParams.delegate)}
</Box>
</Box>
<Flex css={{ marginTop: "$3", alignItems: "center" }}>
Expand Down
7 changes: 2 additions & 5 deletions components/DelegatingView/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ExplorerTooltip } from "@components/ExplorerTooltip";
import Stat from "@components/Stat";
import { bondingManager } from "@lib/api/abis/main/BondingManager";
import { checkAddressEquality } from "@lib/utils";
import { checkAddressEquality, formatAddress } from "@lib/utils";
import { Box, Button, Flex, Link as A, Text } from "@livepeer/design-system";
import { QuestionMarkCircledIcon } from "@modulz/radix-icons";
import { AccountQueryResult, OrchestratorsSortedQueryResult } from "apollo";
Expand Down Expand Up @@ -167,10 +167,7 @@ const Index = ({ delegator, transcoders, protocol, currentRound }: Props) => {
<Box>
{delegateIdentity?.name
? delegateIdentity?.name
: delegator?.delegate?.id.replace(
delegator?.delegate?.id.slice(7, 37),
"…"
)}
: formatAddress(delegator?.delegate?.id)}
</Box>
}
/>{" "}
Expand Down
3 changes: 2 additions & 1 deletion components/DelegatingWidget/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { EnsIdentity } from "@lib/api/types/get-ens";
import { formatAddress } from "@lib/utils";
import { Box, Flex, Heading } from "@livepeer/design-system";
import { QRCodeCanvas } from "qrcode.react";

Expand Down Expand Up @@ -58,7 +59,7 @@ const Header = ({
<Heading size="1" css={{ fontWeight: 700 }}>
{delegateProfile?.name
? delegateProfile.name
: transcoder?.id.replace(transcoder.id.slice(7, 37), "…")}
: formatAddress(transcoder?.id)}
</Heading>
<Box
css={{
Expand Down
Loading