Running (Devnet)gur --networkid 1003 --bootnodes enode://fcf730cf678d6296ffa75a1b2c06aa07d9558788762d0bbefbc209ccbfb4e840f7dcfc2f7a188eb2e65056d989de3722df3fc4df286eb3690d4586992c1c6d82@138.197.138.155:19595, enode://d846b3c0445b7a91cfeb56fbeaece55ca9e559a6e5810cc41c54e2b88790fa7a24444508f16eb983630da1367ab73a6db1b705cc36134d9e61a2df070284d3f4@138.197.138.202:19595
Running (Mainnet)gur
Creating an Accountgur account new
To check and see if you are connected to any nodes, run gur in one window, and, in another window, first run:
gur attach ipc:/full/path/to/home/dir/.ur/gur.ipc
Then, in the console, run:
admin.peers
Allowing Others to Connect to Your NodeYou can get your own node info for others to connect to by entering the following in the console:
admin.nodeInfo
MiningIn the console, run:
miner.start(2); // two cores
Once you mine a few blocks, check your balance like this
web3.fromWei(ur.getBalance(ur.coinbase))
To stop mining, enter:
miner.stop();
Manually Adding Bootnodes as Peers (Mainnet)admin.addPeer("enode://fcf730cf678d6296ffa75a1b2c06aa07d9558788762d0bbefbc209ccbfb4e840f7dcfc2f7a188eb2e65056d989de3722df3fc4df286eb3690d4586992c1c6d82@159.203.14.117:19595");
admin.addPeer("enode://d846b3c0445b7a91cfeb56fbeaece55ca9e559a6e5810cc41c54e2b88790fa7a24444508f16eb983630da1367ab73a6db1b705cc36134d9e61a2df070284d3f4@159.203.36.102:19595");
Manually Adding Bootnodes as Peers (Devnet)admin.addPeer("enode://fcf730cf678d6296ffa75a1b2c06aa07d9558788762d0bbefbc209ccbfb4e840f7dcfc2f7a188eb2e65056d989de3722df3fc4df286eb3690d4586992c1c6d82@138.197.138.155:19595");
admin.addPeer("enode://d846b3c0445b7a91cfeb56fbeaece55ca9e559a6e5810cc41c54e2b88790fa7a24444508f16eb983630da1367ab73a6db1b705cc36134d9e61a2df070284d3f4@138.197.138.202:19595");
Official Genesis{
"Nonce":"0x0000000000000032",
"Timestamp":"0x5800E836",
"ParentHash":"0x0000000000000000000000000000000000000000000000000000000000000000",
"ExtraData":"0x11bbe8db4e347b4e8c937c1c8370e4b5ed33adb3db69cbdb7a38e1e50b1b82fa",
"GasLimit":"0x61A8",
"Difficulty":"0x1000",
"Mixhash":"0x0000000000000000000000000000000000000000000000000000000000000000",
"Coinbase":"0x0000000000000000000000000000000000000000",
"Alloc":{
"0x482cf297b08d4523c97ec3a54e80d2d07acd76fa":{
"Balance":"1000000000000000000"
},
"0xcc74e28cec33a784c5cd40e14836dd212a937045":{
"Balance":"1000000000000000000"
},
"0xc07a55758f896449805bae3851f57e25bb7ee7ef":{
"Balance":"1000000000000000000"
},
"0x48a24dd26a32564e2697f25fc8605700ec4c0337":{
"Balance":"1000000000000000000"
},
"0x3cac5f7909f9cb666cc4d7ef32047b170e454b16":{
"Balance":"1000000000000000000"
},
"0x0827d93936df936134dd7b7acaeaea04344b11f2":{
"Balance":"1000000000000000000"
},
"0xa63e936e0eb36c103f665d53bd7ca9c31ec7e1ad":{
"Balance":"1000000000000000000"
}
}
}
Pool SoftwareCOMING SOON
Poolshttp://ur.acc-pool.pwhttp://ur.poolcoin.bizExchangeshttps://www.cryptopia.co.nz/Exchange/?market=UR_BTCStatsCOMING SOON
BlockExplorerDevNet:
http://dev-explorer.ur.technologyMainNet:
http://explorer.ur.technologyConsole Cheat SheetBlockHeight == ur.blockNumber
nodeinfo == admin.nodeInfo
peers == admin.peers
addnode == admin.addPeer("enode://nodekey:ipaddress@port")
send tx == ur.sendTransaction({from:ur.accounts[0], to:"0x
007", value: web3.toWei(1, "ether")}); // COMING SOON: we will change "ether" to "ur".
getBalance == web3.fromWei(ur.getBalance(ur.coinbase), "ether"); // COMING SOON: we will change "ether" to "ur".
Peercount == net.peerCount