Can't seem to be able to post an erc1155 despite succeeding with an erc721 #42
-
Question Posted: 06 August 2021, in Discord
Hi everyone I've been working with the rarible protocol and it's been awesome so far. I've been able to successfully lazy mint an erc721 and sell it on ropsten but have not been able to post an erc1155 successfully for some reason despite them being very similar. Does anybody have any suggestions or a working sample app that leverages the 1155 workflow? I want to try to troubleshoot myself but without a working version feel like I'm shooting a bit in the dark. Thank you!
hey can you share a couple more details about your setup? Are you using the default collection or have you deployed your own contract? From the UI/ your own app/ scripts?
Sure yep using all default contracts so the ropsten contract in protocol documentation. I am using my own front end but basing the typed data very closely on protocol doc example. I think there is something about the signed message that is mismatching but a similar message worked perfectly for erc721 and as far as I can tell the only difference for 1155 is the addition of the supply uint256. Hope that clarifies!
which API call/ step are you stuck at? Is it the signing of the lazy mint message, or the acceptance by Rarible API?
Hey we deployed token factories on rinkeby and ropsten. Checked them on rinkeby + minted / sold item using this newly created proxies https://rinkeby.etherscan.io/address/0xFb7035295a293041Ef8A2D5287A7eAec9C64917a ERC721 https://rinkeby.etherscan.io/address/0xD910E04A13630d0Bd494f7AAff76D29153b711A8 ERC1155 https://ropsten.etherscan.io/address/0xcFDCE8eAC6FEe69137924204CbB6334281b84e7D#contracts ERC721 https://ropsten.etherscan.io/address/0x7e7f1C09B2B64f882c3e23D704317f7afF5822B9#contracts ERC1155 So, little doc: invoke createToken, pass name, symbol, ipfs:/, then any string (for now) This tx should create beacon proxy for our reference implementations. This will create publis ERC721/ERC1155 Tokens (anyone can mint there) on mainnet: https://etherscan.io/address/0x6d9dd3547baf4c190ab89e0103c363feaf325eca#contracts https://etherscan.io/address/0x81243681078bEE8e251D02Ee6872b1EAa6DD982A#contracts |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Since we need to group and filter the discussions page, I'll be adding this reply as an answer since these kinds of threads(from discord) won't have activity any time soon. |
Beta Was this translation helpful? Give feedback.
Since we need to group and filter the discussions page, I'll be adding this reply as an answer since these kinds of threads(from discord) won't have activity any time soon.