3.1.1. mijin Catapult(v.2) How to access¶
- creation-day:
Aug. 1, 2022
- update date:
September 14, 2022
mijin Catapult(v.2) access to the API Rest endpoint of the API node allows blockchain operations.
Below you can check the current number of blocks in the blockchain with the command
$ curl -Ss http://mijinエンドポイント:3000/chain/info | jq -r
{
"scoreHigh": "8",
"scoreLow": "16778237146341708801",
"height": "2693365",
"latestFinalizedBlock": {
"finalizationEpoch": 8833,
"finalizationPoint": 5,
"height": "1413092",
"hash": "C6D03C81BC98C5152E429CA4D9B03BEC9C1229DCE5B79B267EA250A4D43BAAD6"
}
}
item |
Description |
height |
Current block height of blockchain |
latestFinalizedBlock.height |
Block height of the determined blockchain |
You can also check it with Chrome or other browsers.

Others can also be accessed via sdk or cli.
For access to CLI, please refer to mijin Catapult(v.2) manipulation.