BlazeStake
  • 👋Welcome to BlazeStake!
  • Protocol
    • 📘Delegation Strategy
    • 🤝Join the Pool!
    • 🛣️Roadmap
    • 🔐Audits
    • ✅Security Overview
  • Features
    • 💰Airdrops
    • 💵Treasury
    • 🖥️DAO
    • 📊Fees
    • ⚙️Custom Liquid Staking
  • Developers
    • 🖥️Open-Source Code
    • 💾Addresses
    • 👨‍💻Devnet
    • 💻Integrate
    • ⚒️TypeScript SDK
    • 📎Rust Docs
    • ⚙️Custom Liquid Staking APIs
    • 🔨Other APIs
  • Partnerships
    • 🤝Partner with Us
    • 📗List your DeFi Integration
    • 🪙Airdrop Your Token
    • 📖Submit a Treasury Proposal
    • 📸Press Kit
Powered by GitBook
On this page
  • Gets the average APY of BlazeStake over the past few epochs
  • Gets the number of validators in the BlazeStake standard delegation
  • Gets the set of validators in the BlazeStake standard delegation
  • Updates the stake pool at the beginning of the epoch from the TypeScript SDK
  1. Developers

Other APIs

Here are some other APIs that BlazeStake offers!

Gets the average APY of BlazeStake over the past few epochs

GET stake.solblaze.org/api/v1/apy

{
    "success": true,
    "apy": ...
}

Gets the number of validators in the BlazeStake standard delegation

GET stake.solblaze.org/api/v1/validator_count

{
    "success": true,
    "total": ...
}

Gets the set of validators in the BlazeStake standard delegation

GET stake.solblaze.org/api/v1/validator_set

{
    success: "true",
    "vote_accounts": [...]
}

Updates the stake pool at the beginning of the epoch from the TypeScript SDK

GET stake.solblaze.org/api/v1/update_pool

This API endpoint is a crank that is usually automatically called to update the stake pool if needed at the beginning of every epoch, but it can be called manually just in case.

Query Parameters

Name
Type
Description

network

String

The cluster to use when updating the pool (mainnet-beta)

{
    "success": true
}
{
    "success": false
}
PreviousCustom Liquid Staking APIsNextPartner with Us

Last updated 2 years ago

🔨