Added "APP" and "METADATA" service types

- "APP" will allow for user-created apps and the Qortal app store
- "METADATA" will be used to supply info about apps/websites/resources, such as title, description, tags, etc
This commit is contained in:
CalDescent 2021-11-13 10:06:53 +00:00
parent c069c39ce1
commit d3862c97ba

View File

@ -43,7 +43,9 @@ public class ArbitraryTransactionData extends TransactionData {
BLOG_POST(777), BLOG_POST(777),
BLOG_COMMENT(778), BLOG_COMMENT(778),
DOCUMENT(800), DOCUMENT(800),
PLAYLIST(900); PLAYLIST(900),
APP(1000),
METADATA(1100);
public final int value; public final int value;