From 9a3483b4bd1be881d551490c7d64e21f2656e00a Mon Sep 17 00:00:00 2001 From: pdp2121 <71317875+pdp2121@users.noreply.github.com> Date: Fri, 1 Sep 2023 18:50:00 -0400 Subject: [PATCH] fix: update link to retrieve amendments versions (#823) ## High Level Overview of Change The link we used to parse amendments versions has been now moved to: https://raw.githubusercontent.com/XRPLF/xrpl-dev-portal/master/content/resources/known-amendments.md ### Type of Change - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] Refactor (non-breaking change that only restructures code) - [ ] Tests (You added tests for code that already exists, or your new feature included in this PR) - [ ] Documentation Updates - [ ] Release --- src/containers/shared/amendmentUtils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/shared/amendmentUtils.ts b/src/containers/shared/amendmentUtils.ts index e5b45657d..5c960db0e 100644 --- a/src/containers/shared/amendmentUtils.ts +++ b/src/containers/shared/amendmentUtils.ts @@ -71,7 +71,7 @@ export async function nameOfAmendmentID(id: string) { async function fetchMinRippledVersions() { const response = await axios.get( - 'https://raw.githubusercontent.com/XRPLF/xrpl-dev-portal/master/content/concepts/consensus-network/amendments/known-amendments.md', + 'https://raw.githubusercontent.com/XRPLF/xrpl-dev-portal/master/content/resources/known-amendments.md', ) const text = response.data const mapping: any = {}