Skip to content

Commit

Permalink
solve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
aburkut committed Feb 13, 2025
2 parents 5b15fe3 + 2626fb1 commit 908efc1
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/dex/wusdm/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,11 @@ export const WUSDMConfig: DexConfigMap<WusdmParams> = {
USDMAddress: '0xe91D153E0b41518A2Ce8Dd3D7944Fa863463a97d', // WXDAI
},
},

wUSDL: {
[Network.MAINNET]: {
wUSDMAddress: '0x7751E2F4b8ae93EF6B79d86419d42FE3295A4559', // wUSDL
USDMAddress: '0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD', // USDL
},
},
};
20 changes: 20 additions & 0 deletions src/dex/wusdm/wusdm-e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,4 +201,24 @@ describe('MountainProtocol E2E', () => {
tokenBAmount,
);
});

describe('wUSDL', () => {
const network = Network.MAINNET;
const dexKey = 'wUSDL';

const tokenASymbol: string = 'wUSDL';
const tokenBSymbol: string = 'USDL';

const tokenAAmount: string = '1000000000000000000';
const tokenBAmount: string = '1000000000000000000';

testForNetwork(
network,
dexKey,
tokenASymbol,
tokenBSymbol,
tokenAAmount,
tokenBAmount,
);
});
});
7 changes: 7 additions & 0 deletions tests/constants-e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,11 @@ export const Tokens: {
decimals: 18,
symbol: 'wUSDL',
},
USDL: {
address: '0xbdC7c08592Ee4aa51D06C27Ee23D5087D65aDbcD',
decimals: 18,
symbol: 'USDL',
},
WrappedM: {
address: '0x437cc33344a0B27A429f795ff6B469C72698B291',
decimals: 6,
Expand Down Expand Up @@ -1870,6 +1875,8 @@ export const Holders: {
'USD0++': '0x2227b6806339906707b43F36a1f07B52FF7Fa776',
USDM: '0x57F5E098CaD7A3D1Eed53991D4d66C45C9AF7812',
wUSDM: '0x3B95bC951EE0f553ba487327278cAc44f29715E5',
USDL: '0xAb96AA0ee764924f49fbB372f3B4db9c2cB24Ea2',
wUSDL: '0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb',
UsualM: '0xE3f7A0c4a44b740328157A5152A85c3bCB54DA09',
},
[Network.POLYGON]: {
Expand Down

0 comments on commit 908efc1

Please sign in to comment.