-
Notifications
You must be signed in to change notification settings - Fork 7
/
transfers.json
116 lines (116 loc) · 2.68 KB
/
transfers.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[
{
"mode": "REQUIRED",
"name": "event_id",
"type": "STRING",
"description": "Event ID for the transfer"
},
{
"mode": "REQUIRED",
"name": "section",
"type": "STRING",
"description": "Section/Pallet for the event"
},
{
"mode": "REQUIRED",
"name": "method",
"type": "STRING",
"description": "Event method"
},
{
"mode": "REQUIRED",
"name": "extrinsic_id",
"type": "STRING",
"description": "Extrinsic ID of the extrinsic which includes the event"
},
{
"mode": "REQUIRED",
"name": "extrinsic_hash",
"type": "STRING",
"description": "Extrinsic Hash of the extrinsic which includes the event"
},
{
"mode": "REQUIRED",
"name": "block_time",
"type": "TIMESTAMP",
"description": "Block time of the block which includes the event"
},
{
"mode": "REQUIRED",
"name": "block_number",
"type": "INTEGER",
"description": "Block number of the block which includes the event"
},
{
"mode": "REQUIRED",
"name": "block_hash",
"type": "STRING",
"description": "Block hash of the block which includes the event"
},
{
"mode": "REQUIRED",
"name": "from_ss58",
"type": "STRING",
"description": "SS58 Encoded address of the origin of the transfer"
},
{
"mode": "REQUIRED",
"name": "from_pub_key",
"type": "STRING",
"description": "Pub key of the origin of the transfer"
},
{
"mode": "REQUIRED",
"name": "to_ss58",
"type": "STRING",
"description": "SS58 Encoded address of the recipient of the transfer"
},
{
"mode": "REQUIRED",
"name": "to_pub_key",
"type": "STRING",
"description": "Pub key of the recipient of the transfer"
},
{
"mode": "NULLABLE",
"name": "asset",
"type": "STRING",
"description": "String representation of the transfer"
},
{
"mode": "NULLABLE",
"name": "price_usd",
"type": "FLOAT",
"description": "Estimated USD value of 1 token of the transfer"
},
{
"mode": "NULLABLE",
"name": "amount_usd",
"type": "FLOAT",
"description": "Estimated value of the transfer in USD"
},
{
"mode": "NULLABLE",
"name": "symbol",
"type": "STRING",
"description": "Symbol of the asset, if available"
},
{
"mode": "NULLABLE",
"name": "decimals",
"type": "INTEGER",
"description": "Decimals of the asset, if available"
},
{
"mode": "NULLABLE",
"name": "amount",
"type": "FLOAT",
"description": "Decimalized version of the asset"
},
{
"mode": "REQUIRED",
"name": "raw_amount",
"type": "NUMERIC",
"description": "Raw (non-decimalized) version of the amount of the asset being transferred"
}
]