Merge branch 'add-ethereum' into add-erc-20-tokens

This commit is contained in:
likho 2023-01-19 11:03:00 +02:00
commit 1c435bb739
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ class GasTracker {
class EthereumWallet extends CoinServiceAPI { class EthereumWallet extends CoinServiceAPI {
NodeModel? _ethNode; NodeModel? _ethNode;
final _gasLimit = 21000; 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"; final _gasTrackerUrl = "https://beaconcha.in/api/v1/execution/gasnow";
@override @override

View file

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