Skip to main content

Locus JSON-RPC

What is JSON RPC?

JSON-RPC is a protocol where the client sends a request message in JSON format to the node, which processes it and returns the result in a JSON format response message.

It stands for Remote Procedure Call (RPC) protocol, which is a method for communication.

Locus Chain RPC

LocusChain nodes provide a JSON-RPC API. Through nodes run by individuals or provided by some public services, users can easily query information from the blockchain network.

List of Functions


locus_echo

It can be used to check if the node responds correctly to RPC calls. The current time is added to the input value and returned in the response.

Request

KeyTypeDescription
-stringString

Response

KeyTypeDescription
-stringInput string + current time

locus_getSyncState

To receive current synchronization status of the node.

Request

[None]

Response

KeyTypeDescription
SyncStatestringNODE_STATE_IN_INIT
NODE_STATE_IN_SYNC
NODE_STATE_IN_RESYNC
NODE_STATE_SYNC_COMPLETE
NODE_STATE_STABLE
Unknown NodeState

locus_getGenesisAccount

Retrieve the address of the Genesis account.

Request

[None]

Response

KeyTypeDescription
Genesisbase32Genesis account address

locus_openAccount

Register the account on the Locus Chain network.

Request

KeyTypeDescription
Accountbase32Target account address
Senderbase32Account that sent the coin
IndexintThe height of the Tx that sent the coin
Pkbase32Normal public key
KeySignbase32Master public key
Sigbase64Signature

Response

KeyTypeDescription
Hashbase64Tx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_becomeHost

Set the specified account as host for the node. The specified account should have no guests, and the node must be an empty node without a host.

Request

KeyTypeDescription
Accountbase32Account to be the host
Sigbase64Signature

Response

KeyTypeDescription
Hashbase64Tx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_becomeGuest

Set the specified account as guest for the node. The specified account should have no guests, and the node must have an existing host.

Request

KeyTypeDescription
Accountbase32Account to be the guest
Sigbase64Signature

Response

KeyTypeDescription
Hashbase64Tx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_changeKey

Change the account's normal key.

Request

KeyTypeDescription
Accountbase32Account whose key is to be changed
MasterPkeybase32Master public key
NewNormalPkeybase32New Normal public key
SignByMasterKeybase64Value signed of New Normal public key with Master public key
Sigbase64Signature

Response

KeyTypeDescription
Hashbase64Tx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_transferCoin

Send coins to another account.

Request

KeyTypeDescription
Frombase32Sender account
Tobase32Recipient account
AmountstringAmount to send
Sigbase64Signature

Response

KeyTypeDescription
Hashbase64Tx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_getTx

Retrieve the Tx information for a specific Height of the account.

Request

KeyTypeDescription
Accountbase32Account
HeightintHeight of Account

Response

KeyTypeDescription
TxstringTx Information

locus_getAccountsHeights

Retrieve the list of Heights for the accounts.

Request

KeyTypeDescription
Accounts[]base32List of accounts for which you want to retrieve the Height.

Response

KeyTypeDescription
Heights[]stringThe Height values to correspond to the order of accounts in the parameters.

locus_getAccountHistory

Retrieve the list of Tx for the account.

Request

KeyTypeDescription
Accountbase32Account
HeightintRetrieve the starting Height
Height is -1, start from the latest Tx.
CountintNumber of Tx to retrieve (number of previous Tx from the starting position).

Response

KeyTypeDescription
Txs[]stringTx string list

locus_getAccountDetail

Retrieve detailed information of the account.

Request

KeyTypeDescription
Accountbase32Account

Response

KeyTypeDescription
IdentitystringHost : Host account of the node
Guest : Guest account of the node
Neighbor : Neighboring accounts of the shard to which the node belongs. This is the state at the time of the query and may be inaccurate depending on the synchronization status.
no identity : None of the above applies, meaning it either does not exist or belongs to a different shard
FromNoAliveboolThis 'flag' is set to 'true' if the OpenAccount has been made but has not yet been included in the consensus.
BalancestringAmount of Locus Coins in posession
UnactBalancestringBalance that cannot be used since it has not been activated yet.
Representativebase32Delegated Account (Host Account)
Grantuint64Grant in posession
PublickKeybase32Account's Normal public key
TxChainHeightintAccount's Height
TxLinkstringLast Tx link

locus_getWorldRoundStatesList

Retrieve the list of World Round States (WRS).

Request

KeyTypeDescription
RoundintStarting Round to retrieve
CountintNumber of items to retrieve (number of previous ones from the starting position), Max 500.

Response

KeyTypeDescription
NextRoundList[]intWRS list

locus_getWorldRoundState

Retrieve detailed information of the World Round State (WRS)

Request

KeyTypeDescription
RoundintRound to retrieve

Response

