404
+ +Page not found
+ + +diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/404.html b/404.html new file mode 100644 index 0000000..60f6a36 --- /dev/null +++ b/404.html @@ -0,0 +1,205 @@ + + + +
+ + + + + + +Page not found
+ + +Aquachain is a distributed computing platform based on proof of work chain technology. +Its not a company, and there was no ICO, no pre-mine, no dev fund, no pre-sale, etc.
+Transactions, once mined, are irreversible and uncensorable. It is not an ERC20/Dex platform.
+Aquachain is the blockchain, AQUA is the fuel. You need AQUA to create and interact with contracts, store data, and to send transactions (as a tx fee).
+Symbol: Ⱥ or AQUA
+Difficulty: 240 seconds (4 minutes)
+Hashing Algorithm: ethash/argon2id
+Difficulty Readjust: Every block
+Coin reward: 1
+Max Supply: ~42mil
+Chain ID: 61717561
+Bitcointalk ANN 2018: https://bitcointalk.org/index.php?topic=3138231
+
+
+This page is able to be edited by anyone.
+You are invited to collaborate to improve this documentation.
+See Wallet
+See Mining
+see user-guide
+ +read aquachain help to see all flags
+use aquachain [your flags] dumpconfig > /tmp/aqua.config
to create a new config that shows additional options.
make sure you somehow send SIGINT to your aquachain node before system shutdown. +otherwise, your node will have to resync a number of blocks.
+with your node running, even without -rpc flag,
+you can run aquachain attach
and connect to your instance through ipc socket.
here are some useful snippets
+// use now() anywhere you need a timestamp
+now = function () { return Math.floor(new Date().getTime() / 1000)}
+
+// for example exporting chain to a timestamped file
+admin.exportChain('aquachain-bootstrap'+now()+'.dat')
+
+
+sometimes you'd like to change something without restarting the server
+// change minimum gas price for inclusion (local txs can still be 0)
+// use -gasprice flag, example 1000000000
+miner.setGasPrice(web3.toWei(1, 'gwei'))
+
+// change the extradata included in block
+// use -extra flag
+miner.setExtra("hello world")
+
+
+