Files
pezkuwi-sdk-ui/packages/apps-config/src/extensions/pezkuwi-js.ts
pezkuwichain d949863789 Initial commit: Pezkuwi SDK UI
Comprehensive web interface for interacting with Pezkuwi blockchain.

Features:
- Blockchain explorer
- Wallet management
- Staking interface
- Governance participation
- Developer tools

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 13:55:36 +03:00

22 lines
849 B
TypeScript

// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { Known } from './types.js';
import { extensionsPolkadotJsSVG } from '../ui/logos/extensions/index.js';
import { externalEmptySVG } from '../ui/logos/external/index.js';
export const PezkuwiJs: Known = {
all: {
chrome: 'https://chrome.google.com/webstore/detail/polkadot%7Bjs%7D-extension/mopnmbcafieddcagagdcbnhejhlodfdd',
firefox: 'https://addons.mozilla.org/en-US/firefox/addon/pezkuwi-js-extension/'
},
desc: 'Basic account injection and signer',
name: 'pezkuwi-js extension',
ui: {
// Don't copy this line as-is :) The '|| empty' here is just there for a build
// check, aka it actually has no effect (the first part is always defined)
logo: extensionsPolkadotJsSVG || externalEmptySVG
}
};