forked from reef-chain/console-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
polkascan.ts
30 lines (27 loc) · 816 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
// Copyright 2017-2021 @polkadot/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type BN from 'bn.js';
import { externalLogos } from '../ui/logos';
export default {
chains: {
// Kulupu: 'kulupu',
Kusama: 'kusama',
Polkadot: 'polkadot',
Rococo: 'rococo'
},
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/'
};