anon-identity
Version:
Decentralized identity framework with DIDs, Verifiable Credentials, and privacy-preserving selective disclosure
29 lines • 832 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SUPPORTED_NETWORKS = void 0;
exports.SUPPORTED_NETWORKS = {
localhost: {
chainId: 1337,
name: 'Localhost',
rpcUrl: 'http://127.0.0.1:8545',
},
sepolia: {
chainId: 11155111,
name: 'Sepolia Testnet',
rpcUrl: 'https://sepolia.infura.io/v3/',
blockExplorerUrl: 'https://sepolia.etherscan.io',
},
polygon: {
chainId: 137,
name: 'Polygon Mainnet',
rpcUrl: 'https://polygon-rpc.com',
blockExplorerUrl: 'https://polygonscan.com',
},
arbitrum: {
chainId: 42161,
name: 'Arbitrum One',
rpcUrl: 'https://arb1.arbitrum.io/rpc',
blockExplorerUrl: 'https://arbiscan.io',
},
};
//# sourceMappingURL=types.js.map