Files
pezkuwi-extension/packages/extension-ui/src/util/chains.ts
T
pezkuwichain ea2db6558f feat: complete Pezkuwi rebrand - remove other networks
- 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
2026-01-08 23:46:33 +03:00

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;