We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2cc9862 + 3c5e791 commit 59eea79Copy full SHA for 59eea79
2 files changed
lib/wallets/api/tezos/tezos_rpc_api.dart
@@ -46,7 +46,7 @@ abstract final class TezosRpcAPI {
46
}) async {
47
try {
48
final api =
49
- "${nodeInfo.host}:${nodeInfo.port}/chains/main/blocks/head/header/shell";
+ "${nodeInfo.host}:${nodeInfo.port}/chains/main/blocks/head/header";
50
51
final response = await _client.get(
52
url: Uri.parse(api),
lib/wallets/crypto_currency/coins/tezos.dart
@@ -107,8 +107,7 @@ class Tezos extends Bip39Currency {
107
switch (network) {
108
case CryptoCurrencyNetwork.main:
109
return NodeModel(
110
- // TODO: ?Change this to stack wallet one?
111
- host: "https://mainnet.api.tez.ie",
+ host: "https://tezos.stackwallet.com",
112
port: 443,
113
name: DefaultNodes.defaultName,
114
id: DefaultNodes.buildId(this),
0 commit comments