|
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()? |
Answered by
ryanio
Apr 29, 2023
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 |
0 replies
Answer selected by
ryanio
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to 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:
but you can also get an opensea api key and send using opensea-js and skip the gas fee