UNPKG

wttp-core

Version:

Core contracts, interfaces, and TypeScript types for the Web3 Transfer Protocol (WTTP).

46 lines 1.69 kB
"use strict"; /** * Copyright (C) 2025 TechnicallyWeb3 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published * by the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.config = void 0; const tslib_1 = require("tslib"); const wttp_deployments_1 = tslib_1.__importDefault(require("./wttp.deployments")); exports.config = { defaultChain: 11155111, chains: { 11155111: { name: 'Sepolia Testnet', alias: 'sepolia', symbol: 'ETH', explorer: 'https://sepolia.etherscan.io', gateway: wttp_deployments_1.default.chains[11155111].gateway.contractAddress, rpcsList: [ "https://ethereum-sepolia-rpc.publicnode.com", "https://1rpc.io/sepolia", "https://sepolia.drpc.org", "https://sepolia.meowrpc.com" ], }, 1: { name: 'Ethereum Mainnet', alias: 'mainnet', symbol: 'ETH', explorer: 'https://etherscan.io', gateway: wttp_deployments_1.default.chains[11155111].gateway.contractAddress, // temporary until mainnet is deployed rpcsList: [ "https://ethereum-rpc.publicnode.com", "https://eth.llamarpc.com", "https://1rpc.io/eth", "https://eth.drpc.org", "https://eth.meowrpc.com" ], }, } }; //# sourceMappingURL=wttp.config.js.map