UNPKG

wttp-core

Version:

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

64 lines 2.44 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: 137, 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" ], }, 137: { name: 'Polygon POS', alias: 'polygon', symbol: 'MATIC', explorer: 'https://polygonscan.com', gateway: wttp_deployments_1.default.chains[137].gateway.contractAddress, rpcsList: [ // "https://polygon-bor-rpc.publicnode.com", // "https://eth.llamarpc.com", "https://1rpc.io/matic", "https://polygon-rpc.com", "https://polygon.drpc.org", "https://polygon.meowrpc.com", "https://endpoints.omniatech.io/v1/matic/mainnet/public", "https://polygon-pokt.nodies.app", "https://rpc.ankr.com/polygon", ], }, } }; //# sourceMappingURL=wttp.config.js.map