@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lukso/lsp23-contracts",
3
- "version": "0.15.0-rc.0",
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 typechain --target=ethers-v6 ./artifacts/*.json --out-dir types",
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 "./common";
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 LSP23LinkedContractsFactoryInterface extends 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 LSP23LinkedContractsFactory extends BaseContract {
231
- connect(runner?: ContractRunner | null): LSP23LinkedContractsFactory;
230
+ export interface ILSP23LinkedContractsFactory extends BaseContract {
231
+ connect(runner?: ContractRunner | null): ILSP23LinkedContractsFactory;
232
232
  waitForDeployment(): Promise<this>;
233
233
 
234
- interface: LSP23LinkedContractsFactoryInterface;
234
+ interface: ILSP23LinkedContractsFactoryInterface;
235
235
 
236
236
  queryFilter<TCEvent extends TypedContractEvent>(
237
237
  event: TCEvent,