Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/orderbook/src/orderbook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ export class Orderbook {
orderHash: listing.orderHash,
orderSignature: sig,
makerFees: listingParam.makerFees,
// 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
}).catch(() => undefined);
}),
);
Expand Down Expand Up @@ -748,7 +748,7 @@ export class Orderbook {
const network = await this.orderbookConfig.provider.getNetwork();
const domain = {
name: 'imtbl-order-book',
chainId: network.chainId.toString(),
chainId: Number(network.chainId),
verifyingContract: this.orderbookConfig.seaportContractAddress,
};

Expand Down