lens-modules 3.0.1 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/contracts/actions/post/collect/LensCollectedPost.sol +1 -1
- package/contracts/core/base/LensERC721.sol +2 -2
- package/contracts/extensions/primitives/app/AppCore.sol +1 -1
- package/dist/abis.cjs +1 -0
- package/dist/abis.d.cts +38902 -0
- package/dist/abis.d.ts +129 -127
- package/dist/abis.js +1 -1
- package/dist/deployments.cjs +1 -0
- package/dist/deployments.d.cts +760 -0
- package/dist/deployments.d.ts +3 -1
- package/dist/deployments.js +1 -1
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -2
- package/package.json +11 -8
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
|
|
3
3
|
pragma solidity ^0.8.26;
|
|
4
4
|
|
|
5
|
-
import "
|
|
5
|
+
import "../../../core/base/LensERC721.sol";
|
|
6
6
|
import {IERC7572} from "./IERC7572.sol";
|
|
7
7
|
import {IFeed} from "../../../core/interfaces/IFeed.sol";
|
|
8
8
|
import {ITokenURIProvider} from "../../../core/interfaces/ITokenURIProvider.sol";
|
|
@@ -6,8 +6,8 @@ pragma solidity ^0.8.26;
|
|
|
6
6
|
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
|
|
7
7
|
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol";
|
|
8
8
|
import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol";
|
|
9
|
-
import "
|
|
10
|
-
import "
|
|
9
|
+
import "../interfaces/ITokenURIProvider.sol";
|
|
10
|
+
import "../interfaces/IERC4906Events.sol";
|
|
11
11
|
import {Errors} from "../types/Errors.sol";
|
|
12
12
|
import {IERC165} from "@openzeppelin/contracts/interfaces/IERC165.sol";
|
|
13
13
|
import {ERC165} from "@openzeppelin/contracts/utils/introspection/ERC165.sol";
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (C) 2024 Lens Labs. All Rights Reserved.
|
|
3
3
|
pragma solidity ^0.8.26;
|
|
4
4
|
|
|
5
|
-
import "
|
|
5
|
+
import "../../../core/libraries/KeyValueStorageLib.sol";
|
|
6
6
|
import {Errors} from "../../../core/types/Errors.sol";
|
|
7
7
|
|
|
8
8
|
struct ArrayStorageHelper {
|