Skip to content

Commit 4597d37

Browse files
docs: fix broken links (#1603)
1 parent 2d438b1 commit 4597d37

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/toolbox/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ The following commands are also available:
7373

7474
- `yarn request-toolbox addAggregator` can be used if you have all information about an aggregator you want to add
7575
- `yarn request-toolbox removeAggregator` will set the given currency pair to the 0x00[...]00 address.
76-
- `yarn request-toolbox listMissingAggregators <name>` (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.
76+
- `yarn request-toolbox listMissingAggregators <name>` (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.
7777

7878
Use `--help` for details about each command.
7979

packages/toolbox/src/commands/chainlink/addAggregator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const builder = (): yargs.Argv<Options> =>
5252
list: {
5353
type: 'string',
5454
describe:
55-
'Required when passing symbols in input or output. The list NAME must be available at https://api.request.network/currency/list/NAME',
55+
'Required when passing symbols in input or output. The list NAME must be available at https://api.request.finance/currency/list/NAME',
5656
},
5757
});
5858

packages/toolbox/src/commands/chainlink/addAggregators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const builder = (): yargs.Argv<Options> =>
4141
list: {
4242
type: 'string',
4343
describe:
44-
'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',
44+
'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',
4545
},
4646
listAll: {
4747
type: 'boolean',

packages/toolbox/src/commands/chainlink/listMissingAggregators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const builder = (): yargs.Argv<Options> =>
2323
list: {
2424
type: 'string',
2525
demandOption: true,
26-
describe: 'The list NAME must be available at https://api.request.network/currency/list/NAME',
26+
describe: 'The list NAME must be available at https://api.request.finance/currency/list/NAME',
2727
},
2828
});
2929

packages/toolbox/src/commands/transaction/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const getChainConfig = async (
4141
rpcUrls: string[];
4242
} | null> => {
4343
try {
44-
const response = await fetch(`https://api.request.network/currency/chains/${chainName}`);
44+
const response = await fetch(`https://api.request.finance/currency/chains/${chainName}`);
4545
return await response.json();
4646
} catch (e) {
4747
console.warn(e.message);

0 commit comments

Comments
 (0)