Skip to content

Commit 4144056

Browse files
fix(sdk): correct typechain import paths after ERC734 move to core
1 parent 64d35e8 commit 4144056

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/sdk/src/lib/dataProtectorCore/smartContract/getDataProtectorCoreContract.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Contract } from 'ethers';
22
import { IExec } from 'iexec';
33
import { ABI } from '../../../../generated/abis/core/interfaces/IDataProtector.sol/IDataProtector.js';
4-
import { IDataProtector } from '../../../../generated/typechain/core/interfaces/IDataProtector.js';
4+
import { IDataProtector } from '../../../../generated/typechain/interfaces/IDataProtector.js';
55
import { AddressOrENS } from '../../types/commonTypes.js';
66

77
export async function getDataProtectorCoreContract(

packages/sdk/src/lib/dataProtectorCore/smartContract/getWhitelistContract.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Contract } from 'ethers';
22
import { IExec } from 'iexec';
33
import { ABI } from '../../../../generated/abis/core/registry/ERC734.sol/ERC734.js';
4-
import { ERC734 } from '../../../../generated/typechain/core/registry/ERC734.js';
4+
import { ERC734 } from '../../../../generated/typechain/registry/ERC734.js';
55
import { AddressOrENS } from '../../types/commonTypes.js';
66

77
export async function getWhitelistContract(

packages/sdk/src/lib/dataProtectorCore/smartContract/whitelistContract.read.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { zeroPadValue } from 'ethers';
22
import { Address } from 'iexec';
3-
import { ERC734 } from '../../../../generated/typechain/core/registry/ERC734.js';
3+
import { ERC734 } from '../../../../generated/typechain/registry/ERC734.js';
44
import { GROUP_MEMBER_PURPOSE } from '../../../config/config.js';
55

66
export const isAddressInWhitelist = async ({

0 commit comments

Comments
 (0)