forked from paritytech/metadata-portal
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: build * fix: config * fix: CNAME * fix: actions * fix: re-add homepage * cleanup: remove unused assets
- Loading branch information
Showing
37 changed files
with
1,244 additions
and
478 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
centrifuge.github.io/metadata-portal | ||
centrifuge.github.io/metadata-portal/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"parity": { | ||
"name": "Parity", | ||
"url": "https://metadata.parity.io/" | ||
}, | ||
"k-factory": { | ||
"name": "Centrifuge", | ||
"url": "https://centrifuge.github.io/metadata-portal/" | ||
}, | ||
"novasama": { | ||
"name": "Novasama", | ||
"url": "https://metadata.novasama.io/" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export const About = () => ( | ||
<div className="text-sm bg-neutral-100 text-black opacity-70 p-4 rounded-3xl"> | ||
Metadata Portal is a self-hosted web page which shows you the latest | ||
metadata for a given network. | ||
</div> | ||
); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
import { render } from "@testing-library/react"; | ||
import App from "./App"; | ||
import { BrowserRouter as Router } from "react-router-dom"; | ||
|
||
test("renders ok", () => { | ||
render(<App />); | ||
render( | ||
<Router> | ||
<App /> | ||
</Router> | ||
); | ||
}); | ||
|
||
test("data file exists", async () => { | ||
require("../chains.json"); | ||
require("../../public/data.json"); | ||
}); |
Oops, something went wrong.