Merge pull request #152 from propeller-heads/router/tnl/ekubo-gas-improvements-deployment

feat: deploy Ekubo gas optimizations
This commit is contained in:
Tamara
2025-04-03 15:32:16 +02:00
committed by GitHub
5 changed files with 6 additions and 10 deletions

View File

@@ -7,7 +7,7 @@
"pancakeswap_v3": "0x4929B619A8F0D9c06ed0FfD497636580D823F65d",
"uniswap_v4": "0x042C0ebBEAb9d9987c2f64Ee05f2B3aeB86eAf70",
"vm:balancer_v2": "0x00BE8EfAE40219Ff76287b0F9b9e497942f5BC91",
"ekubo_v2": "0xA612f60d3C49E5f13f0e067b14E0eD6656F3F279"
"ekubo_v2": "0x4f88f6630a33dB05BEa1FeF7Dc7ff7508D1c531D"
},
"tenderly_ethereum": {
"uniswap_v2": "0x00C1b81e3C8f6347E69e2DDb90454798A6Be975E",

View File

@@ -1,5 +1,5 @@
{
"ethereum": "0x0178f471f219737c51d6005556d2f44de011a08a",
"ethereum": "0xabA2fC41e2dB95E77C6799D0F580034395FF2B9E",
"base": "0xC2C23b0199525DE070D126860133dc3badaD2EEb",
"unichain": "0x9BDC3bE75440dBE563527CB39BB11cFBD1E21b09"
}

View File

@@ -50,11 +50,7 @@ module.exports = {
},
etherscan: {
apiKey: {
unichain: process.env.BLOCKCHAIN_EXPLORER_API_KEY,
base: process.env.BLOCKCHAIN_EXPLORER_API_KEY,
ethereum: process.env.BLOCKCHAIN_EXPLORER_API_KEY,
},
apiKey: process.env.BLOCKCHAIN_EXPLORER_API_KEY,
customChains: [
{
network: "unichain",

View File

@@ -554,7 +554,7 @@ contract TychoRouter is AccessControl, Dispatcher, Pausable, ReentrancyGuard {
}
function locked(uint256) external {
address executor = address(0xA612f60d3C49E5f13f0e067b14E0eD6656F3F279);
address executor = address(0x4f88f6630a33dB05BEa1FeF7Dc7ff7508D1c531D);
// slither-disable-next-line controlled-delegatecall,low-level-calls
(bool success, bytes memory result) = executor.delegatecall(msg.data);
@@ -577,7 +577,7 @@ contract TychoRouter is AccessControl, Dispatcher, Pausable, ReentrancyGuard {
}
function payCallback(uint256, address /*token*/ ) external {
address executor = address(0xA612f60d3C49E5f13f0e067b14E0eD6656F3F279);
address executor = address(0x4f88f6630a33dB05BEa1FeF7Dc7ff7508D1c531D);
// slither-disable-next-line controlled-delegatecall,low-level-calls
(bool success, bytes memory result) = executor.delegatecall(msg.data);

View File

@@ -1021,7 +1021,7 @@ contract TychoRouterTest is TychoRouterTestSetup {
// TEMPORARY while the Ekubo executor address is hardcoded in TychoRouter
// This allows us to change the code at that address to be the testing executor code
vm.etch(
0xA612f60d3C49E5f13f0e067b14E0eD6656F3F279,
0x4f88f6630a33dB05BEa1FeF7Dc7ff7508D1c531D,
0x2a07706473244BC757E10F2a9E86fB532828afe3.code
);