diff --git a/CHANGELOG.md b/CHANGELOG.md index af71ad57..a55bcfc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/utils/validateChain.ts b/src/utils/validateChain.ts index d2e38fa0..8f42b0a5 100644 --- a/src/utils/validateChain.ts +++ b/src/utils/validateChain.ts @@ -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( @@ -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 {