Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 846 Bytes

core_get_total_balance.md

File metadata and controls

32 lines (26 loc) · 846 Bytes
title type
Get Total Balance
core

Get Total Balance

Gets the total balance of IXIcoins in all currently loaded wallets on this Ixian client. Essentially, this retrieves all your Ixian assets available to you on the chosen node or client.

Method: gettotalbalance

Input parameters:

Parameter Type Required Description
wallet String No Base58 Primary Wallet address in case multiple wallets are being used.

Errors:

Error Description
RPC_INTERNAL_ERROR An unknown error occurred in the node. Please check the node log for details.

Output:

  • a JSON object containinly the number of total IxiCoins in local wallets

Example:

GET http://localhost:8081/gettotalbalance

{
	"result": "100000000.00000000",
	"error": null,
	"id": null
}