Skip to content

Commit 00b54ae

Browse files
fix(storage): update getLockNftSignatures type
1 parent 95a1443 commit 00b54ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/factory/types/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type { MetaMap } from ".";
2-
import type { SignerAndSignatureStruct } from "../../contractsTypes/evm/contracts/BridgeStorage";
32
import type {
43
TClaimSFT,
54
TGetChainIdentifier,
@@ -8,6 +7,7 @@ import type {
87
TLockNFT,
98
TLockSFT,
109
TNftTransferDetailsObject,
10+
TSignerAndSignature,
1111
} from "../../handlers/index";
1212

1313
export type TSupportedChain = keyof MetaMap;
@@ -52,7 +52,7 @@ export type TChainFactory = {
5252
chain: TGetStorage,
5353
txHash: string,
5454
from: string,
55-
) => Promise<SignerAndSignatureStruct[]>;
55+
) => Promise<TSignerAndSignature[]>;
5656
};
5757

5858
export type TParamMap = {

0 commit comments

Comments
 (0)