stellar-token-manager 0.1.0

Token Manager contract, which is used to manage tokens via the Stellar Interchain Token Service.
Documentation
1
2
3
4
5
6
7
8
use soroban_sdk::contracterror;

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