mirror of
https://github.com/pezkuwichain/pezkuwi-sdk-ui.git
synced 2026-06-14 09:51:05 +00:00
d949863789
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>
22 lines
849 B
TypeScript
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
|
|
}
|
|
};
|