stellar-token-manager 1.1.0

TokenManager contract, responsible for managing tokens via the Stellar InterchainTokenService.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use stellar_axelar_std::interfaces::CustomMigratableInterface;
use stellar_axelar_std::Env;

use crate::error::ContractError;
use crate::TokenManager;

impl CustomMigratableInterface for TokenManager {
    type MigrationData = ();
    type Error = ContractError;

    fn __migrate(_env: &Env, _migration_data: Self::MigrationData) -> Result<(), Self::Error> {
        Ok(())
    }
}