update lockOrderTypes.ts

This commit is contained in:
TheJuze
2024-05-23 19:38:32 +03:00
parent 6001d75185
commit c262535d05
4 changed files with 5 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ export const signLockOrder = async ({
INTERNAL_PROTOCOL_PRECISION,
BigNumber.ROUND_FLOOR,
)),
targetChainId,
targetChainId: Number(targetChainId),
secretHash
};

View File

@@ -60,7 +60,7 @@ export type LockOrder = {
expiration: number // uint64
asset: string // address(?)
amount: number // uint64
targetChainId: SupportedChainId // uint64
targetChainId: number // uint64
secretHash: string // bytes32
}