createSellOrder() 429s
See original GitHub issueTried to do the following with:
- HD Truffle Wallet Provider
- The mnemonicWalletSubprovier + infuraRpcSubprovider as shown in examples.
const expirationTime = Math.round(Date.now() / 1000 + 3600)
const listing = await seaport.createSellOrder({
asset: asset,
accountAddress: OWNER_ADDRESS,
startAmount: .3,
// If `endAmount` is specified, the order will decline in value to that amount until `expirationTime`. Otherwise, it's a fixed-price order:
endAmount: 0.1,
expirationTime:expirationTime
}).catch( (err) => {
console.log(err)
})
console.log(listing)
Just returns 429. This call allows me to approve the token on my wallet. But it doesn’t allow me to actually create the sell order, rendering it useless.
Error: API Error 429: Message: {"detail":"Request was throttled."}
Issue Analytics
- State:
- Created 2 years ago
- Comments:8
Top Results From Across the Web
Unable to create sell order with OpenSea SDK, but no errors ...
I'm learning how to use the OpenSea SDK in Node.js (found here) by referring to its example OpenSea Creatures. The SDK links to...
Read more >Opensea JS SDK createSellOrder method doesn't seem to ...
The issue is after I run the script, the method createSellOrder seems to run because I get the following output on my terminal...
Read more >opensea-js - bytemeta
createSellOrder() 429s · Server Error (500) In case of collection and order_by query param · Could not create buy order · CERT_HAS_EXPIRED.
Read more >Error While sending Buy request to an Opensea NFT - Moralis
test.css'; function Ground() { const { Moralis, user, logout, authenticate, ... const createSellOrder = async () => { const expirationTime ...
Read more >opensea-js - githubmemory
createSellOrder() - Unhandled Rejection (Error): API Error 404: Not found. angryDev67 ... createSellOrder() 429s. bkulcsar.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Opensea API throttle part of requests. To prevent API from being overwhelmed by too many requests.
I also faced same error in createBuyOrder function call, so I fixed that with 1 min 20 s delay when I got the error.
My script in NodeJS.