-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env.php
49 lines (30 loc) · 859 Bytes
/
.env.php
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
<?php
return array(
/*
* Specifies the protocol to use.
* Set to 'WSS' for websockets or 'RPC' for RPC connection trough CLI_WALLET
*/
'CONNECTION_PROTOCOL' => "WSS",
/*
* Golos: wss://golos.steem.ws
* Steem: wss://steemit.com/wspa
*/
'GRAPHENE_PUB_NODE' => 'wss://steemit.com/wspa',
/*
* Golos: http://www.golosdb.com
* Steem: http://www.steemdb.com
*/
'GRAPHENE_BLOCK_EXPLORER' => 'http://www.steemdb.com',
/*
* CLI_WALLET server settings
*/
'RPC_SERVER' => '',
'RPC_PORT' => 8090,
'RPC_VERSION' => "2.0",
/*
* Receiving account
*/
'STEEMPAY_ACCOUNT' => 'steempayments',
'RECEIVER_HISTORY_COUNT' => 100,
'ENABLE_DEBUG' => true,
);