diff --git a/packages/toolbox/README.md b/packages/toolbox/README.md index 77211da630..12b06c24a3 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 7492f8da13..cfe2ec211f 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 0b036e8988..a27808cd7f 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 c7816cca14..746b48d491 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 add6f95f62..a1b517e16b 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);