Skip to content

Commit 40323d4

Browse files
committed
new: [cryptocurrency-transaction] generic transaction object for any
cryptocurrency
1 parent 64e37f4 commit 40323d4

1 file changed

Lines changed: 84 additions & 0 deletions

File tree

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"attributes": {
3+
"address": {
4+
"description": "A cryptocurrency transactional address",
5+
"misp-attribute": "btc",
6+
"ui-priority": 0
7+
},
8+
"symbol": {
9+
"description": "The (uppercase) symbol of the cryptocurrency used. Symbol should be from https://coinmarketcap.com/all/views/all/",
10+
"disable_correlation": true,
11+
"misp-attribute": "text",
12+
"sane_default": [
13+
"BTC",
14+
"ETH",
15+
"BCH",
16+
"XRP",
17+
"MIOTA",
18+
"DASH",
19+
"BTG",
20+
"LTC",
21+
"ADA",
22+
"XMR",
23+
"ETC",
24+
"NEO",
25+
"NEM",
26+
"EOS",
27+
"XLM",
28+
"BCC",
29+
"LSK",
30+
"OMG",
31+
"QTUM",
32+
"ZEC",
33+
"USDT",
34+
"HSR",
35+
"STRAT",
36+
"WAVES",
37+
"PPT",
38+
"ETN"
39+
],
40+
"ui-priority": 1
41+
},
42+
"time": {
43+
"description": "Date and time of transaction",
44+
"disable_correlation": true,
45+
"misp-attribute": "datetime",
46+
"ui-priority": 0
47+
},
48+
"transaction-number": {
49+
"description": "A transaction number in a sequence of transactions",
50+
"misp-attribute": "text",
51+
"multiple": true,
52+
"ui-priority": 0
53+
},
54+
"value": {
55+
"description": "Value in cryptocurrency at date/time displayed in field 'time'",
56+
"disable_correlation": true,
57+
"misp-attribute": "float",
58+
"ui-priority": 0
59+
},
60+
"value_EUR": {
61+
"description": "Value in EUR with conversion rate as of date/time displayed in field 'time'",
62+
"disable_correlation": true,
63+
"misp-attribute": "float",
64+
"ui-priority": 0
65+
},
66+
"value_USD": {
67+
"description": "Value in USD with conversion rate as of date/time displayed in field 'time'",
68+
"disable_correlation": true,
69+
"misp-attribute": "float",
70+
"ui-priority": 0
71+
}
72+
},
73+
"description": "An object to describe a cryptocurrency transaction.",
74+
"meta-category": "financial",
75+
"name": "cryptocurrency-transaction",
76+
"requiredOneOf": [
77+
"transaction-number",
78+
"time",
79+
"value",
80+
"address"
81+
],
82+
"uuid": "B7341729-5A8A-439F-A775-6D814DA3C7B5",
83+
"version": 1
84+
}

0 commit comments

Comments
 (0)