Pages:
Author

Topic: [ANN] Uther – Make Ethereum Better, based on Ethereum - page 30. (Read 44960 times)

full member
Activity: 236
Merit: 100
miner 0x9a8d. is powerful  Grin, mined almost all the test blocks.
newbie
Activity: 47
Merit: 0
could you add me to the github.com/uthercoin
done
newbie
Activity: 47
Merit: 0
count me in. am a smart contract dev. Smiley

I'm in too. I'm trying to learn to be one! And it might as well be with a new clone. Smiley

great.

will launch at March, 24th GMT 1:00
full member
Activity: 236
Merit: 100
could you add me to the github.com/uthercoin
legendary
Activity: 924
Merit: 1000
whats the mean "Uther's virtual machine", do you create the VM by yourself

Not sure, but I think it means the virtual machine that comes with Ethereum and all clones. It processes the smart-contract code.

Feel free, anyone, to correct me if I'm wrong.
hero member
Activity: 546
Merit: 500


whats the mean "Uther's virtual machine", do you create the VM by yourself
newbie
Activity: 24
Merit: 0
The total premine is 72 million


•Block Reward: 3 Uther
•Block Target: 20 seconds





I see I missed the part about 72 million premine not even going to waste my hash power.

agree, shrink that premine significantly or most people will pass on this one.
legendary
Activity: 1044
Merit: 1050
The total premine is 72 million


•Block Reward: 3 Uther
•Block Target: 20 seconds





I see I missed the part about 72 million premine not even going to waste my hash power.
legendary
Activity: 924
Merit: 1000
count me in. am a smart contract dev. Smiley

I'm in too. I'm trying to learn to be one! And it might as well be with a new clone. Smiley
legendary
Activity: 1050
Merit: 1000
The total premine is 72 million


•Block Reward: 3 Uther
•Block Target: 20 seconds



sr. member
Activity: 429
Merit: 259
Uther? B-but what about mether

 Grin Grin Grin Dude, i think no one will get this.......
legendary
Activity: 1453
Merit: 1030
Uther haha, (Uthereum?) that's pretty funny.  Cheesy
hero member
Activity: 686
Merit: 500
legendary
Activity: 1044
Merit: 1050
I'll mine a bit for fun once a pool is provided.
hero member
Activity: 756
Merit: 500
any pools?  Grin
full member
Activity: 236
Merit: 100
count me in. am a smart contract dev. Smiley
hero member
Activity: 616
Merit: 503
@Mansa_Godson
still waiting for DarkEther and Etherlite
legendary
Activity: 1517
Merit: 1042
@notsofast
Uther? B-but what about mether

So it'll take more than 45 years before 72 million Uther are mined by others, and your share of everything is down to 50%.

After half a year of mining, you still have 99% of all the Uther out there, and everyone else combined has the other 1%.

I know you wanted a premine that rewards the devs but this overbalance is ridiculous. Your coin is dead. Goodbye
newbie
Activity: 47
Merit: 0


Uther is a clone of Ethereum. The Uther network is a distributed consensus-driven computer network powered by Uther's virtual machine. It resists collusion and is impossible to shut down or censor.


Uther itself is the cryptocurrency that fuels the network. The Uther network is secured by Proof-of-Work using the Dagger algorithm. A CPU miner is built in, and Etherium's GPU miner can be used on the RPC . For their good work securing Uther network, miners are rewarded 3 Uther per block. Lika all other children of Ethereum, Uther aims at block time of about 20 seconds. The difficulty starts low to give CPU miner a chance but adjusts quickly. Later, when network is secure and thriving, Uther will shift to proof-of-stake.

There is a premine for development and marketing: bounties, rewards, etc. Both are secured by smart contracts to ensure they will be used for the long-term good of Uther. The total premine is 12 million, because other clones with smaller premines ran into trouble. Uther is here for the long term. Its total supply will be the same as Ethereum's.

Central to Uther is the smart contract. As platform, Uther has the same functionality as Ethereum. Because it is new, it provides excellent testbed to write smart contract much more cheaply than with Ethereum. As community grows, ecosystem grows with it. As ecosystem grows, smart contract field become more lush. The more lush the field, the more useful Uther is! A virtuous circle.

Smart contracts, as many know, will change the world. They will enable digital purchases, with digital keys sent to the buyer from a smart contract. They will enable smart auctions, with the winning buyer notified and even served with delivery from a smart contract. They will enable price feeds, either trustless through Guildencoin algorithm or always open to public inspection. These feeds, inspectable at will through the data from websites, will spawn market of derivatives. The first derivative will be simple, like contract for differences, but ecosystem growing lush will lead to more complex ones. Again, the public inspection will verify when feeds are not trustless.

