stellar-token-manager 1.1.4

TokenManager contract, responsible for managing tokens via the Stellar InterchainTokenService.
Documentation
1
2
3
4
5
6
7
8
9
use stellar_axelar_std::{contracterror, soroban_sdk};

#[contracterror]
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
#[repr(u32)]
pub enum ContractError {
    MigrationNotAllowed = 1,
    MigrationInProgress = 2,
}