[Astar]エラー備忘録①(ERR_UNHANDLED_REJECTION)

2023/02/21に公開

次のエラーが出たため、備忘録として残します。

エラー発生状況:コントラクトのデプロイに失敗した。

結論:swankyノードが立ち上がっていなかった。


swanky contract deploy count --gas 10000000000 --args false --account alice
✔ Initialising OKGetting WASM OKConnecting to node2023-02-21 21:14:24          API-WS: disconnected from ws://127.0.0.1:9944: 1006:: connection failed
node:internal/process/promises:288
            triggerUncaughtException(err, true /* fromPromise */);
            ^

[UnhandledPromiseRejection: This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason "#<_Event>".] {
  code: 'ERR_UNHANDLED_REJECTION'
}

下のように、API-WSが接続されていないことが原因のようです。

下が、chatGPTからの引用です。

私の場合は、 swankyノードが立ち上がっていないことが原因でした。

Discussion