Skip to content

Commit 70fe20d

Browse files
committed
Turtle Block Explorer
1 parent 76e2630 commit 70fe20d

27 files changed

+12628
-2
lines changed

.htaccess

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Header set Access-Control-Allow-Origin "*"
2+
Header add Access-Control-Allow-Headers "origin, x-requested-with, content-type"
3+
Header add Access-Control-Allow-Methods "PUT, GET, POST, DELETE, OPTIONS"

LICENSE

+674
Large diffs are not rendered by default.

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1-
# block-explorer
1+
# TurtleCoin-Blockchain-Explorer
2+
Block explorer for TurtleCoin CryptoNote based cryptocurrency.
23

3-
Only submit a PR for 110% completed work. If it is not complete, the next person in line is given a chance to be reviewed. Good luck everyone!
4+
#### Installation
5+
6+
1) It takes data from daemon karbowanecd. It should be accessible from the Internet. Run karbowanecd with open port as follows:
7+
```bash
8+
./turtlecoind --restricted-rpc --enable-cors=* --enable-block_explorer --rpc-bind-ip=0.0.0.0 --rpc-bind-port=32348
9+
```
10+
2) Just upload to your website and change 'api' variable in config.js to point to your daemon.
11+
12+
13+
### Created/Mod with HEART by devopsralf
14+
### Donate: [TRTL] TRTLv2RCPuD7AaaVpQkRPF59MMLx5WW3qFxwJz4Doy7dHhNA6UuQjEpLL3rpUQS4RXdQn8fb4P1XC3K62GeJjGgG8DP9LNaTrNL

config.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
var api = 'http://127.0.0.1:11898';
2+
var blockTargetInterval = 30;
3+
var coinUnits = 100;
4+
var symbol = 'trtl';
5+
var refreshDelay = 30000;
6+
// pools stats by MainCoins
7+
var networkStat = {
8+
"trtl": [
9+
["z-pool.com", "http://z-pool.com:8117"],
10+
11+
12+
]
13+
};
14+
15+
var networkStat2 = {
16+
"trtl": [
17+
[""]
18+
]
19+
};

0 commit comments

Comments
 (0)