Skip to content

Commit

Permalink
Replace arbitrum goerli support with arbitrum sepolia support (#1289)
Browse files Browse the repository at this point in the history
* update

* update
  • Loading branch information
stuckinaboot authored Nov 20, 2023
1 parent 57f2e6d commit 77f47a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opensea-js",
"version": "6.1.12",
"version": "6.1.13",
"description": "JavaScript SDK for the OpenSea marketplace helps developers build new experiences using NFTs and our marketplace data!",
"license": "MIT",
"author": "OpenSea Developers",
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export enum Chain {
/** Binance Smart Chain Testnet */
BNBTestnet = "bsctestnet",
/** Arbitrum Testnet */
ArbitrumGoerli = "arbitrum_goerli",
ArbitrumSepolia = "arbitrum_sepolia",
/** Avalanche Fuji Testnet */
Fuji = "avalanche_fuji",
/** Optimism Goerli Testnet */
Expand Down
2 changes: 1 addition & 1 deletion src/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ export const isTestChain = (chain: Chain): boolean => {
case Chain.Baobab:
case Chain.BaseGoerli:
case Chain.BNBTestnet:
case Chain.ArbitrumGoerli:
case Chain.ArbitrumSepolia:
case Chain.Fuji:
case Chain.OptimismGoerli:
case Chain.SolanaDevnet:
Expand Down

0 comments on commit 77f47a4

Please sign in to comment.