Plian
Chinese
Chinese
  • Overview
  • Links
  • Downloads
  • FAQ
    • Node Status
    • Full Balance
    • Flow and FAQ on Becoming a Validator
    • Delegation
    • Staking Rewards
    • Monitor
    • PIScan
    • PIWallet
    • Cross-Chain Transactions
    • DApps
  • About The Blockchain
    • Multichain Framework
    • PDBFT 2.0 Consensus Algorithm
    • Validator Nodes
    • Building with Plian
  • Using The Blockchain
    • Overview
    • Delegating or Staking PI
    • Validator Node Guides
      • Express Node Setup Guide
      • Setting Up a Validator Node
      • Registering Your Node as Validator
      • Submitting Your Vote as Validator
      • Revealing Your Vote
      • Removing Your Node From the Candidate List
      • Alternate Installation Instructions
        • Building From the Source
        • Running Pchain in Docker
        • Installation Instructions for Ubuntu
        • Installation Instructions for Mac OS X
        • Installation Instructions for Windows 10
      • What is FullBalance
    • Token Swaps
    • Plian Javascript Console
    • PIwallet
      • Web
      • Desktop Wallet
        • Light Wallet Mode
        • Local Node Mode
      • Mobile Wallets
      • How to Deploy a Smart Contract
    • PMetamask
    • Advanced Features
      • Command Line Options
      • Management APIs
      • JSON RPC API
      • How to Sync and Run Testnet
  • For Developers
    • How to connect Metamask to Plian
    • How to deploy smart contract on Plian via Metamask + Remix
    • PWeb3 Javascript API
    • How to Create Your Own Subchain
    • Writing Smart Contracts With Solidity
      • Introduction to Smart Contracts
      • Installing the Solidity Compiler
      • Solidity by Example
      • Solidity in Depth
        • Layout of a Solidity Source File
        • Structure of a Contract
        • Types
        • Units and Globally Available Variables
        • Expressions and Control Structures
        • Contracts
        • Solidity Assembly
        • Miscellaneous
      • Security Considerations
      • Resources
      • Using the compiler
      • Contract Metadata
      • Contract ABI Specification
      • Yul
      • Style Guide
      • Common Patterns
      • List of Known Bugs
      • Contributing
      • Frequently Asked Questions
      • LLL
      • Index
Powered by GitBook
On this page
  • Where can I find the node’s balance info and reward info
  • What’s the meaning of each balance type shown?
  • "balance"
  • "total_delegateBalance"
  • "total_depositBalance"
  • "total_proxiedBalance"
  • "total_depositProxiedBalance"
  • "total_pendingRefundBalance"
  • "total_rewardBalance"

Was this helpful?

  1. FAQ

Full Balance

PreviousNode StatusNextFlow and FAQ on Becoming a Validator

Last updated 4 years ago

Was this helpful?

Where can I find the node’s balance info and reward info

You can go to PIwallet/ PIscan under “fullbalance” tag, or via call for the FullBalance RPC. See for more details

What’s the meaning of each balance type shown?

"balance"

This balance, also called free balance, means you can do anything on Pchain with this balance (transfer, delegate, vote), your transaction Gas Fee (gas price * used gas) will be deducted from this balance.

"total_delegateBalance"

The total delegate balance amount. If you send a delegate transaction to another address, the delegated amount will be moved from the balance field to this delegate balance. If you delegate to multiple addresses, this field will sum the total delegation amount. You won’t be able to see the detail of delegation at the blockchain level (to keep the on-chain data at a minimum). For detail of your delegated balance, you will need PIWallet or 3rd party dApp.

"total_depositBalance"

The total staking balance amount, from your own address. If you want to become a validator, after you sending the hash/reveal vote, your staking amount will be locked from the balance field to this deposit balance.

"total_proxiedBalance"

The total balance that other addresses delegated to your address. The balance has no effect until you vote to become a validator, then it will move to the deposit proxied balance. Before that, the other address also able to revoke their delegation. For detail of each proxied balance, see proxied_detail field

"total_depositProxiedBalance"

The total balance that other addresses delegated to your address that is now part of the total staking for your node. Other addresses can not revoke their delegation until the epoch reach its end. For detail of each deposit proxied balance, see proxied_detail field

"total_pendingRefundBalance"

The total balance of revoked delegation from addresses that previously were delegated to your address. The balance will refund when the epoch reaches its end. For detail of each pending refund balance, see proxied_detail field

"total_rewardBalance"

The total balance of earned reward that will unlock after each specified epoch. Once each epoch reaches its end, the reward balance of epoch will move to your balance field, free to use.

here