Connecting to the network
Dag4.js provides reasonable configuration values by default for accessing Constellation Network versions 1.0 and 2.0.
Minimal network configuration
dag4.account.connect({
  networkVersion: '2.0',
  testnet: true
});
Custom network configuration
You can provide custom values for each the three network API endpoints to set up a custom connection.
dag4.account.connect({
  networkVersion: '2.0',
  beUrl: 'https://be-mainnet.constellationnetwork.io/',
  l0Url: 'http://13.52.246.74:9000',
  l1Url: 'http://13.52.246.74:9010'
});
Default Endpoints
The following endpoints are used by default by Dag4.
2.0 TestNet
- Block Explorer API: https://be-testnet.constellationnetwork.io
 - L0 API: https://l0-lb-testnet.constellationnetwork.io
 - L1 API: https://l1-lb-testnet.constellationnetwork.io
 
dag4.account.connect({
  networkVersion: '2.0',
  testnet: true
});
2.0 IntegrationNet
- Block Explorer API: https://be-integrationnet.constellationnetwork.io
 - L0 API: https://l0-lb-integrationnet.constellationnetwork.io
 - L1 API: https://l1-lb-integrationnet.constellationnetwork.io
 
dag4.account.connect({
  id: 'integration2',
  networkVersion: '2.0',
  beUrl: 'https://be-integrationnet.constellationnetwork.io',
  l0Url: 'https://l0-lb-integrationnet.constellationnetwork.io',
  l1Url: 'https://l1-lb-integrationnet.constellationnetwork.io'
}, false);
2.0 MainNet
- Block Explorer API: https://be-mainnet.constellationnetwork.io
 - L0 API: https://l0-lb-mainnet.constellationnetwork.io
 - L1 API: https://l1-lb-mainnet.constellationnetwork.io
 
dag4.account.connect({
  networkVersion: '2.0',
  testnet: false
});