Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit ab2a6be

Browse files
author
sohamb03
committed
Initial Commit
1 parent 3bf3025 commit ab2a6be

31 files changed

+847
-0
lines changed

daemon-rpc-todo

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
submit_block
2+
flush_txpool
3+
get_output_histogram
4+
get_version
5+
get_coinbase_tx_sum
6+
get_fee_estimate
7+
get_alternate_chains
8+
relay_tx
9+
sync_info
10+
get_txpool_backlog
11+
get_output_distribution
12+
13+
non-rpc (needs sorting)
14+
15+
/get_height
16+
/get_blocks.bin
17+
/get_blocks_by_height.bin
18+
/get_hashes.bin
19+
/get_o_indexes.bin
20+
/get_outs.bin
21+
/get_transactions
22+
/get_alt_blocks_hashes
23+
/is_key_image_spent
24+
/send_raw_transaction
25+
/start_mining
26+
/stop_mining
27+
/save_bc
28+
/get_peer_list
29+
/set_log_hash_rate
30+
/set_log_level
31+
/set_log_categories
32+
/get_transaction_pool
33+
/get_transaction_pool_hashes.bin
34+
/get_transaction_pool_stats
35+
/stop_daemon
36+
/get_info (not JSON)
37+
/get_limit
38+
/set_limit
39+
/out_peers
40+
/in_peers
41+
/start_save_graph
42+
/stop_save_graph
43+
/get_outs
44+
/update

decodeoutputs.php

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
//*desc: Decodes the amounts in the transaction hashes provided
3+
//*desc: WARNING: This function requires you to send your private view key to the server
4+
//*hash[]: list of hashes to get tx data for
5+
//*address: the public address of the receiver
6+
//*viewkey: the private view key of the receiver
7+
//*example: gettransactions.php?hash[]=(hash1)&hash[]=(hash2)
8+
require_once('./lib/config.php');
9+
require_once('./lib/helper.php');
10+
11+
$hashes = $_GET['hash'];
12+
$address = $_GET['address'];
13+
$viewkey = $_GET['viewkey'];
14+
$params = array(
15+
"tx_hashes" => $hashes,
16+
"address" => $address,
17+
"sec_view_key" => $viewkey
18+
);
19+
20+
$json = send_request(HOST, PORT, "decode_outputs", $params);
21+
echo $json;
22+
?>

