Snowflake Id generation block

Please may you add a snowflake id generator block, a bit like discords own id generation, for messages interactions servers and users ect.

Is there a way this could be used as the database row ID instead of the V7 or whatever the new one is

If so, this could be used with the snowflake ID block and possibly a few others that may be far more useful later down the line

Snowflakes will not be used for database row IDs. The problem is snowflakes is that you need to centrally generate them in order to avoid conflicts, which results in a single choke-point, a single thread responsible for generating all IDs within the application. The whole point of Inventor’s new ID system is that it is designed for highly-concurrent uncoordinated access, which is how Inventor bots behave.

Providing snowflake generation has always seemed like a footgun since Inventor can’t ensure that they will be unique, and there are short enough that conflicts are relatively likely. However, I’ve gone ahead and implemented this with a warning that they are not guaranteed to be unique.