Skip to content

Commit

Permalink
fix(storage): update getLockNftSignatures type
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadusmanuet committed Dec 19, 2024
1 parent 95a1443 commit 00b54ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/factory/types/utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import type { MetaMap } from ".";
import type { SignerAndSignatureStruct } from "../../contractsTypes/evm/contracts/BridgeStorage";
import type {
TClaimSFT,
TGetChainIdentifier,
Expand All @@ -8,6 +7,7 @@ import type {
TLockNFT,
TLockSFT,
TNftTransferDetailsObject,
TSignerAndSignature,
} from "../../handlers/index";

export type TSupportedChain = keyof MetaMap;
Expand Down Expand Up @@ -52,7 +52,7 @@ export type TChainFactory = {
chain: TGetStorage,
txHash: string,
from: string,
) => Promise<SignerAndSignatureStruct[]>;
) => Promise<TSignerAndSignature[]>;
};

export type TParamMap = {
Expand Down

0 comments on commit 00b54ae

Please sign in to comment.