iota_types/timelock/
timelocked_staking.rs

1// Copyright (c) 2024 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4use move_core_types::{ident_str, identifier::IdentStr};
5
6pub const TIMELOCKED_STAKING_MODULE_NAME: &IdentStr = ident_str!("timelocked_staking");
7
8pub const ADD_TIMELOCKED_STAKE_FUN_NAME: &IdentStr = ident_str!("request_add_stake");
9pub const WITHDRAW_TIMELOCKED_STAKE_FUN_NAME: &IdentStr = ident_str!("request_withdraw_stake");