Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/toolbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <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.
- `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.

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

Expand Down
2 changes: 1 addition & 1 deletion packages/toolbox/src/commands/chainlink/addAggregator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const builder = (): yargs.Argv<Options> =>
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',
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/toolbox/src/commands/chainlink/addAggregators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const builder = (): yargs.Argv<Options> =>
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',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const builder = (): yargs.Argv<Options> =>
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',
},
});

Expand Down
2 changes: 1 addition & 1 deletion packages/toolbox/src/commands/transaction/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down