Uther's ecosystem will also have fun! Crowdfunding, games, account controlling, many ways to have fun with currency. These fun contracts will be either trustless or open to the public inspection.  

The Development and Marketing accounts, as well as the smart contracts securing them, are always open for the public inspection.

SPECIFICATIONS:
•Algorithm: Dagger
•Block Reward: 3 Uther
•Premine For Development/Marketing: 12 million
•Block Target: 20 seconds
•Gas Limit: 5000
•Listen Port: 41303
•RPC Port: 9323


Source Code
https://github.com/uthercoin/go-uther

Windows Command Line Wallet
in directory https://github.com/uthercoin/geth-builds/releases/

Web Wallet Ðapp
https://github.com/uthercoin/meteor-dapp-wallet

New Block Explorer
http://uther.tech/


NEWS:

Foundation Contract:
  • not higher then 388,800 per month payment
  • before the end of April, 2M will transfer to the contract account
  • before the end of June, rest will transfer


ROADMAP FOR FIRST MONTH:

1. Official logo and website - coming soon
2. List on C-Cex [close to done] and Yobit.
3. Uther block explorer improvement.

HOW TO COMPILE:

FOR UBUNTU LINUX:

create new user uthernode:
Code:
sudo adduser uthernode

pick secure password!

next grant sudo privilege to user uthernode:
Code:
sudo visudo

add this line below root & other account(s) with sudo privileges:
root    ALL=(ALL:ALL) ALL
[other sudo account(s)]
Code:
uthernode ALL=(ALL:ALL) ALL
navigate:
Code:
cd /home/uthernode

then these commands:
Code:
apt-get install git binutils bison gcc make libgmp3-dev
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)

follow instructions after command finishes, then:
Code:
gvm install go1.4
gvm use go1.4 --default

set path of go to source code:
Code:
nano /etc/profile

add at bottom of file:
Code:
gopath=/home/uthernode/goSourcecode
goroot=/home/uthernode/go

if needed:
Quote
cd /home/uthernode

then:
Code:
git clone https://github.com/uthercoin/go-uther.git
cd ./go-uther/build
chmod 700 env.sh
chmod 700 flags.sh
cd ..
make geth
cd ./build/bin

enable IP Forwarding:
Code:
nano /etc/sysctl.conf

while inside, uncomment this line:
Code:
net.ipv4.ip_forward = 1

Code:
cd ./build/bin
wget https://www.dropbox.com/s/p4zqipcqjyg25jz/uther-genesis.json
./geth --genesis uther-genesis.json console


IF YOU NEED GENESIS BLOCK BUT NO DROPBOX ACCESS HERE IS GENESIS:

Code:
{
    "nonce": "0x0000000000000042",
    "timestamp": "0x0",
    "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
    "extraData": "0x0006",
    "gasLimit": "0x1388",
    "difficulty": "0x40000000",
    "mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000",
    "coinbase": "d4e39aa2f1496e6a59a705c7cfde0e2bff9fc5b2",
    "alloc": {
    "0xda9f633867e89745b46945c69418b3b72cfba0d5": { "balance": "10000000000000000000000000"},
    "0xa0009de1d8ea2d6ab14d64a3589ce3afd929c419": { "balance": "1000000000000000000000000"},
    "0x1a405d5e709346ab37f6e01da7f1c9455b33ed2d": { "balance": "1000000000000000000000000"},
    "0xd4e39aa2f1496e6a59a705c7cfde0e2bff9fc5b2": { "balance": "10000000000000000000000"}
    }
}


New Account:
Code:
./geth account new
create SECURE password and enter twice

Quote
./geth console

to start mining in console:
Quote
miner.start()

to stop mining in console:
Quote
miner.stop()



if need peer use:

Code:
admin.addPeer("enode://96af71904742ab9cf73af953968aafe16852d2586f399165c0d4e82e6a751182901f0a3ba9be8aa64a0b51247b4ba98ef2b7bf4c98be5ab8b497288e6ef3e857@37.59.24.15:41303")
admin.addPeer("enode://fc0cd3cd26ac6e58b7350ce1cf0d7116c0153caa758d1cebc93c5afb8c4d1b9fc1d7af7b233e5927f2ae7e365a3d1de6565224633c6e47bf3d95af167fbd2ece@158.69.195.137:41303")
admin.addPeer("enode://50b54003aed5ede7716831769224bc4cbd892ac92eec277e115f4c0664c553b7f0260286e9b24c3d1405f226fad0867e1837a01530bac729ffb821155fca3ccf@128.199.232.240:41303")
admin.addPeer("enode://1f9ae6e8dfb9baf0980bea8bbd0eaf0a19a568e25f70843bc70eee6e8adc79e673af88392660b770e0e28c721e98e34aca81553212acdc123f42a71f15d88294@103.230.120.198:41303")
Pages:
Jump to: