diff --git a/crates/src/defi/auction/vrgda.cairo b/crates/src/defi/auction/vrgda.cairo index b57da4eb..b5a50ca5 100644 --- a/crates/src/defi/auction/vrgda.cairo +++ b/crates/src/defi/auction/vrgda.cairo @@ -46,7 +46,7 @@ impl TVRGDATrait, +VRGDATargetTimeTrait> of VRGDATrait< /// A Linear Variable Rate Gradual Dutch Auction (VRGDA) struct. /// Represents an auction where the price decays linearly based on the target price, /// decay constant, and per-time-unit rate. -#[derive(Copy, Drop, Serde, starknet::Storage)] +#[derive(Copy, Drop, Serde, starknet::Store)] struct LinearVRGDA { target_price: Fixed, decay_constant: Fixed, @@ -81,7 +81,7 @@ impl LinearVRGDATargetTimeImpl of VRGDATargetTimeTrait { impl LinearVRGDAImpl = TVRGDATrait; -#[derive(Copy, Drop, Serde, starknet::Storage)] +#[derive(Copy, Drop, Serde, starknet::Store)] struct LogisticVRGDA { target_price: Fixed, decay_constant: Fixed,