forked from Alien-Worlds/alienworlds-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.js
29 lines (29 loc) · 992 Bytes
/
config.example.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
module.exports = {
processor_threads: 0, // number of threads for filler process, 0 = number of cores - 4
blockrange_threads: 0, // number of threads for blockrange process, 0 = number of cores - 4
ship_endpoints: ['ws://'],
chain_id: '1064487b3cd1a897ce03ae5b6a865651747e2e152090f99c1d19d44e01aea5a4',
endpoints: ['https://'],
mining_contract: 'm.federation',
bsc_endpoint: '',
eth_endpoint: '',
bsc_token_contract: '',
eth_token_contract: '',
start_block: 93613945, // m.federation genesis block 93613945, atomicassets genesis = 64105503
api: {
host: '127.0.0.1',
port: 8800,
schemes: ['https'] // one or both of: http, https
},
amq: {
connection_string: 'amqp://user:password@host/alienworlds_mainnet'
},
mongo: {
url :'mongodb://127.0.0.1',
dbName: 'alienworlds_mainnet',
},
atomicassets: {
contract: 'atomicassets',
collection: 'alien.worlds'
}
}