Skip to content

Commit

Permalink
chore: update incorrect path for contract artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ42 committed Feb 20, 2024
1 parent f74db97 commit c1d49f0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Set of constants values as defined in each LUKSO Standards Proposals (LSPs).
* @see https://github.com/lukso-network/LIPs/tree/main/LSPs
*/
export * from './contracts';
// export * from './contracts';

import { INTERFACE_ID_LSP0ERC725Account, LSP0_TYPE_IDS } from '@lukso/lsp0-contracts';
import { INTERFACE_ID_LSP1, LSP1DataKeys } from '@lukso/lsp1-contracts';
Expand Down
1 change: 0 additions & 1 deletion tests/LSP17Extensions/Extension4337/4337.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { ethers } from 'hardhat';
import { SignerWithAddress } from '@nomicfoundation/hardhat-ethers/signers';
import { Signer } from 'ethers';
import { EntryPoint__factory, EntryPoint } from '@account-abstraction/contracts';

import { BytesLike, parseEther } from 'ethers';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -331,10 +331,10 @@ export const testSecurityScenarios = (buildContext: () => Promise<LSP6TestContex
const _reentrancyStatusSlotNumber = ethers.toBigInt(
(
await artifacts.getBuildInfo(
'contracts/LSP6KeyManager/LSP6KeyManager.sol:LSP6KeyManager',
'@lukso/lsp6-contracts/contracts/LSP6KeyManager.sol:LSP6KeyManager',
)
)?.output.contracts[
'contracts/LSP6KeyManager/LSP6KeyManager.sol'
'@lukso/lsp6-contracts/contracts/LSP6KeyManager.sol'
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
].LSP6KeyManager.storageLayout.storage.filter((elem) => {
Expand Down
2 changes: 0 additions & 2 deletions tests/LSP7DigitalAsset/LSP7Mintable.behaviour.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { expect } from 'chai';
import {
UniversalReceiverDelegateTokenReentrant__factory,
LSP7Mintable,
LSP6KeyManager,
UniversalProfile,
UniversalProfileInit,
LSP6KeyManagerInit,
UniversalReceiverDelegateTokenReentrant,
Expand Down

0 comments on commit c1d49f0

Please sign in to comment.