-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
52 lines (51 loc) · 1.11 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const columns = {
"transfer": {
count: 'count',
amount: 'Amount',
currency: 'Currency',
to: 'To',
from: 'From',
timestamp: 'ts',
memo: 'Memo',
trx_id: 'trxid',
},
"curation_reward": {
curator: 'Curator',
reward: 'Reward',
comment_author: 'Author',
comment_permlink: 'Permlink',
timestamp: 'ts',
},
"create_claimed_account": {
creator: 'Creator',
new_account_name: 'New account name',
owner: 'owner',
active: 'active',
posting: 'posting',
memo_key: 'memo_key',
json_metadata: 'json_metadata',
extensions: 'extensions',
timestamp: 'ts',
},
"comment_benefactor_reward": {
benefactor: 'benefactor',
author: 'Author',
permlink: 'Permlink',
sbd_payout: 'SBD Payout',
steem_payout: 'STEEM Payout',
vesting_payout: 'Vest Payout',
timestamp: 'ts',
},
"comment": {
parent_author: 'Parent Author',
parent_permlink: 'Parent Permlink',
author: 'Author',
permlink: 'Permlink',
title: 'title',
json_metadata: 'json_metadata',
timestamp: 'ts',
}
}
module.exports = {
columns: columns
}