From 5b3947f2f3dc7341768edfe5eff5c0786e05c74d Mon Sep 17 00:00:00 2001 From: Arrowana Date: Tue, 6 Aug 2024 10:05:09 +1000 Subject: [PATCH] feat: Add Heaven to swap enum --- src/swap.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/swap.rs b/src/swap.rs index 8b81509..c57dcd3 100644 --- a/src/swap.rs +++ b/src/swap.rs @@ -111,6 +111,9 @@ pub enum Swap { PerpsV2Swap, PerpsV2AddLiquidity, PerpsV2RemoveLiquidity, + Heaven { + swap_direction: u8, + }, } #[derive(BorshSerialize, Copy, Clone, PartialEq, Eq, Debug)]