Use mainnet

This commit is contained in:
likho 2023-01-19 10:45:09 +02:00
parent dd8319ee11
commit 74ab70df7e
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ class GasTracker {
class EthereumWallet extends CoinServiceAPI {
NodeModel? _ethNode;
final _gasLimit = 21000;
final _blockExplorer = "https://eth-goerli.blockscout.com/api?";
final _blockExplorer = "https://blockscout.com/eth/mainnet/api?";
final _gasTrackerUrl = "https://beaconcha.in/api/v1/execution/gasnow";
@override

View file

@ -136,7 +136,7 @@ abstract class DefaultNodes {
//TODO - Update with correct node details for ETH
static NodeModel get ethereum => NodeModel(
host: "https://goerli.infura.io/v3/22677300bf774e49a458b73313ee56ba",
host: "https://mainnet.infura.io/v3/22677300bf774e49a458b73313ee56ba",
port: 1234,
name: defaultName,
id: _nodeId(Coin.ethereum),