Skip to content

Commit b49ed36

Browse files
committed
Merge branch 'main' into feature/add-search-fonctionality
2 parents 2833091 + 6a31b4a commit b49ed36

File tree

6 files changed

+28
-6
lines changed

6 files changed

+28
-6
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{".":"1.6.1"}
1+
{".":"1.8.0"}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [1.8.0](https://github.com/iExecBlockchainComputing/explorer-v2/compare/iexec-explorer-v1.7.0...iexec-explorer-v1.8.0) (2025-06-17)
4+
5+
6+
### 🚀 Features
7+
8+
* update Arbitrum Sepolia urls ([#32](https://github.com/iExecBlockchainComputing/explorer-v2/issues/32)) ([0a07bf8](https://github.com/iExecBlockchainComputing/explorer-v2/commit/0a07bf8746a67116ffabb59823e76e52330ef621))
9+
10+
## [1.7.0](https://github.com/iExecBlockchainComputing/explorer-v2/compare/iexec-explorer-v1.6.1...iexec-explorer-v1.7.0) (2025-06-12)
11+
12+
13+
### 🚀 Features
14+
15+
* add Vercel configuration for URL rewrites ([36feea5](https://github.com/iExecBlockchainComputing/explorer-v2/commit/36feea580115ee37979b10281cc9d2344f1023a4))
16+
17+
18+
### 🐞 Bug Fixes
19+
20+
* add Vercel configuration for URL rewrites ([#29](https://github.com/iExecBlockchainComputing/explorer-v2/issues/29)) ([36feea5](https://github.com/iExecBlockchainComputing/explorer-v2/commit/36feea580115ee37979b10281cc9d2344f1023a4))
21+
322
## [1.6.1](https://github.com/iExecBlockchainComputing/explorer-v2/compare/iexec-explorer-v1.6.0...iexec-explorer-v1.6.1) (2025-06-10)
423

524

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "iexec-explorer",
33
"private": true,
4-
"version": "1.6.1",
4+
"version": "1.8.0",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ export const SUPPORTED_CHAINS = [
2424
{
2525
id: 421614,
2626
name: 'Arbitrum Sepolia',
27-
slug: 'arbitrum-sepolia',
27+
slug: 'arbitrum-sepolia-testnet',
2828
color: '#28A0F080',
2929
icon: arbitrumSepoliaIcon,
3030
blockExplorerUrl: 'https://sepolia.arbiscan.io/',
3131
subgraphUrl:
32-
'https://thegraph.arbitrum-testnet.iex.ec/api/subgraphs/id/2GCj8gzLCihsiEDq8cYvC5nUgK6VfwZ6hm3Wj8A3kcxz',
32+
'https://thegraph.arbitrum-sepolia-testnet.iex.ec/api/subgraphs/id/2GCj8gzLCihsiEDq8cYvC5nUgK6VfwZ6hm3Wj8A3kcxz',
3333
wagmiNetwork: arbitrumSepolia,
3434
},
3535
];

vercel.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"rewrites": [{ "source": "/(.*)", "destination": "/" }]
3+
}

0 commit comments

Comments
 (0)