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. 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.