Locus JSON-RPC
JSON RPC가 무엇일까요?
JSON-RPC는 클라이언트가 JSON 형식의 요청 메시지를 노드에 전송하여 노드는 이를 처리하고 결과를 JSON 형식의 응답 메시지로 반환합니다.
원격 프로시저 호출(Remote Procedure Call) 프로토콜의 약자로써, 통신을 위한 방식입니다.
로커스체인 RPC
LocusChain 노드는 JSON-RPC API를 제공합니다. 개인이 실행하거나 몇몇의 공적인 서비스로 제공되는 노드를 통해 사용자는 쉽게 블록체인 네트워크의 정보를 조회할 수 있습니다.
함수 목록
locus_echo
RPC 호출에 대해 노드가 응답을 잘 하는지 확인하는 용도로 사용할 수 있습니다.
입력값에 현재 시간을 추가하여 응답합니다.
Request
Key | Type | Description |
---|---|---|
- | string | 문자열 |
Response
Key | Type | Description |
---|---|---|
- | string | 입력 문자열 + 현재 시간 |
locus_getSyncState
노드의 현재 동기화 상태를 구합니다.
Request
[없음]
Response
Key | Type | Description |
---|---|---|
SyncState | string | NODE_STATE_IN_INIT NODE_STATE_IN_SYNC NODE_STATE_IN_RESYNC NODE_STATE_SYNC_COMPLETE NODE_STATE_STABLE Unknown NodeState |
locus_getGenesisAccount
제네시스 계정의 주소를 구합니다.
Request
[없음]
Response
Key | Type | Description |
---|---|---|
Genesis | base32 | 제네시스 계정의 주소 |
locus_openAccount
계정을 로커스체인 네트워크에 등록합니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 대상 계정 주소 |
Sender | base32 | 코인을 보낸 계정 |
Index | int | 코인을 보낸 Tx의 height |
Pk | base32 | Normal public key |
KeySign | base32 | Master public key |
Sig | base64 | 서명 |
Response
Key | Type | Description |
---|---|---|
Hash | base64 | Tx Hash |
Tx | string | 생성된 Tx |
Success | bool | 성공 여부 |
locus_becomeHost
지정한 계정을 해당 노드의 호스트로 설정합니다. 지정한 계정은 게스트가 없어야 하고, 해당 노드는 호스트가 없는 빈 노드여야 합니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 호스트가 될 계정 |
Sig | base64 | 서명 |
Response
Key | Type | Description |
---|---|---|
Hash | base64 | Tx Hash |
Tx | string | 생성된 Tx |
Success | bool | 성공 여부 |
locus_becomeGuest
지정한 계정을 해당 노드의 게스트로 설정합니다. 지정한 계정은 게스트가 없어야 하고, 해당 노드는 호스트가 존재해야 합니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 게스트가 될 계정 |
Sig | base64 | 서명 |
Response
Key | Type | Description |
---|---|---|
Hash | base64 | Tx Hash |
Tx | string | 생성된 Tx |
Success | bool | 성공 여부 |
locus_changeKey
계정의 노말키를 변경합니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 키를 변경할 계정 |
MasterPkey | base32 | Master public key |
NewNormalPkey | base32 | New Normal public key |
SignByMasterKey | base64 | New Normal public key를 Master public key로 서명한 값 |
Sig | base64 | 서명 |
Response
Key | Type | Description |
---|---|---|
Hash | base64 | Tx Hash |
Tx | string | 생성된 Tx |
Success | bool | 성공 여부 |
locus_transferCoin
코인을 다른 계정에 보냅니다.
Request
Key | Type | Description |
---|---|---|
From | base32 | 보내는 계정 |
To | base32 | 받는 계정 |
Amount | string | 보낼 수량 |
Sig | base64 | 서명 |
Response
Key | Type | Description |
---|---|---|
Hash | base64 | Tx Hash |
Tx | string | 생성된 Tx |
Success | bool | 성공 여부 |
locus_getTx
계정의 특정 Height의 Tx 정보를 구합니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 계정 |
Height | int | 계정의 Height |
Response
Key | Type | Description |
---|---|---|
Tx | string | Tx 정보 |
locus_getAccountsHeights
계정들의 Height 목록을 구합니다.
Request
Key | Type | Description |
---|---|---|
Accounts | []base32 | Height를 구하고자 하는 계정 목록 |
Response
Key | Type | Description |
---|---|---|
Heights | []string | Height 값은 파라메트의 계정 순서와 동일 |
locus_getAccountHistory
계정의 Tx 목록을 구합니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 계정 |
Height | int | 구하고자 하는 시작 Height Height가 -1이면, 최상위 Tx 부터. |
Count | int | 구하고자 하는 Tx 갯수 (시작 위치에서 이전 몇개) |
Response
Key | Type | Description |
---|---|---|
Txs | []string | Tx string list |
locus_getAccountDetail
계정의 상세정보를 구합니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 계정 |
Response
Key | Type | Description |
---|---|---|
Identity | string | Host : 해당 노드의 호스트 계정 Guest : 해당 노드의 게스트 계정 Neighbor : 해당 노드가 속한 샤드의 이웃 계정. 질의 당시의 상태이며, 동기 상태에 따라서 부정확한 값일 수도 있다. no identity : 위의 것에 아무 것도 해당되지 않음, 즉 존재하지 않거나, 다른 샤드에 속했거나 |
FromNoAlive | bool | OpenAccount 를 했지만, 아직 합의에 포함되지 않은 경우에 이 flag 가 true 가 된다. |
Balance | string | 보유한 로커스 코인 |
UnactBalance | string | 아직은 Activate 되지 않아 사용할 수 없는 Balance |
Representative | base32 | 위임한 계정 (Host 계정) |
Grant | uint64 | 보유한 Grant |
PublickKey | base32 | 계정의 Normal public key |
TxChainHeight | int | 계정의 Height |
TxLink | string | 마지막 Tx link |
locus_getWorldRoundStatesList
World Round State (WRS) 목록을 구합니다.
Request
Key | Type | Description |
---|---|---|
Round | int | 구하고자 하는 시작 Round |
Count | int | 구하고자 하는 갯수 (시작 위치에서 이전 몇개), Max 500. |
Response
Key | Type | Description |
---|---|---|
NextRoundList | []int | WRS 목록 |
locus_getWorldRoundState
World Round State (WRS) 상세 정보를 구합니다.
Request
Key | Type | Description |
---|---|---|
Round | int | 구하고자 하는 Round |
Response
Key | Type | Description |
---|---|---|
NextRound | int | Round |
AddShardRound | int | 0 : 샤드 분할 예정 없음. 1 : 샤드 분할해야 하는 상황이지만, 언제인지 정해지지 않았음. 2 이상 : 해당 Round에 샤드 분할 예정됨. |
RootHash | string | |
EvictedHash | string | |
CurrentHash | string | |
PrevLink | string | |
PrevNextRound | int | |
SigHash | string | 아래 서명 정보의 해시값. 아래의 서명 정보는 프루닝 될 수 있다. |
ValidatorsWeight | int | Validator의 Weight 총합 |
Validators | []{base32,uint16,string} | {Validator's Addr, Weight, Sign} |
MultiSign | string | 멀티서명 |
AggregatedNonce | string | 멀티서명의 aggregated nonce |
CoSigners | []base32 | 멀티서명 참가자의 계정 |
locus_getInactivateTxList
계정의 아직 Activate되지 않은 Tx 목록을 구합니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 계정 |
Response
Key | Type | Description |
---|---|---|
TimeOutTxs | []{Sender base32, Index int32, Tx string} | 1차 Target 이 Activation 하지 않아, Time out 되어 들어온 Tx 목록. |
Txs | []{Sender base32, Index int32, Tx string} | Sender 쪽의 합의가 완료된 Tx 목록. |
UnconfirmedTxs | []{Sender base32, Index int32, Tx string} | Sender 쪽의 합의를 대기중인 Tx 목록. |
PendingTxs | []{Sender base32, Index int32, Tx string} | Propose 된지 10초 미만의 Tx 목록. |
ConflictedTxs | []{Sender base32, Index int32, Tx string} | 충돌난 Tx 목록. |
locus_getMontInfoList
계정의 Mont(MOnitoring seNT) 목록을 구합니다. 노드의 호스트/게스트 계정의 것만 구할 수 있습니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 계정 |
Response
Key | Type | Description |
---|---|---|
ActivatedTxs | []{Index int32, Tx string} | Receiver쪽 샤드의 Recv list 에 포함되어 합의가 완료된 Tx 목록. 아직 Receiver의 체인에 write 되지 않았을 수도 있음. |
ProofedTxs | []{Index int32, Tx string} | Sender 쪽의 합의가 완료된 Tx 목록. |
PendingTxs | []{Index int32, Tx string} | Propose만 된 Tx 목록. |
locus_createToken
시스템 토큰을 생성합니다.
계정당 하나의 시스템 토큰을 생성할 수 있습니다.
Request
Key | Type | Description |
---|---|---|
Account | base32 | 토큰을 생성할 계정 |
TokenBalance | string | 생성할 토큰 갯수 |
Sig | base64 | 서명 |
Response
Key | Type | Description |
---|---|---|
TokenID | base32 | 생성된 토큰 ID |
Hash | Tx Hash | |
Tx | string | 생성된 Tx |
Success | bool | 성공 여부 |
locus_transferToken
토큰을 다른 계정에 보냅니다.