Replies: 1 comment 3 replies
-
the offererSignature will work without the corresponding api key. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to implement offchain cancel offer feature. It works, when the offerer and the apiKey match, but it does not when I sign a message from the offerer and include that signature to a request with an apiKey from a different wallet. It complains with apiKey is not from offerer, although signature is valid. So my question is does cancel request works with just offererSignature or we need offererSignature and api key from same wallet to cance the offer?
here is my code
`const domain = {
name: SEAPORT_CONTRACT_NAME,
version: SEAPORT_CONTRACT_VERSION_V1_6,
chainId: "1",
verifyingContract: CROSS_CHAIN_SEAPORT_V1_6_ADDRESS,
};
The docs here https://docs.opensea.io/reference/cancel_order says it should work with either one but does not seems to work for me.
Any help will be really appreciated
Beta Was this translation helpful? Give feedback.
All reactions