@xpla/xpla
Version:
<p align="center"> <img src="https://user-images.githubusercontent.com/545047/188804067-28e67e5e-0214-4449-ab04-2e0c564a6885.svg" width="80"> </p>
16 lines (15 loc) • 834 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EthereumChainId = void 0;
var EthereumChainId;
(function (EthereumChainId) {
EthereumChainId[EthereumChainId["Mainnet"] = 1] = "Mainnet";
EthereumChainId[EthereumChainId["Ropsten"] = 3] = "Ropsten";
EthereumChainId[EthereumChainId["Rinkeby"] = 4] = "Rinkeby";
EthereumChainId[EthereumChainId["Goerli"] = 5] = "Goerli";
EthereumChainId[EthereumChainId["Xpla"] = 37] = "Xpla";
EthereumChainId[EthereumChainId["Kovan"] = 42] = "Kovan";
EthereumChainId[EthereumChainId["XplaTestnet"] = 47] = "XplaTestnet";
EthereumChainId[EthereumChainId["Ganache"] = 1337] = "Ganache";
EthereumChainId[EthereumChainId["HardHat"] = 31337] = "HardHat";
})(EthereumChainId = exports.EthereumChainId || (exports.EthereumChainId = {}));