Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sepolia in manager & explorer #2947

Merged
merged 6 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions packages/builder/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ REACT_APP_SUBGRAPH_POLYGON_MUMBAI_API="https://api.thegraph.com/subgraphs/name/a
REACT_APP_SUBGRAPH_ZKSYNC_TESTNET_API="https://api.thegraph.com/subgraphs/name/gitcoinco/grants-round-zkync-era-testnet"
REACT_APP_SUBGRAPH_ZKSYNC_MAINNET_API="https://api.studio.thegraph.com/query/45391/grants-round-zkera/v0.0.2"
REACT_APP_SUBGRAPH_BASE_API="https://api.studio.thegraph.com/query/45391/grants-round-base/v0.0.1"
REACT_APP_SUBGRAPH_SEPOLIA_API=”https://api.thegraph.com/subgraphs/name/bhargavaparoksham/grants-round-sepolia-testnet”

# --------------------------------
# Optional for local development
Expand Down
1 change: 1 addition & 0 deletions packages/builder/.env.test
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ REACT_APP_SUBGRAPH_ZKSYNC_TESTNET_API="https://api.thegraph.com/subgraphs/name/g
REACT_APP_SUBGRAPH_ZKSYNC_MAINNET_API="https://api.studio.thegraph.com/query/45391/grants-round-zkera/v0.0.2"
REACT_APP_GRANTS_STACK_SEARCH_API_BASE_URL="https://gitcoin-search-dev.fly.dev"
REACT_APP_SUBGRAPH_BASE_API="https://api.studio.thegraph.com/query/45391/grants-round-base/v0.0.1"
REACT_APP_SUBGRAPH_SEPOLIA_API=”https://api.thegraph.com/subgraphs/name/bhargavaparoksham/grants-round-sepolia-testnet”

REACT_APP_PINATA_GATEWAY="https://pinata-gateway.com"
REACT_APP_PINATA_JWT="abcedfg"
Expand Down
1 change: 1 addition & 0 deletions packages/builder/src/utils/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ const stagingChains = [
avalancheFuji,
zkSyncEraMainnet,
zkSyncEraTestnet,
sepolia,
];

const productionChains = [
Expand Down
3 changes: 2 additions & 1 deletion packages/common/.env.test
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ REACT_APP_SUBGRAPH_ZKSYNC_TESTNET_API="https://api.thegraph.com/subgraphs/name/g
REACT_APP_SUBGRAPH_ZKSYNC_MAINNET_API="https://api.studio.thegraph.com/query/45391/grants-round-zkera/v0.0.2"
REACT_APP_GRANTS_STACK_SEARCH_API_BASE_URL="https://gitcoin-search-dev.fly.dev"
REACT_APP_SUBGRAPH_BASE_API="https://api.studio.thegraph.com/query/45391/grants-round-base/v0.0.1"
REACT_APP_ALLO_API_URL="https://indexer-staging.fly.dev/graphql"
REACT_APP_ALLO_API_URL="https://indexer-staging.fly.dev/graphql"
REACT_APP_SUBGRAPH_SEPOLIA_API=”https://api.thegraph.com/subgraphs/name/bhargavaparoksham/grants-round-sepolia-testnet”
7 changes: 7 additions & 0 deletions packages/common/src/allo/addresses/allo-v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const projectRegistryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0xb0F4882184EB6e3ed120c5181651D50719329788",
[ChainId.BASE]: "0xA78Daa89fE9C1eC66c5cB1c5833bC8C6Cb307918",
[ChainId.SEPOLIA]: "0x2420EABfA2C0e6f77E435B0B7615c848bF4963AF",
};

export const programFactoryMap: ChainIdToStringMap = {
Expand All @@ -54,6 +55,7 @@ export const programFactoryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x6D341814Be4E2316142D9190E390b494F1dECFAf",
[ChainId.BASE]: "0xDF9BF58Aa1A1B73F0e214d79C652a7dd37a6074e",
[ChainId.SEPOLIA]: "0x79Ba35cb31620db1b5b101A9A13A1b0A82B5BC9e",
};

export const roundFactoryMap: ChainIdToStringMap = {
Expand All @@ -79,6 +81,7 @@ export const roundFactoryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x0Bb6e2dfEaef0Db5809B3979717E99e053Cbae72",
[ChainId.BASE]: "0xc7722909fEBf7880E15e67d563E2736D9Bb9c1Ab",
[ChainId.SEPOLIA]: "0xF1d4F5f21746bCD75fD71eB18992443f4F0edb6f",
};

