mirror of
https://github.com/pezkuwichain/pezkuwi-extension.git
synced 2026-07-06 20:47:23 +00:00
ea2db6558f
- Remove all Polkadot ecosystem networks from chain selector - Keep only: Pezkuwi Relay Chain, Zagros Relay Chain, Pezkuwi Beta Testnet - Update extension ID from polkadot-js to pezkuwi - Update PhishingDetected to use Pezkuwi branding - Update metadataMock: Westend → Zagros, WND → ZGR - Disable Ledger chains (no Pezkuwi Ledger app yet) - Update Identicon to handle pezkuwi icon theme - Clean up translation files Breaking: Extension now only supports Pezkuwi networks
29 lines
816 B
TypeScript
29 lines
816 B
TypeScript
// Copyright 2019-2025 @pezkuwi/extension-ui authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { MetadataDefBase } from '@pezkuwi/extension-inject/types';
|
|
|
|
// Pezkuwi networks only - clean and focused
|
|
const pezkuwiNetworks: MetadataDefBase[] = [
|
|
{
|
|
chain: 'Pezkuwi Relay Chain',
|
|
genesisHash: '0x0000000000000000000000000000000000000000000000000000000000000001',
|
|
icon: 'pezkuwi',
|
|
ss58Format: 42
|
|
},
|
|
{
|
|
chain: 'Zagros Relay Chain',
|
|
genesisHash: '0x0000000000000000000000000000000000000000000000000000000000000003',
|
|
icon: 'pezkuwi',
|
|
ss58Format: 42
|
|
},
|
|
{
|
|
chain: 'Pezkuwi Beta Testnet',
|
|
genesisHash: '0x0000000000000000000000000000000000000000000000000000000000000002',
|
|
icon: 'pezkuwi',
|
|
ss58Format: 42
|
|
}
|
|
];
|
|
|
|
export default pezkuwiNetworks;
|