Account and validator reference, endpoint descriptions, and links.
Accounts
An account on Sui is not an object itself but an entity that can own objects: coins, NFTs, domain names, etc.
Suiscan shows a list of all accounts and top accounts (accounts with the highest SUI balance) on the Sui Network.
The following endpoints are available for accounts on Blockberry.
Endpoint | Description |
---|---|
getAccounts | Get a list of all accounts on the Sui Network. |
getAccontStats | Get key statistics of the queried account: balance in Sui, total number of coin denominations owned, NFTs, collections, and other objects. |
getTopAccounts | Get a list of 200 accounts having the highest balance of Sui coins. |
getAccountsCount | Get the total number of accounts on the Sui Network. |
getAccountByHash | Get account details by address hash. |
getAccountBalance | Get the balances of all coin denominations that the queried account holds in their native denominations and in USD. |
getAccountActivity | Get all transactions in which the queried account was involved either as a sender or a receiver. |
getAccountObjects | Get a list of all objects owned by the queried account. |
getAccountTransactions | Get a list of all transaction blocks run by the queried account. |
Validators
Validators are accounts that process transactions. To get in the validator set on Sui, an account must:
- Run a node.
- Have a stake over 30 mln SUI (including the self-stake and the total delegated amount).
The following endpoints are available for validators on Blockberry.
Endpoint | Description |
---|---|
getValidators | Get a list of all validators on the Sui Network. |
getValidatorsApy | Get a chart showing all validators' average APY (annual percentage yield) across the Sui Network. Average APY shows how much an account can earn on average per year by delegating Sui funds. This is a key metric to consider while making an investment decision. Avg APY is a rough estimation. The actual returns from staking may differ. |
getValidatorsAvgApy | Get a chart showing the queried validator's APY (annual percentage yield). APY shows how much an account can earn per year by delegating Sui funds to the queried validator. This is a key metric to consider while making an investment decision. Avg APY is a rough estimation. The actual returns from staking may differ. |
getValidatorsCommission | Get a chart showing the commission rate the queried validator charges from its delegators for staking services. |
getValidatorsByAddresses | Get details of multiple validator addresses. |
getValidatorsStake | Get a chart showing the stake amount the queried validator has. |
getValidatorByAddress | Get validator details by address. |
getDelegationsByValidator | Get a list of all delegations made to the queried validator. |
getDelegatorsByValidator | Get a list of all accounts that delegated Sui funds to the queried validator. |
isValidatorExist | Check if the queried account is a validator. |