@wasserstoff/tribes-sdk
Version:
SDK for integrating with Tribes by Astrix platform on any EVM compatible chain
39 lines (38 loc) • 803 B
JavaScript
;
/**
* Network types for Tribes by Astrix SDK
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SUPPORTED_NETWORKS = void 0;
/**
* Supported networks
*/
exports.SUPPORTED_NETWORKS = {
// Mainnet
1: {
chainId: 1,
name: 'Ethereum',
type: 'mainnet',
explorerUrl: 'https://etherscan.io'
},
// Linea
59144: {
chainId: 59144,
name: 'Linea',
type: 'mainnet',
explorerUrl: 'https://lineascan.build'
},
// Testnet
59141: {
chainId: 59141,
name: 'Linea Sepolia',
type: 'testnet',
explorerUrl: 'https://sepolia.lineascan.build'
},
// Localhost
31337: {
chainId: 31337,
name: 'Hardhat',
type: 'local'
}
};