Post
Share your knowledge.
Best way to handle a unique user registry on Sui?
I'm trying to set up a unique registry of user names on Sui and am considering using vec_set
- Move CLI
Answers
2If you don't need mappings, you could explore using TableVec. However, be aware that currently, achieving O(1) performance on Sui with these structures is not possible.
Vector-backed structures like vec_set
Do you know the answer?
Please log in and share it.
Move is an executable bytecode language used to implement custom transactions and smart contracts.