Skip to content

Commit

Permalink
feat: add celo network support
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu authored and bh2smith committed Aug 11, 2023
1 parent 069bbc1 commit 87a882e
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type NetworkInfo = {
baseAPI?: string;
};

export const NETWORKS_WITH_DONATIONS_DEPLOYED = [1, 4, 5, 56, 100, 137];
export const NETWORKS_WITH_DONATIONS_DEPLOYED = [1, 5, 56, 100, 137];

export const networkInfo = new Map<number, NetworkInfo>([
[
Expand Down Expand Up @@ -53,7 +53,7 @@ export const networkInfo = new Map<number, NetworkInfo>([
100,
{
chainID: 100,
name: "Gnosis Chain (formerly xDai)",
name: "Gnosis Chain",
shortName: "gno",
currencySymbol: "xDAI",
baseAPI: "https://safe-transaction-gnosis-chain.safe.global/api/v1",
Expand Down Expand Up @@ -88,6 +88,16 @@ export const networkInfo = new Map<number, NetworkInfo>([
baseAPI: "https://safe-transaction-arbitrum.safe.global/api/v1",
},
],
[
42220,
{
chainID: 42220,
name: "Celo",
shortName: "celo",
currencySymbol: "Celo",
baseAPI: "https://safe-transaction-celo.safe.global/api/v1",
},
],
[
43114,
{
Expand Down

0 comments on commit 87a882e

Please sign in to comment.