// Copyright (c) Mysten Labs, Inc. // Modifications Copyright (c) 2024 IOTA Stiftung // SPDX-License-Identifier: Apache-2.0 import type { IotaObjectChange } from './generated.js'; export type IotaObjectChangePublished = Extract; export type IotaObjectChangeTransferred = Extract; export type IotaObjectChangeMutated = Extract; export type IotaObjectChangeDeleted = Extract; export type IotaObjectChangeWrapped = Extract; export type IotaObjectChangeCreated = Extract;