Type Alias PrepareV3CreatePoolResult

PrepareV3CreatePoolResult:
    | {
        status: "ready";
        snapshot: V3PoolSnapshot;
        action: PreparedV3CreatePoolAction;
    }
    | {
        status: "already-exists";
        snapshot: Exclude<V3PoolSnapshot, { status: "absent" }>;
        action: null;
    }