mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-30 04:58:01 +00:00
32 lines
911 B
TypeScript
32 lines
911 B
TypeScript
// Copyright 2017-2026 @pezkuwi/apps-config authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { ExternalDef } from './types.js';
|
|
|
|
import { CereStats } from './cerestats.js';
|
|
import { Commonwealth } from './commonwealth.js';
|
|
import { Edgscan } from './edgscan.js';
|
|
import { Heztreasury } from './heztreasury.js';
|
|
import { KodaDot } from './kodadot.js';
|
|
import { MoonbeamApps } from './moonbeamApps.js';
|
|
import { PezkuwiassemblyIo, PezkuwiassemblyNetwork } from './pezkuwiassembly.js';
|
|
import { Statescan } from './statescan.js';
|
|
import { SubId } from './subid.js';
|
|
import { Subscan } from './subscan.js';
|
|
import { Subsquare } from './subsquare.js';
|
|
|
|
export const externalLinks: Record<string, ExternalDef> = {
|
|
CereStats,
|
|
Commonwealth,
|
|
Edgscan,
|
|
Heztreasury,
|
|
KodaDot,
|
|
MoonbeamApps,
|
|
PezkuwiassemblyIo,
|
|
PezkuwiassemblyNetwork,
|
|
Statescan,
|
|
SubId,
|
|
Subscan,
|
|
Subsquare
|
|
};
|