docgen

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#!/bin/bash
2+
dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
3+
4+
function parse()
5+
{
6+
f=$(basename $1)
7+
echo "<a href=\"$f\">$f</a>" >> ${dir}/index.html
8+
9+
while IFS= read line; do
10+
if [[ $line = '//*'* ]]; then
11+
if [[ $line = '//*desc:'* ]]; then
12+
echo ${line:9} >> ${dir}/index.html
13+
else
14+
echo " " ${line:3} >> ${dir}/index.html
15+
fi
16+
fi
17+
done <"$f"
18+
19+
echo "" >> ${dir}/index.html
20+
}
21+
22+
function writeheader()
23+
{
24+
echo "<pre><h3>NERVA Public API</h3><ul>" > ${dir}/index.html
25+
}
26+
27+
function writefooter()
28+
{
29+
echo "</ul></pre>" >> ${dir}/index.html
30+
}
31+
32+
function parsefiles()
33+
{
34+
for fn in ${dir}/*.php; do
35+
parse "${fn}"
36+
done
37+
}
38+
39+
writeheader
40+
parsefiles
41+
writefooter

docgen-explorer

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
#!/bin/bash
2+
dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
3+
4+
html_file=explorer.html
5+
6+
function parse()
7+
{
8+
f=$(basename $1)
9+
echo "<li>" >> ${dir}/${html_file}
10+
echo "<strong><a href=\"api/$f\">$f</a></strong>" >> ${dir}/${html_file}
11+
12+
desc=()
13+
params=()
14+
15+
while IFS= read line; do
16+
if [[ $line = '//*'* ]]; then
17+
if [[ $line = '//*desc:'* ]]; then
18+
desc+="<div>${line:9}</div>" >> ${dir}/${html_file}
19+
else
20+
params+="<li>${line:3}</li>" >> ${dir}/${html_file}
21+
fi
22+
fi
23+
done <"$f"
24+
25+
for d in "${desc[@]}"
26+
do
27+
echo $d >> ${dir}/${html_file}
28+
done
29+
30+
if [ ${#params[@]} -ne 0 ]; then
31+
echo "<ul>" >> ${dir}/${html_file}
32+
for p in "${params[@]}"
33+
do
34+
echo $p >> ${dir}/${html_file}
35+
done
36+
echo "</ul>" >> ${dir}/${html_file}
37+
fi
38+
}
39+
40+
function writeheader()
41+
{
42+
echo "<h4>NERVA Public API</h4>" > ${dir}/${html_file}
43+
echo "<ul class=\"nerva-api-links\">" >> ${dir}/${html_file}
44+
}
45+
46+
function writefooter()
47+
{
48+
echo "</ul>" >> ${dir}/${html_file}
49+
}
50+
51+
function parsefiles()
52+
{
53+
for fn in ${dir}/*.php; do
54+
parse "${fn}"
55+
done
56+
}
57+
58+
writeheader
59+
parsefiles
60+
writefooter

explorer.html

+107
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
<h4>NERVA Public API</h4>
2+
<ul class="nerva-api-links">
3+
<li>
4+
<strong><a href="api/decodeoutputs.php">decodeoutputs.php</a></strong>
5+
<div>Decodes the amounts in the transaction hashes provided</div><div>WARNING: This function requires you to send your private view key to the server</div>
6+
<ul>
7+
<li>hash[]: list of hashes to get tx data for</li><li>address: the public address of the receiver</li><li>viewkey: the private view key of the receiver</li><li>example: gettransactions.php?hash[]=(hash1)&hash[]=(hash2)</li>
8+
</ul>
9+
<li>
10+
<strong><a href="api/getbans.php">getbans.php</a></strong>
11+
<div>Gets a list of nodes blocked by this node</div>
12+
<li>
13+
<strong><a href="api/getblockbyhash.php">getblockbyhash.php</a></strong>
14+
<div>Gets a block by it's hash</div>
15+
<ul>
16+
<li>hash: Block hash to search for</li>
17+
</ul>
18+
<li>
19+
<strong><a href="api/getblockbyheight.php">getblockbyheight.php</a></strong>
20+
<div>Gets a block by it's height</div>
21+
<ul>
22+
<li>height: Block height to search for</li>
23+
</ul>
24+
<li>
25+
<strong><a href="api/getblockcount.php">getblockcount.php</a></strong>
26+
<div>Gets the number of blocks in the longest chain</div>
27+
<li>
28+
<strong><a href="api/getblockhash.php">getblockhash.php</a></strong>
29+
<div>Gets a block hash at the specified height</div>
30+
<ul>
31+
<li>hash: Block height to search for</li>
32+
</ul>
33+
<li>
34+
<strong><a href="api/getblockheaderbyhash.php">getblockheaderbyhash.php</a></strong>
35+
<div>Gets a block header by it's hash</div>
36+
<ul>
37+
<li>hash: Block hash to search for</li>
38+
</ul>
39+
<li>
40+
<strong><a href="api/getblockheaderbyheight.php">getblockheaderbyheight.php</a></strong>
41+
<div>Gets a block header by it's height</div>
42+
<ul>
43+
<li>hash: Block height to search for</li>
44+
</ul>
45+
<li>
46+
<strong><a href="api/getblockheadersrange.php">getblockheadersrange.php</a></strong>
47+
<div>Gets the block headers in the specified range</div>
48+
<ul>
49+
<li>start_height: Height of the first block in the </li><li>end_height: Height of the last block in the range</li>
50+
</ul>
51+
<li>
52+
<strong><a href="api/getblocktemplate.php">getblocktemplate.php</a></strong>
53+
<div>Gets a block template</div>
54+
<ul>
55+
<li>address: Miner address to generate block template for</li><li>res: Reserve size</li>
56+
</ul>
57+
<li>
58+
<strong><a href="api/getconnections.php">getconnections.php</a></strong>
59+
<div>Gets the number of blocks in the longest chain</div>
60+
<li>
61+
<strong><a href="api/getgeneratedcoins.php">getgeneratedcoins.php</a></strong>
62+
<div>Gets the number of coins generated in the chain</div>
63+
<li>
64+
<strong><a href="api/gethardforkinfo.php">gethardforkinfo.php</a></strong>
65+
<div>Gets hardfork information</div>
66+
<li>
67+
<strong><a href="api/getinfo.php">getinfo.php</a></strong>
68+
<div>gets the current node information</div>
69+
<li>
70+
<strong><a href="api/getlastblockheader.php">getlastblockheader.php</a></strong>
71+
<div>Gets the last block header</div>
72+
<li>
73+
<strong><a href="api/getminingstatus.php">getminingstatus.php</a></strong>
74+
<div>Gets the mining status of the node</div>
75+
<li>
76+
<strong><a href="api/gettransactionpool.php">gettransactionpool.php</a></strong>
77+
<div>Gets a list of transactions in the pool</div>
78+
<li>
79+
<strong><a href="api/gettransactionpoolstats.php">gettransactionpoolstats.php</a></strong>
80+
<div>Gets transaction pool statistics</div>
81+
<li>
82+
<strong><a href="api/gettransactions.php">gettransactions.php</a></strong>
83+
<div>Gets a list of transactions by their hashes</div>
84+
<ul>
85+
<li>hash[]: list of hashes to get tx data for</li><li>example: gettransactions.php?hash[]=(hash1)&hash[]=(hash2)</li>
86+
</ul>
87+
<li>
88+
<strong><a href="api/gettxpubkey.php">gettxpubkey.php</a></strong>
89+
<div>extracts the TX public key from the TX.Extra data</div>
90+
<ul>
91+
<li>extra: TX.Extra field to extract the pubkey from</li>
92+
</ul>
93+
<li>
94+
<strong><a href="api/setbans.php">setbans.php</a></strong>
95+
<div>Block a node by the IP address</div>
96+
<ul>
97+
<li>ip: IP to ban</li><li>ban: To ban or not true/false</li><li>time: Number of seconds to ban for</li>
98+
</ul>
99+
<li>
100+
<strong><a href="api/submitanalytics.php">submitanalytics.php</a></strong>
101+
<li>
102+
<strong><a href="api/supply.php">supply.php</a></strong>
103+
<div>Formatted version of getgeneratedcoins for CMC</div>
104+
<li>
105+
<strong><a href="api/tradeogre.php">tradeogre.php</a></strong>
106+
<div>Get market data from TradeOgre</div>
107+
</ul>

getbans.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
//*desc: Gets a list of nodes blocked by this node
3+
require_once('./lib/config.php');
4+
require_once('./lib/helper.php');
5+
6+
$json = send_request(HOST, PORT, "get_bans", null);
7+
echo $json;
8+
?>

getblockbyhash.php

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
//*desc: Gets a block by it's hash
3+
//*hash: Block hash to search for
4+
require_once('./lib/config.php');
5+
require_once('./lib/helper.php');
6+
7+
$params = array(
8+
"hash" => $_GET["hash"]
9+
);
10+
11+
$json = send_request(HOST, PORT, "get_block", $params);
12+
$arr = json_decode($json);
13+
$f = $arr->result->json;
14+
trim($f,'"');
15+
$f = str_replace(array("\\n", "\\r"), '', $f);
16+
$f = stripslashes($f);
17+
18+
$json_arr = json_decode($f);
19+
$arr->result->json = $json_arr;
20+
21+
$formatted = json_encode($arr);
22+
23+
print_r($formatted);
24+
25+
?>

getblockbyheight.php

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
//*desc: Gets a block by it's height
3+
//*height: Block height to search for
4+
require_once('./lib/config.php');
5+
require_once('./lib/helper.php');
6+
7+
$params = array(
8+
"height" => $_GET["height"]
9+
);
10+
11+
$json = send_request(HOST, PORT, "get_block", $params);
12+
$arr = json_decode($json);
13+
$f = $arr->result->json;
14+
trim($f,'"');
15+
$f = str_replace(array("\\n", "\\r"), '', $f);
16+
$f = stripslashes($f);
17+
18+
$json_arr = json_decode($f);
19+
$arr->result->json = $json_arr;
20+
21+
$formatted = json_encode($arr);
22+
23+
print_r($formatted);
24+
?>

getblockcount.php

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
//*desc: Gets the number of blocks in the longest chain
3+
require_once('./lib/config.php');
4+
require_once('./lib/helper.php');
5+
6+
$json = send_request(HOST, PORT, "get_block_count", null);
7+
echo $json;
8+
?>

getblockhash.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
//*desc: Gets a block hash at the specified height
3+
//*hash: Block height to search for
4+
require_once('./lib/config.php');
5+
require_once('./lib/helper.php');
6+
7+
$params = array(
8+
"height" => $_GET["height"]
9+
);
10+
11+
$json = send_request(HOST, PORT, "on_get_block_hash", $params);
12+
echo $json;
13+
?>

getblockheaderbyhash.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
//*desc: Gets a block header by it's hash
3+
//*hash: Block hash to search for
4+
require_once('./lib/config.php');
5+
require_once('./lib/helper.php');
6+
7+
$params = array(
8+
"hash" => $_GET["hash"]
9+
);
10+
11+
$json = send_request(HOST, PORT, "get_block_header_by_hash", $params);
12+
echo $json;
13+
?>

getblockheaderbyheight.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
//*desc: Gets a block header by it's height
3+
//*hash: Block height to search for
4+
require_once('./lib/config.php');
5+
require_once('./lib/helper.php');
6+
7+
$params = array(
8+
"height" => $_GET["height"]
9+
);
10+
11+
$json = send_request(HOST, PORT, "get_block_header_by_height", $params);
12+
echo $json;
13+
?>

0 commit comments

Comments
 (0)