Skip to content

How to place an order on-chain? #177

Answered by ryanio
oes-varok asked this question in Q&A
Discussion options

You must be logged in to vote

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

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by ryanio
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants