Skip to content

Commit

Permalink
chore: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
canhtrinh committed Oct 18, 2024
1 parent f8f162f commit b2f0e74
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.17.0] - 2024-OCTOBER-18

- Fixed the error when trying to add gas for cosmos source chain from the axelarscan ui. #333
- update SDK to support Amplifier chains #334

## [0.16.1] - 2024-MAY-31

- Add Linea and Polygon Sepolia chains to testnet
Expand Down
4 changes: 2 additions & 2 deletions src/utils/validateChain.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { stringSimilarity } from "string-similarity-js";
import { importS3Configs, loadChains } from "../chains";
import { importS3Config, loadChains } from "../chains";
import { Environment } from "../libs";

export async function validateChainIdentifierOld(
Expand All @@ -22,7 +22,7 @@ export async function validateChainIdentifierOld(
}

export async function validateChainIdentifier(chainIdentifier: string, environment: Environment) {
const s3 = await importS3Configs(environment);
const s3 = await importS3Config(environment);

if (!s3 || !s3.chains)
return {
Expand Down

0 comments on commit b2f0e74

Please sign in to comment.