export const qfVotingStrategyFactoryMap: ChainIdToStringMap = {
Expand All @@ -104,6 +107,7 @@ export const qfVotingStrategyFactoryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x8c28F21D2d8C53eedC58bF9cdCfb7DCF7d809d97",
[ChainId.BASE]: "0xC3A195EEa198e74D67671732E1B8F8A23781D735",
[ChainId.SEPOLIA]: "0xf5D111B57de221774866AC32c4435841F5c141D5",
};

export const dgVotingStrategyDummyContractMap: ChainIdToStringMap = {
Expand All @@ -129,6 +133,7 @@ export const dgVotingStrategyDummyContractMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x0c0B71BA1427cb46424d38133E8187365Cc5466b",
[ChainId.BASE]: "0x73AB205af1476Dc22104A6B8b3d4c273B58C6E27",
[ChainId.SEPOLIA]: "0xB9dDcd73278C7f472867bf3D844E2Cc53a3d3D90",
};

export const merklePayoutStrategyFactoryMap: ChainIdToStringMap = {
Expand All @@ -154,6 +159,7 @@ export const merklePayoutStrategyFactoryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0xbA160C13F8F626e3232078aDFD6eD2f2B2289563",
[ChainId.BASE]: "0xF7c101A95Ea4cBD5DA0Ab9827D7B2C9857440143",
[ChainId.SEPOLIA]: "0xB5CF3fFD3BDfC6A124aa9dD96fE14118Ed8083e5",
};

export const directPayoutStrategyFactoryContractMap: ChainIdToStringMap = {
Expand All @@ -179,4 +185,5 @@ export const directPayoutStrategyFactoryContractMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x4170665B31bC10009f8a69CeaACf3265C3d66797",
[ChainId.BASE]: "0x74c3665540FC8B92Dd06a7e56a51eCa038C18180",
[ChainId.SEPOLIA]: "0xC2B0d8dAdB88100d8509534BB8B5778d1901037d",
};
1 change: 1 addition & 0 deletions packages/common/src/chain-ids.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export enum ChainId {
BASE = 8453,
DEV1 = 313371,
DEV2 = 313372,
SEPOLIA = 11155111,
}

export const RedstoneTokenIds = {
Expand Down
3 changes: 3 additions & 0 deletions packages/common/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@ export function getConfig(): Config {
[ChainId.BASE]: z
.string()
.parse(process.env.REACT_APP_SUBGRAPH_BASE_API),
[ChainId.SEPOLIA]: z
.string()
.parse(process.env.REACT_APP_SUBGRAPH_SEPOLIA_API),
},
gsIndexerEndpoint: z
.string()
Expand Down
1 change: 1 addition & 0 deletions packages/common/src/graphql_fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,5 @@ export const graphQlEndpoints: Record<ChainId, string> = {
[ChainId.ZKSYNC_ERA_MAINNET_CHAIN_ID]:
process.env.REACT_APP_SUBGRAPH_ZKSYNC_MAINNET_API!,
[ChainId.BASE]: process.env.REACT_APP_SUBGRAPH_BASE_API!,
[ChainId.SEPOLIA]: process.env.REACT_APP_SUBGRAPH_SEPOLIA_API!,
};
21 changes: 21 additions & 0 deletions packages/common/src/payoutTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,26 @@ const MAINNET_TOKENS: PayoutToken[] = [
redstoneTokenId: RedstoneTokenIds["mkUSD"],
},
];

const SEPOLIA_TOKENS: PayoutToken[] = [
{
name: "ETH",
chainId: ChainId.SEPOLIA,
address: ethers.constants.AddressZero,
decimal: 18,
logo: TokenNamesAndLogos["ETH"],
redstoneTokenId: RedstoneTokenIds["ETH"],
},
{
name: "DAI",
chainId: ChainId.SEPOLIA,
address: "0x8db0F9eE54753B91ec1d81Bf68074Be82ED30fEb",
decimal: 18,
logo: TokenNamesAndLogos["DAI"],
redstoneTokenId: RedstoneTokenIds["DAI"],
},
];

