Skip to content

Commit

Permalink
Merge pull request #575 from OasisDEX/daily-improvements-18-oct
Browse files Browse the repository at this point in the history
Daily improvements - 18 October
  • Loading branch information
juan-langa authored Oct 18, 2024
2 parents 6a3b994 + 1e6c51c commit b77636c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tests/withRealWallet/aaveV3Arbitrum.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ test.describe('Aave v3 - Arbitrum - Wallet connected', async () => {
});
});

test('It should open an Aave v3 Earn correlated Arbitrum position - WEETH/ETH @regression', async () => {
// NO LIQUIDITY --> To be replaced with another pool
test.skip('It should open an Aave v3 Earn correlated Arbitrum position - WEETH/ETH @regression', async () => {
test.setTimeout(longTestTimeout);

await app.page.goto('/arbitrum/aave/v3/multiply/WEETH-ETH#setup');
Expand Down
5 changes: 4 additions & 1 deletion utils/tenderly.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export const getTxCount = async (forkId: string) => {
export const tokenAddresses = {
mainnet: {
AJNA: '0x9a96ec9b57fb64fbc60b423d1f4da7691bd35079',
CBBTC: '0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf',
CBETH: '0xbe9895146f7af43049ca1c1ae358b0541ea49704',
CLE: '0x8308515d052b52589D66823792021e6e2FbAc405',
DAI: '0x6b175474e89094c44da98b954eedeac495271d0f',
Expand Down Expand Up @@ -104,6 +105,7 @@ export const tokenAddresses = {
base: {
AERO: '0x940181a94a35a4569e4529a3cdfb74e38fd98631',
BSDETH: '0xCb327b99fF831bF8223cCEd12B1338FF3aA322Ff',
CBBTC: '0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf',
CBETH: '0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22',
DAI: '0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb',
EZETH: '0x2416092f143378750bb29b79ed961ab195cceea5',
Expand All @@ -127,6 +129,7 @@ export const tokenBalances = {
AJNA: '10000',
AERO: '300000',
BSDETH: '1000',
CBBTC: '20',
CBETH: '1000',
CLE: '200000',
DAI: '200000',
Expand Down Expand Up @@ -201,7 +204,7 @@ export const setTokenBalance = async ({
await provider.send('tenderly_setErc20Balance', [
tokenAddresses[network][token],
walletAddress,
token === 'WBTC'
['CBBTC', 'WBTC'].includes(token)
? ethers.toQuantity(ethers.parseUnits(balance, 8))
: token === 'PYUSD' ||
token === 'USDC' ||
Expand Down

0 comments on commit b77636c

Please sign in to comment.