Ever Platform
RoadmapIdeasDeveloper ToolsSDK
  • About Ever Platform
  • Sandbox endpoint
  • Quick Start
  • Use cases
    • Infrastructure Provider
      • Projects
    • Community-driven development
      • Roadmap
        • Discussions
      • Your ideas
      • DevNet Giver(Faucet)
    • Custom development
      • Our clients
  • Products
    • Evercloud
      • Networks Endpoints
      • Get Started
      • GraphQL API documentation
      • Testnet Faucets
      • About data proofs in Cloud
      • SLA
      • HTTP notifications
    • Dedicated Cloud/Node
    • Dapp Server (DS)
    • Simple Emulator (SE)
      • Endpoint
    • Network Emulator (NE)
    • Functionality comparison
  • Samples
    • GraphQL Samples
      • Send message
      • Network Config
      • Blocks
      • Accounts
      • Transactions
      • Messages
      • Block and Transaction Pagination: Best Practice
      • Multiple Message Processing and Monitoring
      • Subscribe for REMP receipts
  • Reference
    • GraphQL API
      • Quick Start
      • Samples
      • Networks
      • Explore Playground
      • Connect to GraphQL API
      • Schema
      • Blockchain API
      • Info API
      • Query Collections: Query Language
      • Subscribe Collections
      • Message Monitor API
      • Field Descriptions
    • Evercloud API Add-ons
      • Query cost
      • Blockchain Statistics
      • FT (Fungible Token) API
      • Price
      • Counterparties
      • Flex API
    • Changelog
      • Evercloud
      • Dapp Server (DS)
      • Simple Emulator (SE)
    • Breaking changes
      • Policy
      • Deprecation schedule
      • Migration guides
        • GraphQL API 1.0 migration
  • SDK and tools
    • everdev
    • Client Libraries
  • Guides
    • How to connect to GraphQL API
  • 😊Social
    • Feedback page
    • Telegram
    • Discord
Powered by GitBook
On this page

Was this helpful?

  1. Reference
  2. Evercloud API Add-ons

Blockchain Statistics

General Everscale Network statistics related to accounts, transactions, messages and blocks. And also some essential statistics about validators and depools. Available only in Cloud API.

Get all blockchain statistics:

query {
	statistics {
		version

		blocks {
			totalCount
			countByCurrentValidators
			ratePerSecond
			ratePerSecond
		}
		messages {
			totalCount
			ratePerSecond
		}
		transactions {
			totalOrdinaryCount
			lastDayOrdinaryCount
			ratePerSecond
		}
		accounts {
			totalCount
			totalSupply
			amountOnGivers
			circulatingSupply
			lastDayCount
			accountTypesCount
		}
		validators {
			totalCount
			lastCycleCountDelta
			totalStaked
			rewardsPer30Days
			apr
		}
		depools {
			activeDepoolCount
			activeParticipantsCount
			totalRewards
			totalStaked
		}
	}
}

Result:

{
  "data": {
    "statistics": {
      "version": "0.1.0",
      "blocks": {
        "totalCount": 339156267,
        "countByCurrentValidators": 369007,
        "ratePerSecond": 3.0956521739130434
      },
      "messages": {
        "totalCount": 26712014,
        "ratePerSecond": 0.16666666666666666
      },
      "transactions": {
        "totalOrdinaryCount": 25062879,
        "lastDayOrdinaryCount": 60120,
        "ratePerSecond": 0.8333333333333334
      },
      "accounts": {
        "totalCount": 537712,
        "totalSupply": "2044010756821730838",
        "amountOnGivers": "1023416009272518819",
        "circulatingSupply": "1020594747549212019",
        "lastDayCount": 0,
        "accountTypesCount": 4029
      },
      "validators": {
        "totalCount": 441,
        "lastCycleCountDelta": 7,
        "totalStaked": "447109714691325382",
        "rewardsPer30Days": "2146598319706806",
        "apr": 0.06233074698652623
      },
      "depools": {
        "activeDepoolCount": 451,
        "activeParticipantsCount": 3655,
        "totalRewards": "15498449926018398",
        "totalStaked": "416906687487291516"
      }
    }
  }
}
PreviousQuery costNextFT (Fungible Token) API

Last updated 2 years ago

Was this helpful?