-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add CrossChain NFT Example. #118
Comments
@lukema95 in order to prevent chain ID from clashing, instead of limiting minting to a single chain, I think what we can do is add an integer to the constructor, which is different for each chain and prefix IDs with this integer. NFT IDs on Polygon: 10000001, 10000002, 10000003... |
@lukema95 I agree. I think we can freeze NFTs. This could be a first step in the tutorial. The second step would be to send an acknowledgement (that the NFT has been minted on the destination chain) back from destination chain back to source chain to burn the frozen NFT. |
Another problem is that if |
The contract looks similar to the following:
The text was updated successfully, but these errors were encountered: