Merge pull request #151 from propeller-heads/encoding/tnl/fix-ekubo-grouping

fix: Proper ekubo protocol name in GROUPABLE_PROTOCOLS
This commit is contained in:
Tamara
2025-04-03 12:06:51 +02:00
committed by GitHub

View File

@@ -12,6 +12,6 @@ pub static GROUPABLE_PROTOCOLS: LazyLock<HashSet<&'static str>> = LazyLock::new(
let mut set = HashSet::new();
set.insert("uniswap_v4");
set.insert("balancer_v3");
set.insert("ekubo");
set.insert("ekubo_v2");
set
});