Skip to content

Commit 9e55608

Browse files
tom2drummaxaleks
andauthored
Release v2.5.1 (#3174)
* fail the app start if multichain config or essential dapps config were not generated properly * add timeouts for essential dapps and multichain config generators * fix "add to wallet" button in address tokens table * [skip ci] update docs * fix tx tables when there are no fee and value columns * add support for promoted multichain provider * fixes * change action button logic * fix tests * fix * hide "add network" button for multichain * shorten the amount of txs on multichain homepage * change name formatting for multichain button * add bright color variants and lg size for badges * fix y-axis margin calculation for chart with custom tick formatter * superchain bug fixes * bump versions of react and nextjs * update screenshot * bump dappscout-iframe * increase timeouts for multichain and essential dapps config generators --------- Co-authored-by: Max Alekseenko <nnwen0609@gmail.com>
1 parent 1fd77f1 commit 9e55608

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

deploy/tools/essential-dapps-chains-config-generator/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ async function getChainscoutInfo(externalChainIds: Array<string>, currentChainId
2121
const controller = new AbortController();
2222
const timeout = setTimeout(() => {
2323
controller.abort(`Request to Chainscout API timed out`);
24-
}, 10_000);
24+
}, 30_000);
2525

2626
try {
2727
const response = await fetch(

deploy/tools/essential-dapps-chains-config-generator/worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async function fetchChainConfig(url: string): Promise<ChainConfig> {
1313
const controller = new AbortController();
1414
const timeout = setTimeout(() => {
1515
controller.abort(`Request to ${ url } timed out`);
16-
}, 5_000);
16+
}, 30_000);
1717

1818
try {
1919
const response = await fetch(`${ url }/node-api/config`, { signal: controller.signal });

deploy/tools/multichain-config-generator/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ async function getChainscoutInfo(chainIds: Array<string>) {
2727
const controller = new AbortController();
2828
const timeout = setTimeout(() => {
2929
controller.abort(`Request to Chainscout API timed out`);
30-
}, 10_000);
30+
}, 30_000);
3131

3232
try {
3333
const response = await fetch(`https://chains.blockscout.com/api/chains?chain_ids=${ chainIds.join(',') }`, { signal: controller.signal });

deploy/tools/multichain-config-generator/worker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async function fetchChainConfig(url: string): Promise<ChainConfig> {
1313
const controller = new AbortController();
1414
const timeout = setTimeout(() => {
1515
controller.abort(`Request to ${ url } timed out`);
16-
}, 5_000);
16+
}, 30_000);
1717

1818
try {
1919
const response = await fetch(`${ url }/node-api/config`, { signal: controller.signal });

0 commit comments

Comments
 (0)