Skip to content

Commit

Permalink
Update naming
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolev-igor committed Sep 11, 2024
1 parent 86f76a6 commit ce8ce64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/callers/UniswapV2Caller.sol
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { Weth } from "../shared/Weth.sol";
/**
* @title Uniswap caller that executes swaps on UniswapV2-like pools
*/
contract UniswapCaller is ICaller, TokensHandler, Weth {
contract UniswapV2Caller is ICaller, TokensHandler, Weth {
address internal constant ETH = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;

/**
Expand Down
4 changes: 2 additions & 2 deletions scripts/3_deploy_uniswap_v2_caller.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ try {
console.log(`Working with chainId ${chainId}`);

// We get the contract to deploy
const Contract = await ethers.getContractFactory('UniswapCaller');
const Contract = await ethers.getContractFactory('UniswapV2Caller');
const contract = await Contract.deploy(deploymentAddresses.weth[chainId]);

console.log(`${'UniswapCaller'} deployed to: ${contract.address}`);
console.log(`${'UniswapV2Caller'} deployed to: ${contract.address}`);

return contract.address;
})();
Expand Down

0 comments on commit ce8ce64

Please sign in to comment.