forked from polkadot-js/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
35 lines (32 loc) · 940 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2017-2022 @polkadot/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { ExternalDef } from './types';
import Commonwealth from './commonwealth';
import Dotreasury from './dotreasury';
import DotScanner from './dotscanner';
import KodaDot from './kodadot';
import Polkaholic from './polkaholic';
import Polkascan from './polkascan';
import { PolkassemblyIo, PolkassemblyNetwork } from './polkassembly';
import Polkastats from './polkastats';
import Singular from './singular';
import Statescan from './statescan';
import SubId from './subid';
import Subscan from './subscan';
import Subsquare from './subsquare';
export const externalLinks: Record<string, ExternalDef> = {
Commonwealth,
DotScanner,
Dotreasury,
KodaDot,
Polkaholic,
Polkascan,
PolkassemblyIo,
PolkassemblyNetwork,
Polkastats,
'Singular (NFTs)': Singular,
Statescan,
SubId,
Subscan,
Subsquare
};