Cài đặt
In order to use the RPC API you will need to setup the correct RPC endpoints.
RPC Endpoint Setup
POST
cho tất cả các methodJSON RPC 2.0
id: "dontcare"
- endpoint URL thay đổi bởi network:
- mainnet
https://rpc.mainnet.near.org
- testnet
https://rpc.testnet.near.org
- betanet
https://rpc.betanet.near.org
(có thể không ổn định) - localnet
http://localhost:3030
- mainnet
Limits
- Maximum number of requests per IP: 600 req/min
Querying Historical Data
Truy vấn lịch sử data (nhiều hơn 5 epoch hoặc ~2.5 day), bạn có thể nhận được những phản hồi là data không tồn tại nữa. Trong trường hợp đó, các archival RPC node sẽ giúp bạn:
- mainnet
https://archival-rpc.mainnet.near.org
- testnet
https://archival-rpc.testnet.near.org
Bạn có thể nhìn thấy interface này đã được định nghĩa trong nearcore
ở đây.
Limits
- Maximum number of requests per IP: 600 req/min
Cài đặt Postman
An easy way to test the queries in this documentation page is to use an API request tool such as Postman. You only need to configure two things:
-
Đảm bảo bạn thêm vào header với một key là
Content-Type
có giá trị làapplication/json
. -
Sau đó chuyển sang
Body
và chọnraw
radio button và đảm bảoJSON
là format đã được chọn.
Sau quá trình cài đặt đó, chỉ cần copy/paste các đoạn mã ví dụ JSON object
dưới đây vào body
của request trên Postman, và click send
.
Cài đặt JavaScript
All of the queries listed in this documentation page can be called using near-api-js
.
- Để thiết lập và cài đặt
near-api-js
, vui lòng xemnear-api-js
tài liệu tham khảo nhanh. - All JavaScript code snippets require a
near
object. For examples of how to instantiate, click here.