From fb147160c2209f90a71da2ac331efa9e3f094ad7 Mon Sep 17 00:00:00 2001 From: Alice <34962750+hensha256@users.noreply.github.com> Date: Mon, 16 Oct 2023 14:55:09 +0100 Subject: [PATCH 1/4] Wrapped chains support (#90) * Wrapped support on more chains * Fix code style issues with Prettier * correction --------- Co-authored-by: Lint Action --- src/entities/weth9.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/entities/weth9.ts b/src/entities/weth9.ts index 560938e1..e6c8b707 100644 --- a/src/entities/weth9.ts +++ b/src/entities/weth9.ts @@ -14,5 +14,11 @@ export const WETH9: { [chainId: number]: Token } = { [69]: new Token(69, '0x4200000000000000000000000000000000000006', 18, 'WETH', 'Wrapped Ether'), [42161]: new Token(42161, '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1', 18, 'WETH', 'Wrapped Ether'), - [421611]: new Token(421611, '0xB47e6A5f8b33b3F17603C83a0535A9dcD7E32681', 18, 'WETH', 'Wrapped Ether') + [421611]: new Token(421611, '0xB47e6A5f8b33b3F17603C83a0535A9dcD7E32681', 18, 'WETH', 'Wrapped Ether'), + + [8453]: new Token(8453, '0x4200000000000000000000000000000000000006', 18, 'WETH', 'Wrapped Ether'), + + [56]: new Token(56, '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c', 18, 'WBNB', 'Wrapped BNB'), + [137]: new Token(137, '0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270', 18, 'WMATIC', 'Wrapped MATIC'), + [43114]: new Token(43114, '0x4200000000000000000000000000000000000006', 18, 'WAVAX', 'Wrapped AVAX') } From 90d54decd02751bbca21ebfc9cb7eaaa959a686c Mon Sep 17 00:00:00 2001 From: Pote <81638931+willpote@users.noreply.github.com> Date: Mon, 16 Oct 2023 10:19:52 -0400 Subject: [PATCH 2/4] 4.0.8 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ddec483f..cde6374a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@uniswap/sdk-core", "license": "MIT", - "version": "4.0.7", + "version": "4.0.8", "description": "⚒️ An SDK for building applications on top of Uniswap V3", "main": "dist/index.js", "typings": "dist/index.d.ts", From 07c6fffb2650f5e41445426343ac9c650e6c2873 Mon Sep 17 00:00:00 2001 From: Alice <34962750+hensha256@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:23:26 +0100 Subject: [PATCH 3/4] Wrapped avax support (#92) --- src/entities/weth9.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entities/weth9.ts b/src/entities/weth9.ts index e6c8b707..9558f922 100644 --- a/src/entities/weth9.ts +++ b/src/entities/weth9.ts @@ -20,5 +20,5 @@ export const WETH9: { [chainId: number]: Token } = { [56]: new Token(56, '0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c', 18, 'WBNB', 'Wrapped BNB'), [137]: new Token(137, '0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270', 18, 'WMATIC', 'Wrapped MATIC'), - [43114]: new Token(43114, '0x4200000000000000000000000000000000000006', 18, 'WAVAX', 'Wrapped AVAX') + [43114]: new Token(43114, '0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7', 18, 'WAVAX', 'Wrapped AVAX') } From 06e102f398802d04d917a2633dff9dec522e16c5 Mon Sep 17 00:00:00 2001 From: Alice <34962750+hensha256@users.noreply.github.com> Date: Mon, 16 Oct 2023 16:43:55 +0100 Subject: [PATCH 4/4] 4.0.9 (#93) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cde6374a..d8b90c30 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@uniswap/sdk-core", "license": "MIT", - "version": "4.0.8", + "version": "4.0.9", "description": "⚒️ An SDK for building applications on top of Uniswap V3", "main": "dist/index.js", "typings": "dist/index.d.ts",