We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d840d3 commit fc01fe4Copy full SHA for fc01fe4
packages/bridging/src/providers/near-intents/util.test.ts
@@ -1,4 +1,4 @@
1
-import { ETH_ADDRESS, SupportedChainId, WRAPPED_NATIVE_CURRENCIES } from '@cowprotocol/sdk-config'
+import { ETH_ADDRESS, NATIVE_CURRENCY_ADDRESS, SupportedChainId } from '@cowprotocol/sdk-config'
2
import { TokenResponse } from '@defuse-protocol/one-click-sdk-typescript'
3
4
import { adaptToken, getTokenByAddressAndChainId } from './util'
@@ -18,7 +18,7 @@ describe('Near Intents Utils', () => {
18
expect(adaptToken(tokenResponse)).toStrictEqual({
19
chainId: SupportedChainId.MAINNET,
20
decimals: 18,
21
- address: WRAPPED_NATIVE_CURRENCIES[SupportedChainId.MAINNET].address,
+ address: NATIVE_CURRENCY_ADDRESS,
22
name: 'ETH',
23
symbol: 'ETH',
24
})
0 commit comments