diff --git a/lib/constants/index.ts b/lib/constants/index.ts index 7a0732357..3607fa0cd 100644 --- a/lib/constants/index.ts +++ b/lib/constants/index.ts @@ -37,11 +37,6 @@ export const SUPPORTED_WALLET_NAMES = [ ]; export const endpoints: EndpointOption[] = [ - { - value: "wss://main.rpc.zeitgeist.pm/ws", - label: "ZeitgeistPM", - environment: "production", - }, { value: "wss://zeitgeist-rpc.dwellir.com", label: "Dwellir", @@ -52,6 +47,11 @@ export const endpoints: EndpointOption[] = [ label: "OnFinality", environment: "production", }, + { + value: "wss://main.rpc.zeitgeist.pm/ws", + label: "ZeitgeistPM", + environment: "production", + }, { value: "wss://bsr.zeitgeist.pm", label: "Battery Station", diff --git a/pages/leaderboard/[period].tsx b/pages/leaderboard/[period].tsx index 417244424..b0baa101a 100644 --- a/pages/leaderboard/[period].tsx +++ b/pages/leaderboard/[period].tsx @@ -487,7 +487,7 @@ export async function getStaticProps({ params }) { timePeriod: period, bannerPlaceholder: bannerPlaceholder.base64, }, - revalidate: 60 * 60 * 24, //1 day + revalidate: 60 * 24, //1 hour }; }