Skip to content

Commit

Permalink
✨ add ausd to deal patch (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinGbz authored Nov 28, 2024
1 parent 12b604d commit c7a5bf0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/CommonTestBase.sol
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,14 @@ contract CommonTestBase is Test {
return true;
}
}
if(block.chainid == ChainIds.AVALANCHE) {
// AUSD
if (asset == 0x00000000eFE302BEAA2b3e6e1b18d08D69a9012a) {
vm.prank(0x2CD78aD719a8c74898c5283f5Bc70920D8A061fd);
IERC20(asset).transfer(user, amount);
return true;
}
}
return false;
}

Expand Down

0 comments on commit c7a5bf0

Please sign in to comment.