From b09cab895144c85aa7a3271ccc4ba7baa7be6ebc Mon Sep 17 00:00:00 2001 From: sachin Date: Fri, 7 Feb 2025 14:33:26 -0800 Subject: [PATCH] cleanup --- package.json | 2 +- src/utils/utils.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 879f9f897..bef1d9590 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/utils/utils.ts b/src/utils/utils.ts index 56fd1815a..0091ad193 100644 --- a/src/utils/utils.ts +++ b/src/utils/utils.ts @@ -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}`); } @@ -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}`); }