Skip to content
Discussion options

You must be logged in to vote

There's a tradeoff here:

A more generic solution, uses a provided object. This is useful for a shared marketplace contract, or something generic like taking any NFT for the marketplace.

This also takes full advantage of parallelism, and flexibility.

The use case specific system, you can either:

  1. Store the object address in a struct or data structure, preferred but, if you're storing a lot of object addresses, you could be having more serialization from conflicts, which can be counteractive to the parallelism by using parallel objects.

  2. Use a derivable named object. This can be useful as then you don't need to store anything, but you always need the address, and the seed used. AND you ne…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by 0x-j
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
move Questions related to the Move Language
2 participants