wttp-core
Version:
Core contracts, interfaces, and TypeScript types for the Web3 Transfer Protocol (WTTP).
42 lines • 1.51 kB
JavaScript
/**
* 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.
*/
import wttpDeployments from './wttp.deployments';
export const config = {
defaultChain: 11155111,
chains: {
11155111: {
name: 'Sepolia Testnet',
alias: 'sepolia',
symbol: 'ETH',
explorer: 'https://sepolia.etherscan.io',
gateway: wttpDeployments.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: wttpDeployments.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