From b9e6f616a8061bb8fd729364865fd3d9fdc4a175 Mon Sep 17 00:00:00 2001 From: Fallengirl <155266340+Fallengirl@users.noreply.github.com> Date: Wed, 19 Feb 2025 15:58:10 +0100 Subject: [PATCH 1/2] Update advanced-use-cases.md --- developerDocs/advanced-use-cases.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developerDocs/advanced-use-cases.md b/developerDocs/advanced-use-cases.md index 852ed517e..0fac25ff1 100644 --- a/developerDocs/advanced-use-cases.md +++ b/developerDocs/advanced-use-cases.md @@ -44,7 +44,7 @@ await openseaSDK.fulfillOrder({ }) ``` -If the order is a listing (sell order, ask, `OrderSide.LISTING`), the taker is the _buyer_ and this will prompt the buyer to pay for the item(s) but send them to the `recipientAddress`. If the order is an offer (buy order, bid, `OrderSide.OFFER`), the taker is the _seller_ but the bid amount be sent to the `recipientAddress`. +If the order is a listing (sell order, ask, `OrderSide.LISTING`), the taker is the _buyer_ and this will prompt the buyer to pay for the item(s) but send them to the `recipientAddress`. If the order is an offer (buy order, bid, `OrderSide.OFFER`), the taker is the _seller_ but the bid amount will be sent to the `recipientAddress`. This will automatically approve the assets for trading and confirm the transaction for sending them. From 537f2e2d24ab19d6b75d5cb29d1e587942341f48 Mon Sep 17 00:00:00 2001 From: Fallengirl <155266340+Fallengirl@users.noreply.github.com> Date: Wed, 19 Feb 2025 15:58:29 +0100 Subject: [PATCH 2/2] Update faq.md --- developerDocs/faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developerDocs/faq.md b/developerDocs/faq.md index 0db686579..26856fd20 100644 --- a/developerDocs/faq.md +++ b/developerDocs/faq.md @@ -21,6 +21,6 @@ See the [Chain enum](https://github.com/ProjectOpenSea/opensea-js/blob/main/src/ Please note a number of older SDK methods (API v1) only support Ethereum Mainnet and Sepolia due to Rest API restrictions. Please use methods in the v2 API for multichain capabilities. -## Why is there is no SDK method for the API request I am trying to call? +## Why is there no SDK method for the API request I am trying to call? If the SDK does not currently have a specific API, you can use the generic [GET and POST methods](https://github.com/ProjectOpenSea/opensea-js/blob/main/src/api/api.ts#L612-L636) to make any API Request. This repository is also open source, so please feel free to create a pull request.