Skip to content

Commit c1d49f0

Browse files
committed
chore: update incorrect path for contract artifact
1 parent f74db97 commit c1d49f0

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

constants.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Set of constants values as defined in each LUKSO Standards Proposals (LSPs).
33
* @see https://github.com/lukso-network/LIPs/tree/main/LSPs
44
*/
5-
export * from './contracts';
5+
// export * from './contracts';
66

77
import { INTERFACE_ID_LSP0ERC725Account, LSP0_TYPE_IDS } from '@lukso/lsp0-contracts';
88
import { INTERFACE_ID_LSP1, LSP1DataKeys } from '@lukso/lsp1-contracts';

tests/LSP17Extensions/Extension4337/4337.test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { ethers } from 'hardhat';
22
import { SignerWithAddress } from '@nomicfoundation/hardhat-ethers/signers';
3-
import { Signer } from 'ethers';
43
import { EntryPoint__factory, EntryPoint } from '@account-abstraction/contracts';
54

65
import { BytesLike, parseEther } from 'ethers';

tests/LSP20CallVerification/LSP6/Interactions/Security.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -331,10 +331,10 @@ export const testSecurityScenarios = (buildContext: () => Promise<LSP6TestContex
331331
const _reentrancyStatusSlotNumber = ethers.toBigInt(
332332
(
333333
await artifacts.getBuildInfo(
334-
'contracts/LSP6KeyManager/LSP6KeyManager.sol:LSP6KeyManager',
334+
'@lukso/lsp6-contracts/contracts/LSP6KeyManager.sol:LSP6KeyManager',
335335
)
336336
)?.output.contracts[
337-
'contracts/LSP6KeyManager/LSP6KeyManager.sol'
337+
'@lukso/lsp6-contracts/contracts/LSP6KeyManager.sol'
338338
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
339339
// @ts-ignore
340340
].LSP6KeyManager.storageLayout.storage.filter((elem) => {

tests/LSP7DigitalAsset/LSP7Mintable.behaviour.ts

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import { expect } from 'chai';
55
import {
66
UniversalReceiverDelegateTokenReentrant__factory,
77
LSP7Mintable,
8-
LSP6KeyManager,
9-
UniversalProfile,
108
UniversalProfileInit,
119
LSP6KeyManagerInit,
1210
UniversalReceiverDelegateTokenReentrant,

0 commit comments

Comments
 (0)