const OPTIMISM_MAINNET_TOKENS: PayoutToken[] = [
{
name: "DAI",
Expand Down Expand Up @@ -408,6 +428,7 @@ export const payoutTokens = [
...ZKSYNC_ERA_MAINNET_TOKENS,
...ZKSYNC_ERA_TESTNET_TOKENS,
...BASE_TOKENS,
...SEPOLIA_TOKENS,
];

export const getPayoutTokenOptions = (chainId: ChainId): PayoutToken[] => {
Expand Down
1 change: 1 addition & 0 deletions packages/grant-explorer/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ REACT_APP_SUBGRAPH_POLYGON_MUMBAI_API="https://api.thegraph.com/subgraphs/name/a
REACT_APP_SUBGRAPH_ZKSYNC_TESTNET_API="https://api.thegraph.com/subgraphs/name/gitcoinco/grants-round-zkync-era-testnet"
REACT_APP_SUBGRAPH_ZKSYNC_MAINNET_API="https://api.thegraph.com/subgraphs/name/gitcoinco/grants-round-zkync-era-mainnet"
REACT_APP_SUBGRAPH_BASE_API="https://api.studio.thegraph.com/query/45391/grants-round-base/v0.0.1"
REACT_APP_SUBGRAPH_SEPOLIA_API=”https://api.thegraph.com/subgraphs/name/bhargavaparoksham/grants-round-sepolia-testnet”

# Variables below are optional for local development
REACT_APP_DATADOG_APPLICATION_ID=
Expand Down
1 change: 1 addition & 0 deletions packages/grant-explorer/.env.test
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ REACT_APP_SUBGRAPH_ZKSYNC_MAINNET_API="https://api.studio.thegraph.com/query/453
REACT_APP_GRANTS_STACK_SEARCH_API_BASE_URL="https://gitcoin-search-dev.fly.dev"
REACT_APP_ENV="test"
REACT_APP_SUBGRAPH_BASE_API="https://api.studio.thegraph.com/query/45391/grants-round-base/v0.0.1"
REACT_APP_SUBGRAPH_SEPOLIA_API=”https://api.thegraph.com/subgraphs/name/bhargavaparoksham/grants-round-sepolia-testnet”
2 changes: 2 additions & 0 deletions packages/grant-explorer/src/app/chainConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
base,
zkSyncEraMainnet,
zkSyncEraTestnet,
sepolia,
} from "common/src/chains";
import { ChainId } from "common/src/chain-ids";

Expand All @@ -34,6 +35,7 @@ const TESTNET_CHAINS = [
avalancheFuji,
polygonMumbai,
zkSyncEraTestnet,
sepolia,
].map(ensureValidChainId);

const MAINNET_CHAINS = [
Expand Down
1 change: 1 addition & 0 deletions packages/grant-explorer/src/features/api/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ export const MRC_CONTRACTS: Record<ChainId, Hex> = {
[ChainId.ZKSYNC_ERA_MAINNET_CHAIN_ID]:
"0x88e91283d97A482A9e0851dE335d58D97dCfF7b0",
[ChainId.BASE]: "0x7C24f3494CC958CF268a92b45D7e54310d161794",
[ChainId.SEPOLIA]: "0xa54A0c7Bcd37745f7F5817e06b07E2563a07E309",
};
30 changes: 30 additions & 0 deletions packages/grant-explorer/src/features/api/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ export const CHAINS: Record<
name: "Base",
logo: "./logos/base-logo.svg",
},
[ChainId.SEPOLIA]: {
id: ChainId.SEPOLIA,
name: "Sepolia",
logo: "./logos/ethereum-eth-logo.svg",
},
};

export const TokenNamesAndLogos = {
Expand Down Expand Up @@ -161,6 +166,29 @@ export const MAINNET_TOKENS: VotingToken[] = [
},
];

export const SEPOLIA_TOKENS: VotingToken[] = [
{
name: "ETH",
chainId: ChainId.SEPOLIA,
address: zeroAddress,
decimal: 18,
logo: TokenNamesAndLogos["ETH"],
redstoneTokenId: RedstoneTokenIds["ETH"],
defaultForVoting: true,
canVote: true,
},
{
name: "DAI",
chainId: ChainId.SEPOLIA,
address: "0x8db0F9eE54753B91ec1d81Bf68074Be82ED30fEb",
decimal: 18,
logo: TokenNamesAndLogos["DAI"],
redstoneTokenId: RedstoneTokenIds["DAI"],
defaultForVoting: false,
canVote: true,
},
];

export const OPTIMISM_MAINNET_TOKENS: VotingToken[] = [
{
name: "DAI",
Expand Down Expand Up @@ -589,6 +617,7 @@ export const votingTokensMap: VotingTokensMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]: ZKSYNC_ERA_TESTNET_TOKENS,
[ChainId.ZKSYNC_ERA_MAINNET_CHAIN_ID]: ZKSYNC_ERA_MAINNET_TOKENS,
[ChainId.BASE]: BASE_TOKENS,
[ChainId.SEPOLIA]: SEPOLIA_TOKENS,
};

export const getVotingTokenOptions = (chainId: ChainId): VotingToken[] =>
Expand Down Expand Up @@ -623,6 +652,7 @@ export const txExplorerLinks: Record<ChainId, string> = {
"https://goerli.explorer.zksync.io/tx/",
[ChainId.ZKSYNC_ERA_MAINNET_CHAIN_ID]: "https://explorer.zksync.io/tx/",
[ChainId.BASE]: "https://basescan.org/tx/",
[ChainId.SEPOLIA]: "https://sepolia.etherscan.io//tx/",
};

/**
Expand Down
1 change: 1 addition & 0 deletions packages/round-manager/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ REACT_APP_SUBGRAPH_POLYGON_API="https://api.thegraph.com/subgraphs/name/allo-pro
REACT_APP_SUBGRAPH_POLYGON_MUMBAI_API="https://api.thegraph.com/subgraphs/name/allo-protocol/grants-round-mumbai"
REACT_APP_SUBGRAPH_ZKSYNC_TESTNET_API="https://api.thegraph.com/subgraphs/name/gitcoinco/grants-round-zkync-era-testnet"
REACT_APP_SUBGRAPH_ZKSYNC_MAINNET_API="https://api.studio.thegraph.com/query/45391/grants-round-zkera/v0.0.2"
REACT_APP_SUBGRAPH_SEPOLIA_API=”https://api.thegraph.com/subgraphs/name/bhargavaparoksham/grants-round-sepolia-testnet”

# Variables below are optional for local development
REACT_APP_DATADOG_APPLICATION_ID=
Expand Down
3 changes: 2 additions & 1 deletion packages/round-manager/.env.test
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ REACT_APP_SUBGRAPH_POLYGON_MUMBAI_API="https://api.thegraph.com/subgraphs/name/a
REACT_APP_SUBGRAPH_ZKSYNC_TESTNET_API="https://api.thegraph.com/subgraphs/name/gitcoinco/grants-round-zkync-era-testnet"
REACT_APP_SUBGRAPH_ZKSYNC_MAINNET_API="https://api.studio.thegraph.com/query/45391/grants-round-zkera/v0.0.2"
REACT_APP_GRANTS_STACK_SEARCH_API_BASE_URL="https://gitcoin-search-dev.fly.dev"
REACT_APP_SUBGRAPH_BASE_API="https://api.studio.thegraph.com/query/45391/grants-round-base/v0.0.1"
REACT_APP_SUBGRAPH_BASE_API="https://api.studio.thegraph.com/query/45391/grants-round-base/v0.0.1"
REACT_APP_SUBGRAPH_SEPOLIA_API=”https://api.thegraph.com/subgraphs/name/bhargavaparoksham/grants-round-sepolia-testnet”
2 changes: 2 additions & 0 deletions packages/round-manager/src/app/wagmi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import {
base,
zkSyncEraMainnet,
zkSyncEraTestnet,
sepolia,
} from "common/src/chains";
import { publicProvider } from "wagmi/providers/public";
import { infuraProvider } from "wagmi/providers/infura";
Expand All @@ -41,6 +42,7 @@ const testnetChains = () => {
arbitrumGoerli,
polygonMumbai,
avalancheFuji,
sepolia,
];
};

Expand Down
11 changes: 11 additions & 0 deletions packages/round-manager/src/features/api/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const projectRegistryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0xb0F4882184EB6e3ed120c5181651D50719329788",
[ChainId.BASE]: "0xA78Daa89fE9C1eC66c5cB1c5833bC8C6Cb307918",
[ChainId.SEPOLIA]: "0x2420EABfA2C0e6f77E435B0B7615c848bF4963AF",
};

/* GrantHub's ProjectRegistry */
Expand Down Expand Up @@ -76,6 +77,7 @@ const programFactoryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x6D341814Be4E2316142D9190E390b494F1dECFAf",
[ChainId.BASE]: "0xDF9BF58Aa1A1B73F0e214d79C652a7dd37a6074e",
[ChainId.SEPOLIA]: "0x79Ba35cb31620db1b5b101A9A13A1b0A82B5BC9e",
};
/* ProgramFactory */
export const programFactoryContract = (chainId: ChainId): Contract => {
Expand Down Expand Up @@ -111,6 +113,7 @@ const roundFactoryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x0Bb6e2dfEaef0Db5809B3979717E99e053Cbae72",
[ChainId.BASE]: "0xc7722909fEBf7880E15e67d563E2736D9Bb9c1Ab",
[ChainId.SEPOLIA]: "0xF1d4F5f21746bCD75fD71eB18992443f4F0edb6f",
};
/* RoundFactory */
export const roundFactoryContract = (
Expand Down Expand Up @@ -153,6 +156,7 @@ const qfVotingStrategyFactoryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x8c28F21D2d8C53eedC58bF9cdCfb7DCF7d809d97",
[ChainId.BASE]: "0xC3A195EEa198e74D67671732E1B8F8A23781D735",
[ChainId.SEPOLIA]: "0xf5D111B57de221774866AC32c4435841F5c141D5",
};
/* QuadraticFundingVotingStrategy */
export const qfVotingStrategyFactoryContract = (
Expand Down Expand Up @@ -238,6 +242,10 @@ export const dgVotingStrategyDummyContract = (chainId: ChainId): string => {
address = "0x73AB205af1476Dc22104A6B8b3d4c273B58C6E27";
break;
}
case ChainId.SEPOLIA: {
address = "0xB9dDcd73278C7f472867bf3D844E2Cc53a3d3D90";
break;
}
default: {
address = "0x717A2cCDD81944e64c8BD9BB1D179A241dE14B46";
break;
Expand Down Expand Up @@ -273,6 +281,7 @@ const merklePayoutStrategyFactoryMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0xbA160C13F8F626e3232078aDFD6eD2f2B2289563",
[ChainId.BASE]: "0xF7c101A95Ea4cBD5DA0Ab9827D7B2C9857440143",
[ChainId.SEPOLIA]: "0xB5CF3fFD3BDfC6A124aa9dD96fE14118Ed8083e5",
};
export const merklePayoutStrategyFactoryContract = (
chainId: ChainId
Expand Down Expand Up @@ -309,6 +318,7 @@ const alloSettingsContractMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x0FD600678475C03f28baE59A2d55f7a911383e2B",
[ChainId.BASE]: "",
[ChainId.SEPOLIA]: "",
};

/* AlloSettingsContract */
Expand Down Expand Up @@ -347,6 +357,7 @@ const directPayoutStrategyFactoryContractMap: ChainIdToStringMap = {
[ChainId.ZKSYNC_ERA_TESTNET_CHAIN_ID]:
"0x4170665B31bC10009f8a69CeaACf3265C3d66797",
[ChainId.BASE]: "0x74c3665540FC8B92Dd06a7e56a51eCa038C18180",
[ChainId.SEPOLIA]: "0xC2B0d8dAdB88100d8509534BB8B5778d1901037d",
};

/* DirectPayoutStrategyFactoryContract */
Expand Down
21 changes: 21 additions & 0 deletions packages/round-manager/src/features/api/payoutTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,26 @@ const MAINNET_TOKENS: PayoutToken[] = [
redstoneTokenId: RedstoneTokenIds["mkUSD"],
},
];

