Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to turn on JSON RPC API

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "how to open JSON RPC API". In the operation of actual cases, many people will encounter such a dilemma. Then let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Geth uses JSON data format and JSON-RPC protocol as a way for clients to interact with the network. The pub/sub of Geth 1.4 is experimental, and so is Partity 1.6.

JavaScript API

When using web3.js to interact with etherenum nodes, follow the consistent RPC protocol.

JSON-RPC Endpoint

Default JSON-RPC terminal:

Client URL

C++ http://localhost:8545

GO http://localhost:8545

Py http://localhost:4000

Parity http://localhost:8545

Go

You can open HTTP JSON-RPC by using the-- rpc flag

Geth-rpc

You can modify the default port (8545) and address (localhost) in the following ways:

Geth-rpc-rpcaddr-rpcport

If you access RPC through a browser, you need to pay attention to cross-domain issues in the following ways:

Geth-rpc-rpccorsdomain "http://localhost:3000"

JSON-RPC can also be enabled through geth console, as follows:

Admin.startRPC (addr, port)

C++

First run the aleth startup node:

Build/aleth/aleth

Then open the JSON-RPC proxy (default ~ / .ethereum/geth.ipc and http://127.0.0.1:8545)

Scripts/jsonrpcproxy.py

If you use a non-default IPC path or JSON-RPC, you can specify:

Scripts/jsonrpcproxy.py

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report