From 0f1ab9fdda2a1dd311ba1fbef5a40019c5677cb3 Mon Sep 17 00:00:00 2001 From: Alexandre ABRIOUX Date: Fri, 4 Apr 2025 16:20:47 +0200 Subject: [PATCH] docs: fix broken links --- packages/toolbox/README.md | 2 +- packages/toolbox/src/commands/chainlink/addAggregator.ts | 2 +- packages/toolbox/src/commands/chainlink/addAggregators.ts | 2 +- .../toolbox/src/commands/chainlink/listMissingAggregators.ts | 2 +- packages/toolbox/src/commands/transaction/utils.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/toolbox/README.md b/packages/toolbox/README.md index 77211da63..12b06c24a 100644 --- a/packages/toolbox/README.md +++ b/packages/toolbox/README.md @@ -73,7 +73,7 @@ The following commands are also available: - `yarn request-toolbox addAggregator` can be used if you have all information about an aggregator you want to add - `yarn request-toolbox removeAggregator` will set the given currency pair to the 0x00[...]00 address. -- `yarn request-toolbox listMissingAggregators ` (where `name` is a valid Request Finance currency list, [https://api.request.network/currency/list/name]() should be valid) will display missing aggregators for that list on all networks. +- `yarn request-toolbox listMissingAggregators ` (where `name` is a valid Request Finance currency list, [https://api.request.finance/currency/list/name]() should be valid) will display missing aggregators for that list on all networks. Use `--help` for details about each command. diff --git a/packages/toolbox/src/commands/chainlink/addAggregator.ts b/packages/toolbox/src/commands/chainlink/addAggregator.ts index 7492f8da1..cfe2ec211 100644 --- a/packages/toolbox/src/commands/chainlink/addAggregator.ts +++ b/packages/toolbox/src/commands/chainlink/addAggregator.ts @@ -52,7 +52,7 @@ export const builder = (): yargs.Argv => list: { type: 'string', describe: - 'Required when passing symbols in input or output. The list NAME must be available at https://api.request.network/currency/list/NAME', + 'Required when passing symbols in input or output. The list NAME must be available at https://api.request.finance/currency/list/NAME', }, }); diff --git a/packages/toolbox/src/commands/chainlink/addAggregators.ts b/packages/toolbox/src/commands/chainlink/addAggregators.ts index 0b036e898..a27808cd7 100644 --- a/packages/toolbox/src/commands/chainlink/addAggregators.ts +++ b/packages/toolbox/src/commands/chainlink/addAggregators.ts @@ -41,7 +41,7 @@ export const builder = (): yargs.Argv => list: { type: 'string', describe: - 'If specified, limits aggregators to currencies existing in the given list. The list NAME must be available at https://api.request.network/currency/list/NAME', + 'If specified, limits aggregators to currencies existing in the given list. The list NAME must be available at https://api.request.finance/currency/list/NAME', }, listAll: { type: 'boolean', diff --git a/packages/toolbox/src/commands/chainlink/listMissingAggregators.ts b/packages/toolbox/src/commands/chainlink/listMissingAggregators.ts index c7816cca1..746b48d49 100644 --- a/packages/toolbox/src/commands/chainlink/listMissingAggregators.ts +++ b/packages/toolbox/src/commands/chainlink/listMissingAggregators.ts @@ -23,7 +23,7 @@ export const builder = (): yargs.Argv => list: { type: 'string', demandOption: true, - describe: 'The list NAME must be available at https://api.request.network/currency/list/NAME', + describe: 'The list NAME must be available at https://api.request.finance/currency/list/NAME', }, }); diff --git a/packages/toolbox/src/commands/transaction/utils.ts b/packages/toolbox/src/commands/transaction/utils.ts index add6f95f6..a1b517e16 100644 --- a/packages/toolbox/src/commands/transaction/utils.ts +++ b/packages/toolbox/src/commands/transaction/utils.ts @@ -41,7 +41,7 @@ const getChainConfig = async ( rpcUrls: string[]; } | null> => { try { - const response = await fetch(`https://api.request.network/currency/chains/${chainName}`); + const response = await fetch(`https://api.request.finance/currency/chains/${chainName}`); return await response.json(); } catch (e) { console.warn(e.message);