Skip to content

Commit 63d9314

Browse files
committed
f: wip: test.html
1 parent aa413c3 commit 63d9314

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

example.env.js

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
var ENV;
2+
3+
(function () {
4+
'use strict';
5+
6+
ENV = {
7+
// regtest=<see ~/.dashmate/local_seed/core/dash.conf>
8+
DASHD_RPC_USER: 'abcd1234',
9+
DASHD_RPC_PASS: '123456789012',
10+
DASHD_RPC_PASSWORD: '123456789012',
11+
DASHD_RPC_PROTOCOL: 'http',
12+
DASHD_RPC_HOST: 'localhost',
13+
// mainnet=9998, testnet=19998, regtest=<see ~/.dashmate/local_seed/core/dash.conf>
14+
DASHD_RPC_PORT: '8080',
15+
DASHD_RPC_TIMEOUT: '10.0',
16+
DASHD_TCP_WS_URL: 'ws://localhost:8080/tcp',
17+
// Generate this from
18+
// npx -p dashphrase-cli -- dashphrase gen --bits 128 -o ./words.txt
19+
// npx -p dashphrase-cli -- dashphrase seed ./words.txt "" -o ./seed.hex
20+
DASH_WALLET_PHRASE: 'zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo zoo wrong',
21+
//DASH_WALLET_SALT: 'TREZOR',
22+
DASH_WALLET_SEED:
23+
'ac27495480225222079d7be181583751e86f571027b0497b5b5d11218e0a8a13332572917f0f8e5a589620c6f15b11c61dee327651a14c34e18231052e48c069',
24+
package: {
25+
version: '1.0.0',
26+
},
27+
};
28+
})();

0 commit comments

Comments
 (0)