Skip to content
Merged
Changes from 1 commit
Commits
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
4 changes: 4 additions & 0 deletions apps/insights/src/static-data/stats.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ export const totalVolumeTraded = [
{ date: new Date("29 Nov '24"), volume: 106_950_000_000 },
{ date: new Date("30 Dec '24"), volume: 128_300_000_000 },
{ date: new Date("31 Jan '25"), volume: 132_100_000_000 },
{ date: new Date("29 Feb '25"), volume: 142_000_000_000 },
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The volume here should be 92_200_000_000

];

export const activeChains = [
Expand Down Expand Up @@ -69,6 +70,7 @@ export const activeChains = [
{ date: new Date("29 Nov '24"), chains: 88 },
{ date: new Date("30 Dec '24"), chains: 93 },
{ date: new Date("31 Jan '25"), chains: 97 },
{ date: new Date("29 Feb '25"), chains: 104 },
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The value for chains should be 100

];

export const activePublishers = [
Expand Down Expand Up @@ -116,6 +118,7 @@ export const activePublishers = [
{ date: new Date("30 Nov '24"), numPublishers: 121 },
{ date: new Date("31 Dec '24"), numPublishers: 122 },
{ date: new Date("31 Jan '25"), numPublishers: 123 },
{ date: new Date("29 Feb '25"), numPublishers: 134 },
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The value for numPublishers should be 124

];

export const activeFeeds = [
Expand Down Expand Up @@ -156,4 +159,5 @@ export const activeFeeds = [
{ date: new Date("29 Nov '24"), numFeeds: 592 },
{ date: new Date("30 Dec '24"), numFeeds: 637 },
{ date: new Date("31 Jan '25"), numFeeds: 693 },
{ date: new Date("29 Feb '25"), numFeeds: 1340 },
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The value for numFeeds should be 1290

];
Loading