@substrate/api-sidecar
Version:
REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.
15 lines (14 loc) • 526 B
TypeScript
/**
* Migration boundaries for AssetHub staking migration
* These define when staking migrated from relay chain to AssetHub
*/
export interface IMigrationBoundaries {
relayChainLastEra: number;
assetHubFirstEra: number;
assetHubMigrationStartedAt: number;
assetHubMigrationEndedAt: number;
relayMigrationStartedAt: number;
relayMigrationEndedAt: number;
}
export declare const MIGRATION_BOUNDARIES: Record<string, IMigrationBoundaries>;
export declare const relayToSpecMapping: Map<string, string>;