diff --git a/lib/dex-gamma/src/edge.rs b/lib/dex-gamma/src/edge.rs index ed4e3b2..cafe6a5 100644 --- a/lib/dex-gamma/src/edge.rs +++ b/lib/dex-gamma/src/edge.rs @@ -42,7 +42,7 @@ impl DexEdgeIdentifier for GammaEdgeIdentifier { } fn accounts_needed(&self) -> usize { - 13 + 11 } fn as_any(&self) -> &dyn Any { diff --git a/lib/router-lib/src/dex/interface.rs b/lib/router-lib/src/dex/interface.rs index d79a560..a59fefe 100644 --- a/lib/router-lib/src/dex/interface.rs +++ b/lib/router-lib/src/dex/interface.rs @@ -117,6 +117,9 @@ pub trait DexEdgeIdentifier: Sync + Send { fn desc(&self) -> String; fn input_mint(&self) -> Pubkey; fn output_mint(&self) -> Pubkey; + /// This should count all account needed to make a swap, excluding: + /// - user wallet address + /// - user output ATA fn accounts_needed(&self) -> usize; fn as_any(&self) -> &dyn Any; }