forked from coinbase/mesh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ethereum.json
54 lines (54 loc) · 923 Bytes
/
ethereum.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
{
"network": {
"blockchain": "Ethereum",
"network": "Ropsten"
},
"data_directory": "eth-data",
"http_timeout": 300,
"tip_delay": 60,
"construction": {
"currency": {
"symbol": "ETH",
"decimals": 18
},
"minimum_balance": "0",
"maximum_fee": "5000000000000000",
"curve_type": "secp256k1",
"accounting_model": "account",
"scenario": [
{
"operation_identifier": {
"index": 0
},
"type": "transfer",
"status": "",
"account": {
"address": "{{ SENDER }}"
},
"amount": {
"value": "{{ SENDER_VALUE }}",
"currency": null
}
},
{
"operation_identifier": {
"index": 1
},
"related_operations": [
{
"index": 0
}
],
"type": "transfer",
"status": "",
"account": {
"address": "{{ RECIPIENT }}"
},
"amount": {
"value": "{{ RECIPIENT_VALUE }}",
"currency": null
}
}
]
}
}