Changelog
Nov 25th, 2024
Avalanche9000 (Etna Upgrade 🌋)
New endpoint to list L1 validators:
- Added new endpoint to list all or specific L1 validators
- Filters include
L1ValidationID
,SubnetID
,NodeID
, andIncludeInactiveL1Validators
.
Updated transactions endpoint:
- List latest transactions on the primary network now supports
l1ValidationID
to fetch transactions linked to specific L1 validators (e.g.,ConvertSubnetToL1Tx
). - L1 transactions are sorted in descending order with additional filters like
timestamp
andtxTypes
.
Enhanced transaction properties:
- P-Chain Transaction responses now include:
- L1 validator details (
validationID
,nodeID
,weight
,balances
, etc.). - Burned AVAX details for increasing L1 validator balance.
- Validator manager details (
BlockchainID
andContractAddress
).
- L1 validator details (
New block properties:
- P-Chain blocks now include:
ActiveL1Validators
(total active L1 validators).L1ValidatorsAccruedFees
(fees from active L1 validators).
New subnet properties:
- Subnet details now have:
IsL1
to indicate if a subnet has been converted to an L1.- Validator manager details for L1 subnets.
These changes support seamless management and visibility of L1 validators introduced in the Etna upgrade. For more details, see here
Oct 25th, 2024
Data API new endpoint - Listing networks an address has interacted with
Returns a list of all networks on which an EVM address has had activity, filtering out networks with no activity for the provided address.
Endpoint: GET https://glacier-api.avax.network/v1/chains/address/{address}
Gets the list of chains an address has interacted with.
Example response:
Sep 12th, 2024
Data API new endpoint - List teleporter messages by address
Endpoint: GET https://glacier-api.avax.network/v1/teleporter/addresses/{address}/messages
Lists teleporter messages by address. Ordered by timestamp in descending order.
Example response:
August 6th, 2024
Data API new endpoint- Get L1 details by subnetID
Endpoint: GET https://glacier-api.avax.network/v1/networks/{network}/subnets/{subnetId}
This endpoint retrieves detailed information about a specific L1/subnet registered on the network. By providing the network type (mainnet or a testnet) and the L1 ID, you can fetch various details including the subnet’s creation timestamp, ownership information, and associated blockchains.
Example response:
May 21st, 2024
Filter spam tokens and new endpoints for the primary network
The following improvements have been made to the Glacier API:
-
EVM
Remove Spam Tokens from Balances EndpointUsers can now pass in an optional query parameter
filterSpamTokens
when getting balances for a particular address to filter out balances of tokens that we’ve determined to be spam. By default, the route will now filter spam tokens unlessfilterSpamTokens=false
. Try it out here! -
Primary Network
In the List Validators endpoint, users can now sort validators by Block Index, Delegation Capacity, Time Remaining, Delegation Fee, or Uptime Performance.Users can also filter by validator uptime performance using
minUptimePerformance
andmaxUptimePerformance
and by fee percentage usingminFeePercentage
and `maxFeePercentage. -
Webhooks
A new API endpoint has been added to enable users to list all addresses associated with a webhook.
Aug 20th, 2024
Webhook service launched
With Glacier Webhooks, you can monitor real-time events on the Avalanche C-chain and L1s. For example, you can monitor smart contract events, track NFT transfers, and observe wallet-to-wallet transactions.
Key Features:
- Real-time notifications: Receive immediate updates on specified on-chain activities without polling.
- Customizable: Specify the desired event type to listen for, customizing notifications according to individual requirements.
- Secure: Employ shared secrets and signature-based verification to guarantee that notifications originate from a trusted source.
- Broad Coverage: Support for C-chain mainnet, testnet, and L1s within the Avalanche ecosystem, ensuring wide-ranging monitoring capabilities.
Use cases
- NFT Marketplace Transactions: Get alerts for NFT minting, transfers, auctions, bids, sales, and other interactions within NFT marketplaces.
- Wallet Notifications: Receive alerts when an address performs actions such as sending, receiving, swapping, or burning assets.
- DeFi Activities: Receive notifications for various DeFi activities such as liquidity provisioning, yield farming, borrowing, lending, and liquidations.
For further details, visit our:
Was this page helpful?