Interface FactoryFeeSettingAddressChangedEvent

Event emitted when the fee setter address is changed. The event reports which address the ability to change the fees was granted to as well as who had it.

interface FactoryFeeSettingAddressChangedEvent {
    contractType: "SoroswapFactory";
    eventType: "setter";
    ledger: number;
    newfeeSettingAddress: string;
    oldfeeSettingAddress: string;
    timestamp: number;
}

Hierarchy

  • BaseFactoryEvent
    • FactoryFeeSettingAddressChangedEvent

Properties

contractType
eventType
ledger: number
newfeeSettingAddress: string
oldfeeSettingAddress: string
timestamp: number