Alchemy Documentation
Website
Roadmap
Dashboard
Search…
👋
Welcome to Alchemy
🚀
Introduction
Why Use Alchemy?
Getting Started
Core Products
Contributing to these Docs
Referral Program
Web3 University
Road To Web3
SDK
Alchemy SDK QuickStart
✨
Enhanced APIs
Enhanced APIs Overview
NFT API
Transfers API (Tx History)
Transaction Receipts API
Token API
Notify API
Debug API
Trace API
Subscription API (WebSockets)
Unstoppable Domains APIs
⛓
Chain APIs
Ethereum API
Polygon API
Arbitrum API
Optimism API
Solana API
getBlockHeight
getBlock
getBlocks
getBlocksWithLimit
getBlockTime
getBlockCommitment
getBlockProduction
isBlockhashValid
getAccountInfo
getBalance
getMultipleAccounts
getProgramAccounts
getVoteAccounts
getLargestAccounts
getClusterNodes
getVersion
getEpochInfo
getEpochSchedule
getFeeForMessage
getFirstAvailableBlock
getGenesisHash
getHighestSnapshotSlot
getMinimumBalanceForRentExemption
getRecentPerformanceSamples
getHealth
getIdentity
getInflationGovernor
getInflationRate
getInflationReward
getSupply
getSlot
getSlotLeader
getSlotLeaders
getMaxRetransmitSlot
getMaxShredInsertSlot
minimumLedgerSlot
getTokenAccountBalance
getTokenAccountsByOwner
getTokenSupply
getEpochInfo
getSignaturesForAddress
getSignatureStatuses
sendTransaction
simulateTransaction
getTransaction
Flow Docs
Crypto.org Docs
Feature Support By Chain
📖
Documentation
Best Practices When Using Alchemy
Changelog
Alchemy Web3.js
Error Reference
Compute Units (CUs)
Throughput (Rate Limits)
Gas Limits for eth_call and eth_estimateGas
Batch Requests
🎓
Road to Web3
Welcome to the Road to Web3
Important Info
Weekly Hackathons
Weekly Learning Challenges
💻
Tutorials
Hello World Smart Contract
How to Code and Deploy a Polygon Smart Contract
How to Create an NFT Tutorial
How to Build an NFT Marketplace in 2 hours
NFT Minter Tutorial: How to Create a Full Stack DApp
How to Create an ERC-20 Token (4 Steps)
Integrating Historical Transaction Data into your dApp
How to Track Mined and Pending Ethereum Transactions
Arbitrum NFTs: Creating and Deploying ERC-721
How to Send a Private Transaction on Ethereum
📜
Guides
The Merge
How to Fork Ethereum Mainnet
How to Set Up Core Web3 Developer Tools
EIP-1559 Resource and Tutorial Hub
Dashboard Walkthrough
Understanding Ethereum Logs
Deep Dive into eth_getLogs
How to Add Alchemy RPC Endpoints to Metamask
Alchemy Set-up for Macs
Choosing a Web3 Network
Running an Eth2.0 Staking Node or Validator with Alchemy
Internal Playbook: Upgrading Ethereum Nodes
Debugging CORS problems for end-users
How to interpret binaries in Solidity
How to Verify a Message Signature on Ethereum
Ethereum Transactions - Pending, Mined, Dropped & Replaced
How to Enable Compression to Speed Up JSON-RPC Blockchain Requests
📚
Resources
FAQ
Support
Blockchain 101
Web3 Glossary
Powered By
GitBook
getMaxRetransmitSlot
Get the max slot seen from retransmit stage.
Parameters
None
Results
<u64>
- Slot
Example
Request
cURL
1
curl
--
location
--
request POST
'https://solana-mainnet.g.alchemy.com/v2/demo/'
\
2
--
header
'Content-Type: application/json'
\
3
--
data
-
raw '
{
4
"jsonrpc"
:
"2.0"
,
5
"id"
:
1
,
6
"method"
:
"getMaxRetransmitSlot"
7
}
'
Copied!
Response
1
{
2
"jsonrpc"
:
"2.0"
,
3
"result"
:
136011655
,
4
"id"
:
1
5
}
Copied!
Previous
getSlotLeaders
Next
getMaxShredInsertSlot
Last modified
28d ago
Copy link
Contents
Parameters
Results
Example
Request
Response