diff --git a/examples/orderbook/fulfill-collection-bid-with-nextjs/src/app/fulfill-collection-bid-with-erc1155/page.tsx b/examples/orderbook/fulfill-collection-bid-with-nextjs/src/app/fulfill-collection-bid-with-erc1155/page.tsx index 74469262b0..60a5a892d6 100644 --- a/examples/orderbook/fulfill-collection-bid-with-nextjs/src/app/fulfill-collection-bid-with-erc1155/page.tsx +++ b/examples/orderbook/fulfill-collection-bid-with-nextjs/src/app/fulfill-collection-bid-with-erc1155/page.tsx @@ -215,6 +215,8 @@ export default function FulfillERC1155WithPassport() { setLoadingState(false); } + // #doc fulfill-erc1155-collection-bid + // Fulfill ERC1155 collection bid const fulfillERC1155CollectionBid = async ( collectionBidID: string, amount: string, @@ -238,6 +240,7 @@ export default function FulfillERC1155WithPassport() { } } } + // #enddoc fulfill-erc1155-collection-bid return ( diff --git a/examples/orderbook/fulfill-collection-bid-with-nextjs/src/app/fulfill-collection-bid-with-erc721/page.tsx b/examples/orderbook/fulfill-collection-bid-with-nextjs/src/app/fulfill-collection-bid-with-erc721/page.tsx index b965802d79..dcae10f44f 100644 --- a/examples/orderbook/fulfill-collection-bid-with-nextjs/src/app/fulfill-collection-bid-with-erc721/page.tsx +++ b/examples/orderbook/fulfill-collection-bid-with-nextjs/src/app/fulfill-collection-bid-with-erc721/page.tsx @@ -193,6 +193,8 @@ export default function FulfillERC721WithPassport() { setLoadingState(false); } + // #doc fulfil-erc721-collection-bid + // FulFill ERC721 Collection Bid const fulfillERC721CollectionBid = async ( collectionBidID: string, tokenID: string @@ -215,6 +217,7 @@ export default function FulfillERC721WithPassport() { } } } + // #enddoc fulfil-erc721-collection-bid return (