stellar-axelar-operators 1.1.3

AxelarOperators contract, responsible for managing operators and enabling invoking functions with access control and upgradeability.
Documentation
1
2
3
4
5
6
7
8
use stellar_axelar_std::{contractstorage, soroban_sdk, Address};

#[contractstorage]
enum DataKey {
    #[instance]
    #[status]
    Operator { account: Address },
}