We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d22fd94 commit 24ed1cdCopy full SHA for 24ed1cd
1 file changed
packages/orderbook/src/orderbook.ts
@@ -418,7 +418,7 @@ export class Orderbook {
418
orderHash: listing.orderHash,
419
orderSignature: sig,
420
makerFees: listingParam.makerFees,
421
- // Swallow failed creations - this gets mapped in the response to the caller as failed
+ // Swallow failed creations - this gets mapped in the response to the caller as failed
422
}).catch(() => undefined);
423
}),
424
);
@@ -748,7 +748,7 @@ export class Orderbook {
748
const network = await this.orderbookConfig.provider.getNetwork();
749
const domain = {
750
name: 'imtbl-order-book',
751
- chainId: network.chainId.toString(),
+ chainId: Number(network.chainId),
752
verifyingContract: this.orderbookConfig.seaportContractAddress,
753
};
754
0 commit comments