Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sraturi committed Feb 7, 2025
1 parent 24dc0e5 commit b09cab8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
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": "7.1.15",
"version": "7.1.16",
"description": "TypeScript SDK for the OpenSea marketplace helps developers build new experiences using NFTs and our marketplace data",
"license": "MIT",
"author": "OpenSea Developers",
Expand Down
4 changes: 4 additions & 0 deletions src/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ export const getChainId = (chain: Chain) => {
return "1993";
case Chain.BeraChain:
return "80094";
case Chain.FlowTestnet:
return "545";
default:
throw new Error(`Unknown chainId for ${chain}`);
}
Expand Down Expand Up @@ -267,6 +269,8 @@ export const getWETHAddress = (chain: Chain) => {
return "0xe30fedd158a2e3b13e9badaeabafc5516e95e8c7";
case Chain.SeiTestnet:
return "0x3921ea6cf927be80211bb57f19830700285b0ada";
case Chain.FlowTestnet:
return "0x23b1864b73c6E7Cd6D90bDFa3E62B159eBDdbAb3";
default:
throw new Error(`Unknown WETH address for ${chain}`);
}
Expand Down

0 comments on commit b09cab8

Please sign in to comment.