-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.ts
64 lines (63 loc) · 1.54 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import twoZeroZero from './2.0.0.json';
import fourZeroZero from './4.0.0.json';
import fourOneX from './4.1.x.json';
import fiveZeroX from './5.0.x.json';
import fiveOneX from './5.1.x.json';
import fiveTwoX from './5.2.x.json';
import fiveThreeX from './5.3.x.json';
import fiveFourX from './5.4.x.json';
import sixZeroX from './6.0.x.json';
import sixOneX from './6.1.x.json';
import sixThreeX from './6.3.x.json';
import sevenZeroX from './7.0.x.json';
export default [
{ minmax: [7000000, 7999999], types: sevenZeroX },
{ minmax: [6003000, 6999999], types: sixThreeX },
{ minmax: [6001000, 6002999], types: sixOneX },
{ minmax: [6000000, 6000009], types: sixZeroX },
{
minmax: [5004000, 5004009],
types: fiveFourX,
},
{
minmax: [5003000, 5003009],
types: fiveThreeX,
},
{
minmax: [5002000, 5002009],
types: fiveTwoX,
},
{
minmax: [5001000, 5001009],
types: fiveOneX,
},
{
minmax: [5000000, 5000009],
types: fiveZeroX,
},
{
minmax: [3010, 3019],
types: fourOneX,
},
{
minmax: [3002, 3002],
types: fourOneX,
},
{
minmax: [3003, 3003],
types: fourZeroZero,
},
{
minmax: [3000, 3001],
types: fourZeroZero,
},
{
minmax: [2021, 2023],
types: twoZeroZero,
},
/**
* Polymesh Private spec - These may need their own package in the future
*/
{ minmax: [1000000, 1999999], types: sixOneX }, // private v1 has the same spec as public 6.1/6.2
{ minmax: [2000000, 2999999], types: sevenZeroX }, // private v2 has the same spec as public v7
];