Const
networkIds is a POJO that maps a network name to it's ethereum network ID.
networkIds
let networkId = networkIds["sokol"]; // 77
Also, networks is an inverted networkIds POJO if you need to go in the other direction.
networks
let networkName = networks[77]; // "sokol"
Generated using TypeDoc
networkIds
is a POJO that maps a network name to it's ethereum network ID.Example
Also,
networks
is an invertednetworkIds
POJO if you need to go in the other direction.