Merge pull request #145 from propeller-heads/router/tnl/ekubo-executor

fix: update ekubo_v2 executor
This commit is contained in:
Tamara
2025-04-02 00:53:25 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

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

View File

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