diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 35c6dca791..96ed79b5cf 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed +- Supports subgraph migration `kind: ethereum`. + + ## [5.2.2] - 2024-08-14 ### Added - fix case sensitive import for schema entities in codegen (#2211) diff --git a/packages/cli/src/controller/migrate/constants.ts b/packages/cli/src/controller/migrate/constants.ts index 060d07edcf..9c7e02aae0 100644 --- a/packages/cli/src/controller/migrate/constants.ts +++ b/packages/cli/src/controller/migrate/constants.ts @@ -11,6 +11,7 @@ export const networkConverters: Partial> = export const graphToSubqlNetworkFamily: Record = { 'ethereum/contract': NETWORK_FAMILY.ethereum, + ethereum: NETWORK_FAMILY.ethereum, // Add more mappings here as needed };