-
Everything is so convoluted here.
Am I completely wrong in understanding this? Does seaport not place the orders on-chain? I have to keep the seller's order in some off-chain database so buyers can use it to call fulfillOrder()? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
you can post the order on chain with validate and if it passes all validation it will appear on opensea validate returns a transaction so you have to await it, like this: const validateTx = this._seaportjs.validate(
[order],
this.state.selectedAddress
);
const result = await validateTx();
console.log(result); but you can also get an opensea api key and send using opensea-js and skip the gas fee |
Beta Was this translation helpful? Give feedback.
you can post the order on chain with validate and if it passes all validation it will appear on opensea
validate returns a transaction so you have to await it, like this:
but you can also get an opensea api key and send using opensea-js and skip the gas fee