KeyTypeDescription
NextRoundintRound
AddShardRoundint0 : No shard splitting planned.
1 : Sharding is required, but the timing has not been determined yet.
2 above: Sharding is planned for the upcoming round.
RootHashstring
EvictedHashstring
CurrentHashstring
PrevLinkstring
PrevNextRoundint
SigHashstringThe hash value of the signature information below. The signature information below may be pruned.
ValidatorsWeightintTotal sum of the Validator's weights
Validators[]{base32,uint16,string}{Validator's Addr, Weight, Sign}
MultiSignstringMulti-signature
AggregatedNoncestringaggregated nonce of Multi-signature
CoSigners[]base32Account of the multi-signature participant

locus_getInactivateTxList

Retrieve the list of Tx for the account that has not been activated yet.

Request

KeyTypeDescription
Accountbase32Account

Response

KeyTypeDescription
TimeOutTxs[]{Sender base32, Index int32, Tx string}List of Tx that timed out due to the first target not being activated.
Txs[]{Sender base32, Index int32, Tx string}List of Tx with completed consensus on the sender's side.
UnconfirmedTxs[]{Sender base32, Index int32, Tx string}List of Tx awaiting consensus on the sender's side.
PendingTxs[]{Sender base32, Index int32, Tx string}List of Tx proposed for less than 10 seconds.
ConflictedTxs[]{Sender base32, Index int32, Tx string}List of conflicting Tx.

locus_getMontInfoList

Retrieve the account's Mont (Monitoring sent) list. You can only retrieve those associated with the node's host/guest accounts.

Request

KeyTypeDescription
Accountbase32Account

Response

KeyTypeDescription
ActivatedTxs[]{Index int32, Tx string}List of Tx that are included in the Receiver's shard's Recv list and have completed consensus. These may not yet be written to the Receiver's chain.
ProofedTxs[]{Index int32, Tx string}List of Tx with completed consensus on the sender's side.
PendingTxs[]{Index int32, Tx string}List of Tx that have only been proposed.

locus_createToken

Generating System Token. Each account can create one system token.

Request

KeyTypeDescription
Accountbase32Account to create token
TokenBalancestringQuantity of tokens to Generate
Sigbase64Signature

Response

KeyTypeDescription
TokenIDbase32Generated Token ID
HashTx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_transferToken

Send tokens to another account.

Request

KeyTypeDescription
Frombase32Account sending the token
Tobase32Account Receiving the token
AmountstringQuantity of token to be sent
TokenIDbase32Token ID of token to be sent
Sigbase64Signature

Response

KeyTypeDescription
HashTx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_getAccountTokenList

Retrieve the list of tokens owned by the account and their balances.

Request

KeyTypeDescription
Accountbase32Account generating token

Response

KeyTypeDescription
TokenListmap[base32]string{"TokenID": Balance}

locus_hasSystemToken

Check if the account has created a system token, and if so, retrieve the token ID.

Request

KeyTypeDescription
Accountbase32Account

Response

KeyTypeDescription
HavingboolStatus of whether the system token exists
TokenIDstringIf Having is true, return the system token ID.

locus_postData

Post the data.

Request

KeyTypeDescription
Accountbase32Account
LabelintTransactions with the same label are linked within the chain. When verifying the proof for a given Tx, this is used to check if there is a more recent Tx with the same label.
Database64Data to be posted
Sigbase64Signature

Response

KeyTypeDescription
HashTx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_readTxListWithProof

Retrieve the list of Tx and their corresponding proofs for the account.

Request

KeyTypeDescription
Accountbase32Account
BaseHeightintStarting Height
CountuintNumber of items to retrieve (how many previous ones from the starting position).

Response

KeyTypeDescription
Accountbase32Account
Txs[]stringTx string list
ProofMerkleProofMerkle Proof of the requested Tx list
CheckRoundP1intRound + 1 in which the Proof was generated

locus_verifyTxListWithProof

Verify the proof of the Tx list.

Request

KeyTypeDescription
Accountbase32Account
Txs[]stringList of Tx to verify
ProofMerkleProofMerkle Proof of the list of Tx to verify
CheckRoundP1intRound + 1 in which the Proof was generated

Response

KeyTypeDescription
-boolVerification Success status

locus_lockStake

Lock the stake.

Request

KeyTypeDescription
Accountbase32Account
LockAmountuint32The amount of Stake to lock (1 UnitStakeLock = 100 Locus).
Sigbase64Signature

Response

KeyTypeDescription
HashTx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_unlockStake

Unlock the Stake.

Request

KeyTypeDescription
Accountbase32Account
UnlockAmountuint32Stake to unlock (1 UnitStakeLock = 100 Locus).
Sigbase64Signature

Response

KeyTypeDescription
HashTx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_provideScript

Deploy the Core Script.

Request

KeyTypeDescription
Providerbase32Account to deploy the script
Targetbase32The account that will activate the coins or tokens sent by the provider by executing the Core script within the time lock.
TargetAfterTimeLockbase32The account that will automatically activate the coins or tokens sent by the provider after the time lock.
TimeLockintThe round duration for the time lock, with the current max = 30 and min = 3.
Args[]hexArguments to be used when the target executes the provider's script (ScriptSig), with a maximum of 4 arguments allowed.
ScriptProvidehexThe provider's script to be executed by the target, with the current MaxSize = 32 bytes.
ScriptAccepthexThe script to be executed by the target, with the current MaxSize = 32 bytes.
AmountstringThe coin amount that can be activated if the target successfully executes the Core script.
TokenAmounts[]{TokenID base32, AmountToken string}The token amounts that can be activated if the target successfully executes the Core script.
Sigbase64Signature

Response

KeyTypeDescription
HashTx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_acceptScript

Execute Core Script.

Request

KeyTypeDescription
Acceptorbase32The account that will activate the Core script specified as the target in TxProvideScript. Activation is only possible within the time lock.
Providerbase32The account that deployed the TxProvideScript.
Indexintheight of LeadTx(TxProvideScript)
Args[]hexArguments to be used when the target executes the target's script (ScriptSig), with a maximum of 4 arguments allowed.
Sigbase64Signature

Response

KeyTypeDescription
HashTx Hash
TxstringGenerated Tx
SuccessboolSuccess status

locus_queryAddress

Retrieve the full address with key address.

Request

KeyTypeDescription
Addrbase32Key Address

Response

KeyTypeDescription
Addrbase32Full Address