Parity

如何在 Parity 上打開 JavaScript 控制台?

  • July 9, 2018

沒有什麼像parity console

如何在 Parity 上打開 JavaScript 控制台?

使用geth console附加到奇偶校驗或使用奇偶校驗 UI 應用程序Parity/Web3 Console

要將 Geth 控制台附加到 Parity,(在 Linux 上)使用:

geth attach ~/.local/share/io.parity.ethereum/jsonrpc.ipc

在 MacOS 上使用:

geth attach ~/Library/Application Support/io.parity.ethereum/jsonrpc.ipc

要訪問 Parity/Web3 控制台,請打開 UI,轉到 Applications 並打開Parity/Web3 控制台

奇偶校驗控制台

每個 Parity wiki 都可以使用Node.js CLI 控制台:

你可以安裝node/NPM並使用它的控制台。一旦你安裝了 node/NPM,你只需要安裝最新的 web3 模組:

$ npm install web3

從那時起,您只需要執行node並需要 web3 模組:

$ node
> Web3 = require("web3")
> web3 = new Web3(new Web3.providers.HttpProvider("http://localhost:8545"));

在此之後,您將能夠在此環境中使用 web3 API,例如:

> web3.eth.blockNumber
743397

引用自:https://ethereum.stackexchange.com/questions/13196