@lukso/lsp23-contracts 0.15.0-rc.0 → 0.15.0-rc.4
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/README.md +6 -0
- package/artifacts/ILSP23LinkedContractsFactory.json +517 -0
- package/artifacts/UniversalProfileInitPostDeploymentModule.json +742 -0
- package/artifacts/UniversalProfilePostDeploymentModule.json +716 -0
- package/package.json +5 -5
- package/types/{LSP23LinkedContractsFactory.ts → contracts/ILSP23LinkedContractsFactory.ts} +5 -5
- package/types/contracts/modules/UniversalProfileInitPostDeploymentModule.ts +795 -0
- package/types/contracts/modules/UniversalProfilePostDeploymentModule.ts +747 -0
- package/types/index.ts +2807 -8
- package/types/IPostDeploymentModule.ts +0 -107
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lukso/lsp23-contracts",
|
3
|
-
"version": "0.15.0-rc.
|
3
|
+
"version": "0.15.0-rc.4",
|
4
4
|
"description": "Package for the LSP23 Linked Contracts Factory standard",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"author": "",
|
@@ -36,17 +36,17 @@
|
|
36
36
|
"Solidity"
|
37
37
|
],
|
38
38
|
"scripts": {
|
39
|
-
"package": "hardhat prepare-package",
|
40
39
|
"build": "hardhat compile --show-stack-traces",
|
41
|
-
"build:types": "npx
|
40
|
+
"build:types": "npx wagmi generate",
|
42
41
|
"clean": "hardhat clean && rm -Rf dist/",
|
43
42
|
"format": "prettier --write .",
|
44
43
|
"lint": "eslint . --ext .ts,.js",
|
45
|
-
"lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'"
|
44
|
+
"lint:solidity": "solhint 'contracts/**/*.sol' && prettier --check 'contracts/**/*.sol'",
|
45
|
+
"package": "hardhat prepare-package"
|
46
46
|
},
|
47
47
|
"dependencies": {
|
48
48
|
"@erc725/smart-contracts": "^7.0.0",
|
49
49
|
"@openzeppelin/contracts": "^4.9.3",
|
50
|
-
"@lukso/universalprofile-contracts": "
|
50
|
+
"@lukso/universalprofile-contracts": "~0.15.0-rc.1"
|
51
51
|
}
|
52
52
|
}
|
@@ -21,7 +21,7 @@ import type {
|
|
21
21
|
TypedLogDescription,
|
22
22
|
TypedListener,
|
23
23
|
TypedContractMethod,
|
24
|
-
} from "
|
24
|
+
} from "../common";
|
25
25
|
|
26
26
|
export declare namespace ILSP23LinkedContractsFactory {
|
27
27
|
export type PrimaryContractDeploymentStruct = {
|
@@ -97,7 +97,7 @@ export declare namespace ILSP23LinkedContractsFactory {
|
|
97
97
|
};
|
98
98
|
}
|
99
99
|
|
100
|
-
export interface
|
100
|
+
export interface ILSP23LinkedContractsFactoryInterface extends Interface {
|
101
101
|
getFunction(
|
102
102
|
nameOrSignature:
|
103
103
|
| "computeAddresses"
|
@@ -227,11 +227,11 @@ export namespace DeployedERC1167ProxiesEvent {
|
|
227
227
|
export type LogDescription = TypedLogDescription<Event>;
|
228
228
|
}
|
229
229
|
|
230
|
-
export interface
|
231
|
-
connect(runner?: ContractRunner | null):
|
230
|
+
export interface ILSP23LinkedContractsFactory extends BaseContract {
|
231
|
+
connect(runner?: ContractRunner | null): ILSP23LinkedContractsFactory;
|
232
232
|
waitForDeployment(): Promise<this>;
|
233
233
|
|
234
|
-
interface:
|
234
|
+
interface: ILSP23LinkedContractsFactoryInterface;
|
235
235
|
|
236
236
|
queryFilter<TCEvent extends TypedContractEvent>(
|
237
237
|
event: TCEvent,
|