feat: Add /ahm-info endpoint#1739
Merged
Merged
Conversation
filvecchiato
previously approved these changes
Aug 29, 2025
Contributor
|
@TarikGul are docs needed for this endpoint? |
Member
Author
|
Yea I still need to add some docs, and then add the controllers to the correct assethubs |
filvecchiato
approved these changes
Aug 29, 2025
filvecchiato
left a comment
Contributor
There was a problem hiding this comment.
One minor typo and a suggestion for a possible update
| * @param hash `BlockHash` to make call at. | ||
| */ | ||
| async fetchAhmInfo(): Promise<IAhmInfo> { | ||
| if (ApiPromiseRegistry.assetHubInfo.isAssetHub) { |
Contributor
There was a problem hiding this comment.
we could potentially remove some duplication of code by checking if RC or AH specName from the main handleFrom{X} function. But for now it can work
Member
Author
There was a problem hiding this comment.
Yea I thought about this - but I wanted to keep the logic easier to read because juggling the rcApi, and ahApi becomes a little confusing.
But that being said all this extra logic will be removed once polkadot is migrated because we will have everything hardcoded.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add
/ahm-infoendpoint for Asset Hub Migration informationSummary
Adds a new REST endpoint
/ahm-infothat provides Asset Hub Migration (AHM) boundary information including migration start/end blocks for both relay chain and Asset Hub.Changes
AhmInfoControllerwith GET/ahm-infoendpointAhmInfoServicewith smart dual-mode detection logicIAhmInfointerface for structured migration dataahmtag and schemaResponse Structure
{ "relay": { "startBlock": 26041702, "endBlock": 26071771 }, "assetHub": { "startBlock": 11716733, "endBlock": 11736597 } } Usage GET /ahm-info - Returns migration boundaries for current chain context