Skip to content
Closed
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
41 changes: 41 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Deploy to GitHub Pages

on:
push:

jobs:
build:
name: Build Explorer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
submodules: 'true'
- uses: actions/setup-node@v5
with:
cache: yarn

- run: yarn install --frozen-lockfile
- run: yarn build

- uses: actions/upload-pages-artifact@v4
with:
path: dist

deploy:
name: Deploy to GitHub Pages
needs: build

permissions:
pages: write
id-token: write

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "devnet/core/explorer/ping.pub"]
path = devnet/core/explorer/ping.pub
url = git@github.com:ping-pub/explorer.git
48 changes: 48 additions & 0 deletions devnet/core/explorer/chains/mainnet/noble.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"chain_name": "noble",
"api": [
{
"provider": "Noble Core Team",
"address": "https://api.core.devnet.noble.xyz"
}
],
"grpc": [
{
"provider": "Noble Core Team",
"address": "grpc.core.devnet.noble.xyz"
}
],
"rpc": [
{
"provider": "Noble Core Team",
"address": "https://rpc.core.devnet.noble.xyz"
}
],
"sdk_version": "0.50.13",
"coin_type": "118",
"addr_prefix": "noble",
"logo": "/logos/noble.png",
"assets": [
{
"base": "ustake",
"symbol": "STAKE",
"exponent": "6",
"logo": "/logos/noble.png"
},
{
"base": "uusdc",
"symbol": "USDC",
"exponent": "6",
"logo": "/logos/usdc.png"
}
],
"features": [
"dashboard",
"staking",
"blocks",
"transactions",
"uptime",
"supply",
"consensus"
]
}
Binary file added devnet/core/explorer/logos/noble.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added devnet/core/explorer/logos/usdc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions devnet/core/explorer/ping.pub
Submodule ping.pub added at 6d85f2
Loading