templar_common/versioned_state/
near.rs

1use near_sdk::ext_contract;
2
3#[ext_contract]
4pub trait MigrateExternalInterface {
5    fn get_stored_state_version() -> u32;
6    fn get_target_state_version() -> u32;
7    fn needs_migration() -> bool;
8}