Skip to content

Commit

Permalink
disable oeth
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelxc committed Feb 21, 2024
1 parent 34f63ae commit 3ce48c0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"typescript": "^5.0.0"
},
"description": "SDK for Patch Wallet",
"version": "0.0.11",
"version": "0.0.12",
"main": "./dist/src/index.js",
"module": "./dist/src/index.js",
"exports": {
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export type HexString = `0x${string}`;

export const supportedChains = [
"matic",
"oeth",
// "oeth",
"arb1",
"linea",
"base",
Expand All @@ -25,7 +25,7 @@ export const socialNetworks = [
"github",
"passphrase",
"discord",
"farcaster"
"farcaster",
] as const;
export type SocialNetwork = (typeof socialNetworks)[number];
export type UserId = `${SocialNetwork | "test"}:${string}`;
Expand Down
14 changes: 7 additions & 7 deletions src/utils/chain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ export const ChainIdForChainName: ChainDetail = {
explorer: "https://polygonscan.com/",
defaultMoonPayCurrency: "USDC_POLYGON",
},
10: {
AlchemyChainNetwork: "opt-mainnet",
CovalentChainName: "optimism-mainnet",
shortName: "oeth",
explorer: "https://optimistic.etherscan.io/",
defaultMoonPayCurrency: "USDC_OPTIMISM",
},
// 10: {
// AlchemyChainNetwork: "opt-mainnet",
// CovalentChainName: "optimism-mainnet",
// shortName: "oeth",
// explorer: "https://optimistic.etherscan.io/",
// defaultMoonPayCurrency: "USDC_OPTIMISM",
// },
42161: {
AlchemyChainNetwork: "arb-mainnet",
CovalentChainName: "arbitrum-mainnet",
Expand Down

0 comments on commit 3ce48c0

Please sign in to comment.