Change triggered by the Set Address update action.

interface SetAddressChange {
    change: string;
    nextValue: Address;
    previousValue: Address;
    type: "SetAddressChange";
}

Properties

change: string
nextValue: Address

Value after the change.

previousValue: Address

Value before the change.

type: "SetAddressChange"