Change triggered by the Change Address update action.

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

Properties

change: string
nextValue: Address

Value after the change.

previousValue: Address

Value before the change.

type: "ChangeAddressChange"