Interface FactoryFeeDestinationAddressChangedEvent

Event emitted when the fee recipient address is changed. The event reports who changed the address, what it was and what it was changed to.

interface FactoryFeeDestinationAddressChangedEvent {
    contractType: "SoroswapFactory";
    eventType: "fee_to";
    feeSettingAddress: string;
    ledger: number;
    newFeeDestinationAddress: string;
    oldFeeDestinationAddress: string;
    timestamp: number;
}

Hierarchy

  • BaseFactoryEvent
    • FactoryFeeDestinationAddressChangedEvent

Properties

contractType
eventType
feeSettingAddress: string
ledger: number
newFeeDestinationAddress: string
oldFeeDestinationAddress: string
timestamp: number