secret-polar-reworks
Version:
Polar is a development environment to compile, deploy, test, run scrt contracts on different networks.
27 lines (26 loc) • 576 B
JavaScript
module.exports = {
networks: {
default: {
endpoint: 'http://localhost:1337/'
},
development: {
endpoint: 'tcp://0.0.0.0:26656',
nodeId: '115aa0a629f5d70dd1d464bc7e42799e00f4edae',
chainId: 'enigma-pub-testnet-3',
keyringBackend: 'test',
types: {}
},
// Holodeck Testnet
testnet: {
endpoint: 'http://bootstrap.secrettestnet.io:26657',
chainId: 'holodeck-2',
trustNode: true,
keyringBackend: 'test',
accounts: ['a', 'b'],
types: {}
}
},
mocha: {
timeout: 60000
}
};