Skip to content

Commit 5310e59

Browse files
committed
fix: token icons
1 parent cbc1b54 commit 5310e59

File tree

2 files changed

+1
-17
lines changed

2 files changed

+1
-17
lines changed

src/components/transactions/Bridge/BridgeConfig.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ const prodConfig: Config[] = [
5858
symbol: 'GHO',
5959
decimals: 18,
6060
chainId: ChainId.mainnet,
61-
logoURI:
62-
'https://assets.coingecko.com/coins/images/30663/standard/gho-token-logo.png?1720517092',
6361
oracle: AaveV3Ethereum.ASSETS.GHO.ORACLE,
6462
extensions: {
6563
isNative: false,
@@ -72,8 +70,6 @@ const prodConfig: Config[] = [
7270
decimals: 18,
7371
address: constants.AddressZero, // Use zero address for network token ccip
7472
chainId: ChainId.mainnet,
75-
logoURI:
76-
'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png',
7773
extensions: {
7874
isNative: true,
7975
},
@@ -96,8 +92,6 @@ const prodConfig: Config[] = [
9692
symbol: 'GHO',
9793
decimals: 18,
9894
chainId: ChainId.arbitrum_one,
99-
logoURI:
100-
'https://assets.coingecko.com/coins/images/30663/standard/gho-token-logo.png?1720517092',
10195
oracle: AaveV3Arbitrum.ASSETS.GHO.ORACLE,
10296
extensions: {
10397
isNative: false,
@@ -110,8 +104,6 @@ const prodConfig: Config[] = [
110104
decimals: 18,
111105
address: constants.AddressZero, // Use zero address for network token ccip
112106
chainId: ChainId.arbitrum_one,
113-
logoURI:
114-
'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png',
115107
extensions: {
116108
isNative: true,
117109
},
@@ -134,8 +126,6 @@ const prodConfig: Config[] = [
134126
symbol: 'GHO',
135127
decimals: 18,
136128
chainId: ChainId.base,
137-
logoURI:
138-
'https://assets.coingecko.com/coins/images/30663/standard/gho-token-logo.png?1720517092',
139129
oracle: AaveV3Base.ASSETS.GHO.ORACLE,
140130
extensions: {
141131
isNative: false,
@@ -148,8 +138,6 @@ const prodConfig: Config[] = [
148138
decimals: 18,
149139
address: constants.AddressZero, // Use zero address for network token ccip
150140
chainId: ChainId.base,
151-
logoURI:
152-
'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png',
153141
extensions: {
154142
isNative: true,
155143
},
@@ -172,8 +160,6 @@ const prodConfig: Config[] = [
172160
decimals: 18,
173161
address: constants.AddressZero, // Use zero address for network token ccip
174162
chainId: ChainId.avalanche,
175-
logoURI:
176-
'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2/logo.png',
177163
extensions: {
178164
isNative: true,
179165
},
@@ -196,8 +182,6 @@ const prodConfig: Config[] = [
196182
decimals: 18,
197183
address: constants.AddressZero, // Use zero address for network token ccip
198184
chainId: ChainId.xdai,
199-
logoURI:
200-
'/icons/tokens/wxdai.svg',
201185
extensions: {
202186
isNative: true,
203187
},

src/components/transactions/Bridge/BridgeFeeTokenSelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const BridgeFeeTokenSelector = ({
111111
}}
112112
>
113113
<Box display="flex" alignItems={'center'}>
114-
<TokenIcon sx={{ fontSize: '1em', paddingRight: '4px' }} symbol={token.symbol} />
114+
<TokenIcon sx={{ fontSize: '1em', mr: 1 }} symbol={token.symbol} />
115115
{token.symbol}
116116
</Box>
117117
</MenuItem>

0 commit comments

Comments
 (0)