forked from polkadot-js/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpolkascan.ts
33 lines (30 loc) · 984 Bytes
/
polkascan.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
// Copyright 2017-2020 @polkadot/apps-config authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
import BN from 'bn.js';
import { externalLogos } from '../ui/logos';
export default {
chains: {
// 'Centrifuge Mainnet': 'centrifuge',
// Edgeware: 'edgeware',
Kulupu: 'kulupu',
Kusama: 'kusama',
Polkadot: 'polkadot',
'Polkadot CC1': 'polkadot-cc1'
},
create: (chain: string, path: string, data: BN | number | string): string =>
`https://polkascan.io/${chain}/${path}/${data.toString()}`,
isActive: true,
logo: externalLogos.polkascan as string,
paths: {
address: 'account',
block: 'block',
council: 'council/motion',
extrinsic: 'transaction',
proposal: 'democracy/proposal',
referendum: 'democracy/referendum',
techcomm: 'techcomm/proposal',
treasury: 'treasury/proposal'
},
url: 'https://polkascan.io/'
};