diff --git a/packages/veraswap-sdk/src/uniswap/constants/tokens.ts b/packages/veraswap-sdk/src/uniswap/constants/tokens.ts index 92c276f2..ddd06da3 100644 --- a/packages/veraswap-sdk/src/uniswap/constants/tokens.ts +++ b/packages/veraswap-sdk/src/uniswap/constants/tokens.ts @@ -537,7 +537,13 @@ class ExtendedEther extends NativeCurrency { } protected constructor(chainId: number) { - super({ chainId, decimals: 18, symbol: "ETH", name: "Ethereum" }); + super({ + chainId, + decimals: 18, + symbol: "ETH", + name: "Ethereum", + logoURI: "https://token-icons.s3.amazonaws.com/eth.png", + }); } private static _cachedExtendedEther: Record = {};