Skip to content

Commit

Permalink
indexer-{agent,common}: updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tilacog committed Dec 9, 2022
1 parent d36e02e commit 730d3dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/indexer-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Removed
- The `ethereum-network` command line argument is no longer required.

## [0.20.4] - 2022-09-29
### Added
Expand Down
2 changes: 2 additions & 0 deletions packages/indexer-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- The `ethereum-network` is now inferred from provider's `chainId`

## [0.20.4] - 2022-09-29
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/indexer-common/src/indexer-management/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ const Caip2ByChainId: { [key: number]: string } = {
100: 'eip155:100',
}

/// Unified entryfpoint to resolve CAIP ID based either on chain aliases (strings)
/// Unified entrypoint to resolve CAIP ID based either on chain aliases (strings)
/// or chain ids (numbers).
export function resolveChainId(key: number | string): string {
if (typeof key === 'number') {
Expand Down

0 comments on commit 730d3dd

Please sign in to comment.