cw_vesting/
state.rs

1use cw_storage_plus::Item;
2
3use crate::vesting::Payment;
4
5pub const PAYMENT: Payment = Payment::new("vesting", "staked", "validator", "cardinality");
6pub const UNBONDING_DURATION_SECONDS: Item<u64> = Item::new("ubs");