123456789101112131415161718192021222324252627282930 |
- // 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';
- 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,
- 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/'
- };
|