Post
Topic
Board Announcements (Altcoins)
Re: [ANN] UR - Distributed Via A World-wide Airdrop, Based on Ethereum
by
Arrakeen
on 08/11/2016, 00:29:26 UTC
When will wallets released ?

Still waiting for wallets. Already joined and trying to get wallets with android but its not working. Even no windows or mac wallets links are working. When will wallets released ? Kindly plz announce approximate date.

Isn't this sufficient? From OP:


Running (Devnet)

Code:
gur --networkid 1003 --bootnodes enode://fcf730cf678d6296ffa75a1b2c06aa07d9558788762d0bbefbc209ccbfb4e840f7dcfc2f7a188eb2e65056d989de3722df3fc4df286eb3690d4586992c1c6d82@138.197.138.155:19595, enode://d846b3c0445b7a91cfeb56fbeaece55ca9e559a6e5810cc41c54e2b88790fa7a24444508f16eb983630da1367ab73a6db1b705cc36134d9e61a2df070284d3f4@138.197.138.202:19595

Running (Mainnet)

Code:
gur

Creating an Account

Code:
gur account new

To check and see if you are connected to any nodes, run gur in one window, and, in another window, first run:

Code:
gur attach ipc:/full/path/to/home/dir/.ur/gur.ipc

Then, in the console, run:

Code:
admin.peers

Allowing Others to Connect to Your Node

You can get your own node info for others to connect to by entering the following in the console:

Code:
admin.nodeInfo

Mining

In the console, run:

Code:
miner.start(2); // two cores

Once you mine a few blocks, check your balance like this

Code:
web3.fromWei(ur.getBalance(ur.coinbase))

To stop mining, enter:

Code:
miner.stop();

Manually Adding Bootnodes as Peers (Mainnet)
Code:
admin.addPeer("enode://fcf730cf678d6296ffa75a1b2c06aa07d9558788762d0bbefbc209ccbfb4e840f7dcfc2f7a188eb2e65056d989de3722df3fc4df286eb3690d4586992c1c6d82@159.203.14.117:19595");
admin.addPeer("enode://d846b3c0445b7a91cfeb56fbeaece55ca9e559a6e5810cc41c54e2b88790fa7a24444508f16eb983630da1367ab73a6db1b705cc36134d9e61a2df070284d3f4@159.203.36.102:19595");

Manually Adding Bootnodes as Peers (Devnet)
Code:
admin.addPeer("enode://fcf730cf678d6296ffa75a1b2c06aa07d9558788762d0bbefbc209ccbfb4e840f7dcfc2f7a188eb2e65056d989de3722df3fc4df286eb3690d4586992c1c6d82@138.197.138.155:19595");
admin.addPeer("enode://d846b3c0445b7a91cfeb56fbeaece55ca9e559a6e5810cc41c54e2b88790fa7a24444508f16eb983630da1367ab73a6db1b705cc36134d9e61a2df070284d3f4@138.197.138.202:19595");

Official Genesis

Code:
{  
  "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 Software

COMING SOON

Pools

http://ur.acc-pool.pw
http://ur.poolcoin.biz

Exchanges

https://www.cryptopia.co.nz/Exchange/?market=UR_BTC

Stats

COMING SOON

BlockExplorer

DevNet: http://dev-explorer.ur.technology

MainNet: http://explorer.ur.technology

Console Cheat Sheet

Code:
BlockHeight == 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