This is a list of JSON2.0 RPC calls to be used with Oxen Service Nodes, along with examples of each.
Get the quorum state which is the list of public keys of the nodes who are voting, and the list of public keys of the nodes who are being tested.
Testnet Example
Result
Nodes have been omitted with “...” for brevity in nodes_to_test and quorum_nodes.
Inputs
Int height
The height to query the quorum state for
Outputs
String[] nodes_to_test
An array of public keys identifying service nodes which are being tested for the queried height.
String[] quorum_state
An array of public keys identifying service nodes which are responsible for voting on the queried height.
Get the required amount of $OXEN to become an Oxen Service Node at the queried height. For stagenet and testnet values, ensure the daemon is started with the --stagenet or --testnet flags respectively.
Testnet Example
Result
Inputs
Int height
The height to query the staking requirement for
Outputs
Uint64 staking_requirement
The staking requirement in Oxen atomic units for the queried height
Get the service node public key of the queried daemon. The daemon must be started in --service-node mode otherwise this RPC command will fail.
Testnet Example
Result
Inputs
N/A
Outputs
String service_node_pubkey
The public key identifying the queried service node
get_service_nodes
Get the metadata currently associated with the queried service node public keys such as, registration height and contributors, etc. If no public key is specified, this returns all the metadata for every service node the queried daemon currently knows about.
Testnet Example
Result
Inputs
String[] service_node_pubkeys
An array of service node public keys in strings that you wish to query metadata for. If an empty array is given, this RPC command returns all service nodes it knows about.
Outputs
Entry[] service_node_states
The array of metadata for the queried service node(s)
String service_node_pubkey
The queried service node’s identifying public key
Uint64 registration_height
The height at which the registration transaction arrived on the blockchain
Uint64 last_reward_block_height
The last block height this service node received a reward. Rewards are sent to service nodes whom have been waiting longest since their last reward and are then sent to the back of the queue.
Uint64 last_reward_transaction_index
The position in the queue to receive a reward for the service nodes grouped in the last_reward_block_height.
Uint64 last_uptime_proof
Unix epoch timestamp of the last time this daemon has received a ping from the queried service node.
Contribution[] contributors
An array consisting of all the addresses that have contributed to the queried service node.
Uint64 Contribution.amount
The amount of $OXEN in atomic units the contributor has staked.
Uint64 Contribution.reserved
The amount of $OXEN in atomic units the contributor has reserved and must fulfill to completely contribute their part to the service node. Amount is equal to reserved once the contributor has fully contributed their part.
String Contribution.address
The $OXEN address that funds must come from to fulfill the contribution requirement.
Uint64 total_contributed
The total $OXEN currently contributed going towards the staking requirement.
Uint64 total_reserved
The total $OXEN that has been reserved by all contributors. The remaining $OXEN is open for other contributors to increase their stake towards the service node.
Uint64 portions_for_operator
The operator cut expressed as a value from 0 -> STAKING_PORTIONS (defined in oxen/src/cryptonote_config.h) which is the fee taken from the service node reward and given to the operator address before rewards are distributed to the contributors.
Uint64 operator_address
The wallet address which is the primary owner of the service node and also the address which the operator cut is sent to.