Skip to content

Commit

Permalink
feat: add NEXT_PUBLIC_MAX_LEGACY_ROUND_ID to the staking apps env vars (
Browse files Browse the repository at this point in the history
  • Loading branch information
nutrina authored Jun 20, 2024
1 parent 15970d8 commit 214b928
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions infra/aws/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ const stakingEnvVars = Object({
NEXT_PUBLIC_INTERCOM_APP_ID: stakingIntercomAppId,
NEXT_PUBLIC_ENABLE_ARBITRUM_MAINNET: "on",
NEXT_PUBLIC_ARBITRUM_RPC_URL: arbitrumRpcUrl,
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/"
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/",
NEXT_PUBLIC_MAX_LEGACY_ROUND_ID: 7,
},
staging: {
NEXT_PUBLIC_CERAMIC_CACHE_ENDPOINT: "https://api.staging.scorer.gitcoin.co/ceramic-cache",
Expand All @@ -124,8 +125,9 @@ const stakingEnvVars = Object({
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID: walletConnectProjectId,
NEXT_PUBLIC_INTERCOM_APP_ID: stakingIntercomAppId,
NEXT_PUBLIC_ENABLE_ARBITRUM_MAINNET: "on",
NEXT_PUBLIC_ARBITRUM_RPC_URL:arbitrumRpcUrl,
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/"
NEXT_PUBLIC_ARBITRUM_RPC_URL: arbitrumRpcUrl,
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/",
NEXT_PUBLIC_MAX_LEGACY_ROUND_ID: 7,
},
production: {
NEXT_PUBLIC_CERAMIC_CACHE_ENDPOINT: "https://api.scorer.gitcoin.co/ceramic-cache",
Expand All @@ -143,7 +145,8 @@ const stakingEnvVars = Object({
NEXT_PUBLIC_INTERCOM_APP_ID: stakingIntercomAppId,
NEXT_PUBLIC_ENABLE_ARBITRUM_MAINNET: "on",
NEXT_PUBLIC_ARBITRUM_RPC_URL: arbitrumRpcUrl,
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/"
NEXT_PUBLIC_GET_GTC_STAKE_API: "https://api.scorer.gitcoin.co/registry/gtc-stake/",
NEXT_PUBLIC_MAX_LEGACY_ROUND_ID: 7,
},
});

Expand Down

0 comments on commit 214b928

Please sign in to comment.