neolineN3.getNetworks()
.then(result => {
const {
chainId,
networks,
defaultNetwork
} = result;
console.log('chainId: ' + chainId);
// eg. 6
console.log('Networks: ' + networks);
// eg. ["MainNet", "TestNet", "N3TestNet"]
console.log('Default network: ' + defaultNetwork);
// eg. "N3TestNet"
})
.catch((error) => {
const {type, description, data} = error;
switch(type) {
case 'NO_PROVIDER':
console.log('No provider available.');
break;
case 'CONNECTION_DENIED':
console.log('The user rejected the request to connect with your dApp');
break;
case 'CHAIN_NOT_MATCH':
console.log('The currently opened chain does not match the type of the call chain, please switch the chain.');
break;
default:
// Not an expected error object. Just write the error to the console.
console.error(error);
break;
}
});