エラー:eztz-cliをtezosノードに接続しようとするとプロトコルがサポートされません
-
-
私は少し帽子をかぶって話している...しかし、すべてのノードとクライアントはalphanetで実行されていますか?それらの1つがzeronetまたはbetanetのいずれかを実行している場合、それはおそらくそこにある問題です.I'm somewhat speaking through my hat... but are all your nodes and clients running on alphanet? If one of them is running either zeronet or betanet, that's probably your problem right there.
- 1
- 2019-01-29
- anonymous2
-
@ user79プルされたDockerイメージは、スクリプトによって自身の名前を見て自動的に選択されるため、これは問題ではないと思います.したがって、メインネットノードを実行するには、スクリプトの名前を変更して、 `./mainnet.sh`として実行する必要があります. https://tezos.gitlab.io/alphanet/introduction/howtoget.html#docker-imagesには、このプロセスがどのように行われるかに関する情報が含まれています.@user79 I don't think that's the problem, since the docker images pulled are automatically chosen by the script by looking at its own name. So for running a mainnet node, the script should be renamed and run as `./mainnet.sh`. https://tezos.gitlab.io/alphanet/introduction/howtoget.html#docker-images contains information about how this process takes place.
- 1
- 2019-01-29
- Kartik Shah
-
1 回答
- 投票
-
- 2019-02-01
eztz-cliへの最後のコミットは2017年11月でした.したがって、時代遅れだと思います.getBalance()のクエリは無効になりました.無料のアカウントを作成することはできなくなりました.代わりに蛇口を使用する必要があります.代わりにeztzを直接使用してみてください.そうすれば、機能するはずです.
Last commit to eztz-cli was in November of 2017. So I would consider it outdated. The query in getBalance() is no longer valid. It's no longer possible to create free accounts, you need to use the faucet instead. Try to use eztz directly instead and it should work.
-
これは正しいです-eztz-cliは近い将来更新される予定です.This is correct - eztz-cli will become updated in the near future.
- 2
- 2019-02-01
- Stephen Andrews
eztz-cliをローカルで実行されているコンテナ化された(docker経由で)tezosノードに接続しようとしていました.私が従った手順は次のとおりです.
./alphanet.sh start --rpc-port 6160
eztz provider localhost:6160
この後、
eztz balance *some account address here*
やeztz freeAccount main account1
などのコマンドを実行すると、Error: Error: Protocol not supported.
eztz-cliとeztzのソースコードを調べてみましたが、根本的な原因が見つかりませんでした.どんな助けでも大歓迎です.