Skip to content

Commit d4ea914

Browse files
authored
Merge pull request #23 from sourcifyeth/staging
Release: Update Verifier links for the verify.sourcify.dev
2 parents 44c6cbc + df5e4e2 commit d4ea914

37 files changed

+88
-2509
lines changed

.env.build.main

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
REACT_APP_SERVER_URL=https://sourcify.dev/server
22
REACT_APP_REPOSITORY_URL=https://repo.sourcify.dev
3-
# Use DNSLink for IPNS
4-
REACT_APP_IPNS=repo.sourcify.dev
3+
REACT_APP_VERIFY_URL=https://verify.sourcify.dev
54
REACT_APP_TAG=master

.env.build.staging

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
REACT_APP_SERVER_URL=https://staging.sourcify.dev/server
22
REACT_APP_REPOSITORY_URL=https://repo.staging.sourcify.dev
3-
# Use DNSLink for IPNS
4-
REACT_APP_IPNS=repo.staging.sourcify.dev
3+
REACT_APP_VERIFY_URL=https://verify.staging.sourcify.dev
54
REACT_APP_TAG=staging

.env.development

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
REACT_APP_SERVER_URL=http://localhost:5555
2-
REACT_APP_REPOSITORY_URL=http://localhost:3000
3-
REACT_APP_IPNS=repo.staging.sourcify.dev
2+
REACT_APP_REPOSITORY_URL=http://localhost:5173
3+
REACT_APP_VERIFY_URL=http://verify.staging.sourcify.dev
44
REACT_APP_TAG=development

CHANGELOG.md

Lines changed: 0 additions & 50 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 sourcifyeth
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@ However pleases note that the values in the `.env` files are injected on the bui
5757
```bash
5858
REACT_APP_SERVER_URL=https://sourcify.dev/server
5959
REACT_APP_REPOSITORY_SERVER_URL=https://repo.sourcify.dev
60-
# Use DNSLink for IPNS
61-
REACT_APP_IPNS=repo.sourcify.dev
62-
REACT_APP_TAG=master
60+
REACT_APP_VERIFY_URL=http://verify.sourcify.dev
6361
```
6462

6563
If you want to provide custom values for the environment variables you need to build the image yourself.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "sourcify-ui",
3-
"version": "1.1.6",
43
"private": true,
54
"dependencies": {
65
"@ethersproject/abi": "5.7.0",

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { HashRouter, Route, Routes } from "react-router-dom";
33
import { ContextProvider } from "./Context";
44
import LandingPage from "./pages/LandingPage";
55
import Lookup from "./pages/Lookup";
6-
import Verifier from "./pages/Verifier";
6+
import VerifyRedirect from "./pages/VerifyRedirect";
77

88
function App() {
99
useEffect(() => {
@@ -17,7 +17,7 @@ function App() {
1717
<ContextProvider>
1818
<HashRouter>
1919
<Routes>
20-
<Route path="/verifier" element={<Verifier />} />
20+
<Route path="/verifier" element={<VerifyRedirect />} />
2121
<Route path="/lookup" element={<Lookup />} />
2222
<Route path="/lookup/:address" element={<Lookup />} />
2323
<Route path="/" element={<LandingPage />} />

src/components/ConstructorArguments.tsx

Lines changed: 0 additions & 188 deletions
This file was deleted.

0 commit comments

Comments
 (0)