Changelog
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:
{
"messages": [{
"messageId": "25e7bcf7304516a24f5ee597048ada3680dfa3264b27722b46b399da2180dea6",
"teleporterContractAddress": "0x253b2784c75e510dD0fF1da844684a1aC0aa5fcf",
"sourceBlockchainId": "2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5",
"destinationBlockchainId": "75babf9b4db10c46cd1c4cc28e199cc4acf4c64f78327ff6cda26b8785a7bb5d",
"sourceEvmChainId": "43114",
"destinationEvmChainId": "",
"messageNonce": "29",
"from": "0x573e623caCfDe4427C460Fc408aDD5AB21220FD7",
"to": "0xB324bf38e6aFf06670EF649077062A7563b87fC5",
"data": "00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000006626f6272696b0000000000000000000000000000000000000000000000000000",
"messageExecuted": false,
"receipts": [],
"receiptDelivered": false,
"rewardDetails": {
"value": "0",
"address": "0x0000000000000000000000000000000000000000",
"ercType": "ERC-20",
"name": "",
"symbol": "",
"decimals": 0
},
"status": "pending",
"sourceTransaction": {
"txHash": "0x7f5258b78964bc0f7b7abd1b3b99fb8665acb3d67e5ebe8fdf1b9e6ae6402b2a",
"timestamp": 1722571442,
"gasSpent": "3338675000000000"
}
}, {
"messageId": "2c56bfe4c816ca2d8241bf7a76ade09cb1cc9ab52dbc7b774184ad7cc9fba2a8",
"teleporterContractAddress": "0x253b2784c75e510dD0fF1da844684a1aC0aa5fcf",
"sourceBlockchainId": "2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5",
"destinationBlockchainId": "2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5",
"sourceEvmChainId": "43114",
"destinationEvmChainId": "43114",
"messageNonce": "28",
"from": "0x573e623caCfDe4427C460Fc408aDD5AB21220FD7",
"to": "0xB324bf38e6aFf06670EF649077062A7563b87fC5",
"data": "00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000006626f6272696b0000000000000000000000000000000000000000000000000000",
"messageExecuted": false,
"receipts": [],
"receiptDelivered": false,
"rewardDetails": {
"value": "0",
"address": "0x0000000000000000000000000000000000000000",
"ercType": "ERC-20",
"name": "",
"symbol": "",
"decimals": 0
},
"status": "pending",
"sourceTransaction": {
"txHash": "0xee1b6a56dca07cc35d01a912d0e80b1124f8986b1d375534ef651a822798e509",
"timestamp": 1722570309,
"gasSpent": "3338675000000000"
}
}]
}
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:
{
"createBlockTimestamp": 1599696000,
"createBlockIndex": "-1",
"subnetId": "11111111111111111111111111111111LpoYY",
"ownerAddresses": [
""
],
"threshold": 0,
"locktime": 0,
"subnetOwnershipInfo": {
"addresses": [
"0"
],
"locktime": 0,
"threshold": null
},
"blockchains": [
{
"blockchainId": "11111111111111111111111111111111LpoYY"
},
{
"blockchainId": "2oYMBNV4eNHyqk2fjjV5nVQLDbtmNJzq5s3qs3Lo6ftnC6FByM"
},
{
"blockchainId": "2q9e4r6Mu3U68nU1fYjgbR6JvwrRx36CohpAX5UQxse55x1Q5"
}
]
}
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?