Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Protofire as provider, Harmony explorer data, updated Quai url #24

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions components/ChainCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const hostingColors: Record<HostingProvider, { bg: string; text: string }> = {
'conduit': { bg: '#31e3e3', text: '#0a0a0a' },
'gelato-raas': { bg: '#f37b84', text: '#202020' },
'altlayer-raas': { bg: 'hsla(264.6428571428571, 100.00%, 78.04%, 1.00)', text: '#1c1e24' },
'protofire': { bg: '#faa807', text: '#1c1e24' },
'self': { bg: '#c2d9ff', text: '#003180' },
};

Expand Down
36 changes: 34 additions & 2 deletions data/chains.json
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@
"name": "VRCScan Testnet",
"description": "Scalable and sustainable decentralized smart contracts platform.",
"logo": "https://uploads-ssl.webflow.com/644a5b7efad46e3cd70deafb/664b89d7858b3e4cd3bff85e_vrcscan.png",
"ecosystem": "Ethererum",
"ecosystem": "Ethereum",
"isTestnet": true,
"layer": 1,
"rollupType": null,
Expand Down Expand Up @@ -9048,6 +9048,38 @@
}
]
},
"1666600000": {
"name": "Harmony",
"description": "Harmony is an open blockchain with data sharding and fast finality.",
"logo": "https://cdn.prod.website-files.com/676b715fa7c0ee9345c1a283/676b719201065b4d04e0e5cf_1666600000.png",
"ecosystem": "Harmony",
"isTestnet": false,
"layer": 1,
"rollupType": null,
"website": "https://www.harmony.one/",
"explorers": [
{
"url": "https://explorer.harmony.one/",
"hostedBy": "protofire"
}
]
},
"1666700000": {
"name": "Harmony Testnet",
"description": "Harmony is an open blockchain with data sharding and fast finality.",
"logo": "https://cdn.prod.website-files.com/676b715fa7c0ee9345c1a283/676b719201065b4d04e0e5cf_1666600000.png",
"ecosystem": "Harmony",
"isTestnet": true,
"layer": 1,
"rollupType": null,
"website": "https://www.harmony.one/",
"explorers": [
{
"url": "https://explorer.testnet.harmony.one/",
"hostedBy": "protofire"
}
]
},
"1702448187": {
"name": "Witness Chain",
"description": "Witness Chain is the EigenLayer AVS to bring Ethereum’s security to new optimistic rollups and DePIN projects.",
Expand Down Expand Up @@ -10403,7 +10435,7 @@
"website": "https://qu.ai/",
"explorers": [
{
"url": "https://cyprus1.colosseum.quaiscan.io/",
"url": "https://quaiscan.io/",
"hostedBy": "self"
}
]
Expand Down
1 change: 1 addition & 0 deletions utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export const HOSTING_PROVIDERS = {
'conduit': 'Conduit',
'gelato-raas': 'Gelato RaaS',
'altlayer-raas': 'Altlayer',
'protofire': 'Protofire',
'self': 'Self-hosted'
} as const;

Expand Down