From a6aae72993244a465c126f2455163c53751707b4 Mon Sep 17 00:00:00 2001 From: markus <55011443+mdymalla@users.noreply.github.com> Date: Mon, 14 Oct 2024 08:57:15 +1000 Subject: [PATCH] [TD-1662] Add doc tags to collection bids example apps (#2297) --- .../src/app/fulfill-collection-bid-with-erc1155/page.tsx | 3 +++ .../src/app/fulfill-collection-bid-with-erc721/page.tsx | 3 +++ 2 files changed, 6 insertions(+) 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 (