Zeus Config File
zeus-config.js
Configure zeus environments available to interact with. The zeus-config.js
file is located in zeus_boxes/seed-empty/zeus-config.js
module.exports = {
chains: {
eos: {
networks: {
'development': {
chainId: '',
host: '127.0.0.1',
port: 8888,
secured: false
},
'jungle3': {
chainId: '2a02a0053e5a8cf73a56ba0fda11e4d92e0238a4a2aa74fccf46d5a910746840',
host: 'jungle3.eosn.io',
port: 443,
secured: true
},
'jungle3': {
chainId: '73e4385a2708e6d7048834fbc1079f2fabb17b3c125b146af438971e90716c4d',
host: 'jungle4.eosn.io',
port: 443,
secured: true
},
'kylin': {
chainId: '5fff1dae8dc8e2fc4d5b23b2c7665c97f9e9d8edf2b6485a86ba311c25639191',
host: 'kylin.eosn.io',
port: 443,
secured: true
},
'waxtest': {
chainId: '2a02a0053e5a8cf73a56ba0fda11e4d92e0238a4a2aa74fccf46d5a910746840',
host: 'waxtest.eosn.io',
port: 443,
secured: true
},
'wax': {
chainId: '1064487b3cd1a897ce03ae5b6a865651747e2e152090f99c1d19d44e01aea5a4',
host: 'wax.eosn.io',
port: 443,
secured: true
},
'mainnet': {
chainId: 'aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906',
host: 'mainnet.eosn.io',
port: 443,
secured: true
},
'telos': {
chainId: '4667b205c6838ef70ff7988f6e8257e8be0e1284a2f59699054a018f743b1d11',
host: 'telos.eosn.io',
port: 443,
secured: true
},
'telostest': {
chainId: '1eaa0824707c8c16bd25145493bf062aecddfeb56c736f6ba6397f3195f33c9f',
host: 'telostest.eosn.io',
port: 443,
secured: true
}
}
},
evm: {
networks: {
'development': {
chainId: '',
privateKey: '',
host: '127.0.0.1',
port: 8545,
secured: false
},
'ropsten': {
chainId: '',
privateKey: '',
host: '',
port: 443,
secured: true
},
'bsc': {
chainId: '',
privateKey: '',
host: 'bsc-dataseed1.binance.org',
port: 443,
secured: true
},
'bsctest': {
chainId: '',
privateKey: '',
host: 'data-seed-prebsc-1-s1.binance.org',
port: 8545,
secured: true
}
}
}
}
};
Last updated