Staking Data
Objects

Providers

Learn about the Provider object type, its fields, and how to query provider data.

Providers

A Provider refers to a participant in the PoS consensus mechanism who provides the network with validating nodes and resources to validate transactions and maintain the integrity of the blockchain. Providers earn rewards through newly minted coins or transaction fees.

Queryable Properties

You can query Provider object properties including:

  • Connected Reward Options
  • Metrics
  • Tags
  • Name and base data

Provider Object Fields

FieldTypeDescription
idIDUnique identifier
slugStringURL-friendly unique identifier
nameStringProvider name
logoUrlStringURL to provider logo
typeListItemProvider type
countryStringCountry of operation
tableFeaturePositionIntFeature position in tables
likesIntNumber of likes
linksArrayAssociated links
teamArrayTeam information
isReferralBooleanReferral status
isClaimedBooleanClaimed status
isVerifiedBooleanVerification status
isActiveBooleanActive status
isApprovedBooleanApproval status
rewardOptionsArrayAssociated reward options
metricsArrayProvider metrics
tagsArrayClassification tags
faqsArrayFrequently asked questions
registeredCompanyNameStringRegistered company name
operationInitiationDateDateWhen operations started

Sample Queries

Basic Provider Query

{
  providers(limit: 10) {
    name
    logoUrl
    country
    rewardOptions(limit: 5) {
      id
      type {
        key
        label
      }
      metrics(limit: 10) {
        metricKey
        defaultValue
      }
    }
  }
}

Search Providers

{
  providers(where: {search: "rund"}, limit: 10) {
    slug
    metrics(limit: 10) {
      metricKey
      defaultValue
      createdAt
    }
  }
}

The VSP (Verified Staking Provider) program covers over 50 Providers with combined over $10 Billion in Assets under Management.

On this page