File tree Expand file tree Collapse file tree 3 files changed +22
-10
lines changed Expand file tree Collapse file tree 3 files changed +22
-10
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,14 @@ import { Common } from '../../types/base';
2
2
3
3
export const common : Common = {
4
4
name : 'Telestai' ,
5
+ // https://github.com/Telestai-Project/telestai/blob/master/src/policy/feerate.cpp#L11
5
6
unit : 'TLS' ,
6
7
symbol : 'tls' ,
8
+ // https://github.com/Telestai-Project/telestai/blob/master/src/amount.h#L15
7
9
decimalPlaces : 1e8 ,
10
+ // https://github.com/Telestai-Project/telestai/blob/master/src/validation.cpp#L129
8
11
messagePrefix : 'Telestai Signed Message:\n' ,
9
12
algorithm : 'meraki' ,
13
+ // https://github.com/Telestai-Project/telestai/blob/ddd6a08591619d1e0c8536fc91e0ff227925450d/src/qt/transactionrecord.h#L88
10
14
confirmations : 6 ,
11
15
} ;
Original file line number Diff line number Diff line change 1
1
import { Networks } from '../../types/base' ;
2
2
import { mainnet } from './mainnet' ;
3
- //import { testnet } from './testnet';
4
3
5
- export const mewc : Networks = {
4
+ export const tls : Networks = {
6
5
mainnet,
7
6
} ;
Original file line number Diff line number Diff line change @@ -3,30 +3,39 @@ import { common } from './base';
3
3
4
4
export const mainnet : MainNet = {
5
5
...common ,
6
- //Not sure what ID is
7
- id : 'XXXXXX-XXXX-XXXX-XXXXX-99E65A61EB5F' ,
6
+ id : 'F937B313-630A-4C72-AA4D-599875C4B8B9' ,
8
7
network : 'mainnet' ,
8
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L187
9
9
hashGenesisBlock :
10
10
'0x00000056b9854abf830236d77443a8e3556f0244265e3eb12281a7bc43b7ff57' ,
11
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L181
11
12
port : 8767 ,
12
13
portRpc : 8766 ,
13
14
protocol : {
15
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L177
14
16
magic : 0x454c4554 ,
15
17
} ,
16
- seedsDns : [ '45.79.159.32' ] ,
18
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L206
19
+ seedsDns : [
20
+ '45.79.159.32' ,
21
+ 'dnsseed.telestainodes.xyz' ,
22
+ 'telestai.seeds.multicoin.co' ,
23
+ ] ,
17
24
versions : {
18
25
// https://en.bitcoin.it/wiki/BIP_0032
19
26
bip32 : {
27
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L201
20
28
private : 0x0488ade4 ,
29
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L200
21
30
public : 0x0488b21e ,
22
31
} ,
23
-
32
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L204
24
33
bip44 : 10117 ,
25
-
34
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L199
26
35
private : 0x80 ,
27
-
36
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L197
28
37
public : 0x42 ,
29
-
30
- scripthash : 0x7F ,
38
+ // https://github.com/Telestai-Project/telestai/blob/master/src/chainparams.cpp#L198
39
+ scripthash : 0x7f ,
31
40
} ,
32
41
} ;
You can’t perform that action at this time.
0 commit comments