ExecuteMsg: {
    update_admin: {
        admin: Addr;
    };
} | {
    update_exchange_rate: {
        denom: string;
        exchange_rate: Decimal;
    };
} | {
    delete_exchange_rate: {
        denom: string;
    };
} | {
    update_tax_cap: {
        cap: Uint128;
        denom: string;
    };
} | {
    update_tax_rate: {
        rate: Decimal;
    };
}

©2020 - 2023 Oraichain Foundation