forked from steemit/devportal-tutorials-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.js
82 lines (77 loc) · 2.3 KB
/
configuration.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
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
/**
* This is the main configuration file for the Steem developer Javascript tutorials
*
* In this configuration file we use 'address' to refer to what in many other contexts are called
* user,
* author,
* account,
* account name
*
* Address is a fairly accurate term, and hasn't been overloaded, it also has at-least exactly the properties of addresses on other blockchains.
*
*/
export const TestnetSteemit = {
accounts: [
{
address: 'demo',
privActive: '5Jtbfge4Pk5RyhgzvmZhGE5GeorC1hbaHdwiM7pb5Z5CZz2YKUC',
},
{
address: 'demo1',
privActive: '5Ju3fhTY25Tsseyk4c1PUpH2bTLC8eLbdFRjytmnvU9ZLEQBmsf',
},
{
address: 'demo2',
privActive: '5JZDEAXjANq9isYa66g9tYbeuo4wWXhwXPfujwt9s4DaK4b38R9',
},
{
address: 'demo3',
privActive: '5J6bzy9TM3kBRibXmFi7ZvThrWGMN3epg7aCXLKazTLsJnmw6Mq',
},
{
address: 'demo4',
privActive: '5KQQKVHJBpygcBrqKF6TLQSBX5zHbPRgNEAuojb6fK2C94NX3kJ',
},
{
address: 'demo5',
privActive: '5K7QWGuAAX27yvQRPBMBDA4BbXVpdtmALxoM8CoRdZAsPew5hJd',
},
],
url: 'https://testnet.steemitdev.com',
net: {
addressPrefix: 'TST',
chainId:
'46d82ab7d8db682eb1959aed0ada039a6d49afa1602491f93dde9cac3e8e6c32',
},
};
export const TestnetVC = {
accounts: [
{
address: 'demo01',
privPosting: '5KNckabfv4i793ymx4NWrTLDQZMjhgQTJbPSTroeBY4Bh5Eg6Tm',
privActive: '5HxTntgeoLm4trnTz94YBsY6MpAap1qRVXEKsU5n1v2du1gAgVH',
},
{
address: 'demo02',
privPosting: '5KHUais1mfUn7A3M6pLZw1WF1v6WetFGCB1YDNctcPizLyCT1vW',
privActive: '5KgMKfnTQTzrmZP3RxrQs3CEckHTPXxFzJWHV3cJjetmXwLUWZj',
},
],
url: 'https://testnet.steem.vc',
net: {
addressPrefix: 'STX',
chainId:
'79276aea5d4877d9a25892eaa01b0adf019d3e5cb12a97478df3298ccdd01673',
},
};
export const Testnet = TestnetVC;
export const Mainnet = {
accounts: [],
url: 'https://api.steemit.com',
net: {
addressPrefix: 'STM',
chainId:
'0000000000000000000000000000000000000000000000000000000000000000',
},
};
export default {};