const SEPOLIA_TOKENS: PayoutToken[] = [
{
name: "ETH",
chainId: ChainId.SEPOLIA,
address: ethers.constants.AddressZero,
decimal: 18,
logo: TokenNamesAndLogos["ETH"],
redstoneTokenId: RedstoneTokenIds["ETH"],
},
{
name: "DAI",
chainId: ChainId.SEPOLIA,
address: "0x8db0F9eE54753B91ec1d81Bf68074Be82ED30fEb",
decimal: 18,
logo: TokenNamesAndLogos["DAI"],
redstoneTokenId: RedstoneTokenIds["DAI"],
},
];

const OPTIMISM_MAINNET_TOKENS: PayoutToken[] = [
{
name: "DAI",
Expand Down Expand Up @@ -418,6 +438,7 @@ export const payoutTokens = [
...ZKSYNC_ERA_MAINNET_TOKENS,
...ZKSYNC_ERA_TESTNET_TOKENS,
...BASE_TOKENS,
...SEPOLIA_TOKENS,
];

export const getPayoutTokenOptions = (chainId: ChainId): PayoutToken[] => {
Expand Down
5 changes: 5 additions & 0 deletions packages/round-manager/src/features/api/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ export const CHAINS: Record<ChainId, Program["chain"]> = {
name: "zkSync Era Testnet",
logo: "/logos/zksync-logo.svg",
},
[ChainId.SEPOLIA]: {
id: ChainId.SEPOLIA,
name: "Sepolia",
logo: "/logos/ethereum-eth-logo.svg",
},
};

export type SupportType = {
Expand Down
Loading