Pages:
Author

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

newbie
Activity: 33
Merit: 0
Good Night

what you think is going to be the inicial price of the coin?
is going to be in some exchange?
full member
Activity: 236
Merit: 100
useful console commands:
Code:

Geth console

>admin
>personal
>web3.fromWei(eth.getBalance(eth.coinbase))
>web3.fromWei(eth.getBalance(eth.accounts[1]))
>personal.newAccount("your passphrase")
>eth.sendTransaction({from:eth.coinbase, to:eth.accounts[1], value: web3.toWei(0.05, "ether")})

load js file in geth console
>loadScript("/Users/username/gethload.js")

/Users/username/gethload.js
Code:
blockHeight = eth.blockNumber
nodeinfo = admin.nodeInfo
peers = admin.peers
getBalance0 = web3.fromWei(eth.getBalance(eth.coinbase), "ether")
getBalance1=web3.fromWei(eth.getBalance(eth.accounts[1]))
Peercount = net.peerCount
>getBalance0
will show account[0]'s balance.

oh man! i just can't create wallet i giveup thank you for the teach,
i type personal.newaccount xxxx<=number

it just keep show some unexpected string
why dev can't made easy a lilttle  Cry
maybe it's me so dumb
only type in geth
>personal.newAccount("123")
123 is your passphrase
member
Activity: 116
Merit: 10
I read and see like is a good project when you think you going to have a web page and a Wallet and what are the progress in developmen
Thanks

You can download and check it with many ativirus.
newbie
Activity: 33
Merit: 0
I read and see like is a good project when you think you going to have a web page and a Wallet and what are the progress in developmen
Thanks
legendary
Activity: 963
Merit: 1002

--snip

Use my instaler, that include everything, you don'y need download anyother thing  Smiley

Never EVER install any type of software posted by a noob account created to post the link, ever.
member
Activity: 116
Merit: 10
I have done a installer for mine easy in Windows  Grin

1 - Download and install it: https://mega.nz/#!blhEnDjJ!Vz2KleI8YQzdaaS5AB1lG6ysOwVk_eH486vuLhxmPkA
2 - Go to you desktop run "1 - Crear Wallet" chosse a password, and repeat it.
3 - Go to you desktop and this time run "2 - Iniciar Nodo", wait to download the blockchain.
4 - Go to you destop and run "3 - Minar" and now you are mining UTH.

hi i download and install, but it's stucking here is that normal?
it's stucking about 30mins.should i keep waiting for it?

okay i use mining pool
but, i don't get it how to creat wallet that step
please someone help me to creat wallet, or hav winQT?

you dont followed the step by step instructions, the step 2 its to create one wallet that's its the error you have.

im creat a bat
[geth_win_x64
1 - Crear Wallet]
but it's not move
becuase, i open geth_win_x64
my desktop i not see 1 - crear wallet..
i don't know how to use
should i craet a bat on desktop?

im opend geth_win_x64
and then it's stacking on "listening on [::]:41303"  here
i don't know next step what should i do,
like 1 step crear wallet, from where to craet

Use my instaler, that include everything, you don'y need download anyother thing  Smiley
member
Activity: 105
Merit: 10
Hello.

Generally I find the ETHERCoin and its offshoots interesting.
But what is your further plans?
Have you ever written Exchanges?
As you wanted to make your Coin Popoulär?

greeting
member
Activity: 92
Merit: 10
useful console commands:
Code:

Geth console

>admin
>personal
>web3.fromWei(eth.getBalance(eth.coinbase))
>web3.fromWei(eth.getBalance(eth.accounts[1]))
>personal.newAccount("your passphrase")
>eth.sendTransaction({from:eth.coinbase, to:eth.accounts[1], value: web3.toWei(0.05, "ether")})

load js file in geth console
>loadScript("/Users/username/gethload.js")

/Users/username/gethload.js
Code:
blockHeight = eth.blockNumber
nodeinfo = admin.nodeInfo
peers = admin.peers
getBalance0 = web3.fromWei(eth.getBalance(eth.coinbase), "ether")
getBalance1=web3.fromWei(eth.getBalance(eth.accounts[1]))
Peercount = net.peerCount
>getBalance0
will show account[0]'s balance.

oh man! i just can't create wallet i giveup thank you for the teach,
i type personal.newaccount xxxx<=number

it just keep show some unexpected string
why dev can't made easy a lilttle  Cry
maybe it's me so dumb
full member
Activity: 236
Merit: 100
so this will be distributeted purely by mining?
go-ethereum:Official golang implementation of the Ethereum protocol.
solidity:The Solidity Contract-Oriented Programming Language
mix:The Mix Ethereum Dapp Development Tool

below is sample of contract

run in geth:
>
var testContract = web3.eth.contract([{"constant":false,"inputs":[{"name":"a","type":"uint256"}],"nae":"multiply","outputs":[{"name":"d","type":"uint256"}],"type":"function"}]);
var test = testContract.new(
   {
     from: web3.eth.accounts[0],
     data: '606060405260728060106000396000f360606040526000357c01000000000000000000000000000 0000000000000000000000000000090048063c6888fa1146037576035565b005b604b6004808035 9060200190919050506061565b6040518082815260200191505060405180910390f35b600060078 2029050606d565b91905056',
     gas: 3000000
   }, function(e, contract){
    console.log(e, contract);
    if (typeof contract.address != 'undefined') {
         console.log('Contract mined! address: ' + contract.address + ' transactionHash: ' + contract.transactionHash);
    }
 })
hero member
Activity: 595
Merit: 500
so this will be distributeted purely by mining?
full member
Activity: 236
Merit: 100
useful console commands:
Code:

Geth console

>admin
>personal
>web3.fromWei(eth.getBalance(eth.coinbase))
>web3.fromWei(eth.getBalance(eth.accounts[1]))
>personal.newAccount("your passphrase")
>eth.sendTransaction({from:eth.coinbase, to:eth.accounts[1], value: web3.toWei(0.05, "ether")})

load js file in geth console
>loadScript("/Users/username/gethload.js")

/Users/username/gethload.js
Code:
blockHeight = eth.blockNumber
nodeinfo = admin.nodeInfo
peers = admin.peers
getBalance0 = web3.fromWei(eth.getBalance(eth.coinbase), "ether")
getBalance1=web3.fromWei(eth.getBalance(eth.accounts[1]))
Peercount = net.peerCount
>getBalance0
will show account[0]'s balance.
member
Activity: 92
Merit: 10
I have done a installer for mine easy in Windows  Grin

1 - Download and install it: https://mega.nz/#!blhEnDjJ!Vz2KleI8YQzdaaS5AB1lG6ysOwVk_eH486vuLhxmPkA
2 - Go to you desktop run "1 - Crear Wallet" chosse a password, and repeat it.
3 - Go to you desktop and this time run "2 - Iniciar Nodo", wait to download the blockchain.
4 - Go to you destop and run "3 - Minar" and now you are mining UTH.

hi i download and install, but it's stucking here is that normal?
it's stucking about 30mins.should i keep waiting for it?

okay i use mining pool
but, i don't get it how to creat wallet that step
please someone help me to creat wallet, or hav winQT?


the answer is :
On windows you must create the blockchain first time with the genesis block
1) download [1] save it as uther-genesis.json
2) coppy that to bin folder where  geth_win_x64.exe[2] exist rename it to geth.exe
3) run from cmd geth --genesis uther-genesis.json console, wait the blockchain finish sync, close the promt
4) start as always with geth console


[1] https://www.dropbox.com/s/p4zqipcqjyg25jz/uther-genesis.json
[2] https://github.com/uthercoin/geth-builds/releases/download/1.3.5/geth_win_x64.exe



you dont followed the step by step instructions, the step 2 its to create one wallet that's its the error you have.

im creat a bat
[geth_win_x64
1 - Crear Wallet]
but it's not move
becuase, i open geth_win_x64
my desktop i not see 1 - crear wallet..
i don't know how to use
should i craet a bat on desktop?

im opend geth_win_x64
and then it's stacking on "listening on [::]:41303"  here
i don't know next step what should i do,
like 1 step crear wallet, from where to craet

the old windows release didn't include the newest genesis.
 after github.com update ,i will upload the newest windows release.

it's worth,seems start download block,but next step how to create wallet??
full member
Activity: 236
Merit: 100
I have done a installer for mine easy in Windows  Grin

1 - Download and install it: https://mega.nz/#!blhEnDjJ!Vz2KleI8YQzdaaS5AB1lG6ysOwVk_eH486vuLhxmPkA
2 - Go to you desktop run "1 - Crear Wallet" chosse a password, and repeat it.
3 - Go to you desktop and this time run "2 - Iniciar Nodo", wait to download the blockchain.
4 - Go to you destop and run "3 - Minar" and now you are mining UTH.

hi i download and install, but it's stucking here is that normal?
it's stucking about 30mins.should i keep waiting for it?

okay i use mining pool
but, i don't get it how to creat wallet that step
please someone help me to creat wallet, or hav winQT?

the answer is :
On windows you must create the blockchain first time with the genesis block
1) download [1] save it as uther-genesis.json
2) coppy that to bin folder where  geth_win_x64.exe[2] exist rename it to geth.exe
3) run from cmd geth --genesis uther-genesis.json console, wait the blockchain finish sync, close the promt
4) start as always with geth console


[1] https://www.dropbox.com/s/p4zqipcqjyg25jz/uther-genesis.json
[2] https://github.com/uthercoin/geth-builds/releases/download/1.3.5/geth_win_x64.exe



you dont followed the step by step instructions, the step 2 its to create one wallet that's its the error you have.

im creat a bat
[geth_win_x64
1 - Crear Wallet]
but it's not move
becuase, i open geth_win_x64
my desktop i not see 1 - crear wallet..
i don't know how to use
should i craet a bat on desktop?

im opend geth_win_x64
and then it's stacking on "listening on [::]:41303"  here
i don't know next step what should i do,
like 1 step crear wallet, from where to craet

the old windows release didn't include the newest genesis.
 after github.com update ,i will upload the newest windows release.
member
Activity: 92
Merit: 10
I have done a installer for mine easy in Windows  Grin

1 - Download and install it: https://mega.nz/#!blhEnDjJ!Vz2KleI8YQzdaaS5AB1lG6ysOwVk_eH486vuLhxmPkA
2 - Go to you desktop run "1 - Crear Wallet" chosse a password, and repeat it.
3 - Go to you desktop and this time run "2 - Iniciar Nodo", wait to download the blockchain.
4 - Go to you destop and run "3 - Minar" and now you are mining UTH.

hi i download and install, but it's stucking here is that normal?
it's stucking about 30mins.should i keep waiting for it?

okay i use mining pool
but, i don't get it how to creat wallet that step
please someone help me to creat wallet, or hav winQT?

you dont followed the step by step instructions, the step 2 its to create one wallet that's its the error you have.

im creat a bat
[geth_win_x64
1 - Crear Wallet]
but it's not move
becuase, i open geth_win_x64
my desktop i not see 1 - crear wallet..
i don't know how to use
should i craet a bat on desktop?

im opend geth_win_x64
and then it's stacking on "listening on [::]:41303"  here
i don't know next step what should i do,
like 1 step crear wallet, from where to craet
member
Activity: 61
Merit: 10
I have done a installer for mine easy in Windows  Grin

1 - Download and install it: https://mega.nz/#!blhEnDjJ!Vz2KleI8YQzdaaS5AB1lG6ysOwVk_eH486vuLhxmPkA
2 - Go to you desktop run "1 - Crear Wallet" chosse a password, and repeat it.
3 - Go to you desktop and this time run "2 - Iniciar Nodo", wait to download the blockchain.
4 - Go to you destop and run "3 - Minar" and now you are mining UTH.

hi i download and install, but it's stucking here is that normal?
it's stucking about 30mins.should i keep waiting for it?



okay i use mining pool
but, i don't get it how to creat wallet that step
please someone help me to creat wallet, or hav winQT?

you dont followed the step by step instructions, the step 2 its to create one wallet that's its the error you have.
member
Activity: 92
Merit: 10
I have done a installer for mine easy in Windows  Grin

1 - Download and install it: https://mega.nz/#!blhEnDjJ!Vz2KleI8YQzdaaS5AB1lG6ysOwVk_eH486vuLhxmPkA
2 - Go to you desktop run "1 - Crear Wallet" chosse a password, and repeat it.
3 - Go to you desktop and this time run "2 - Iniciar Nodo", wait to download the blockchain.
4 - Go to you destop and run "3 - Minar" and now you are mining UTH.

hi i download and install, but it's stucking here is that normal?
it's stucking about 30mins.should i keep waiting for it?



okay i use mining pool
but, i don't get it how to creat wallet that step
please someone help me to creat wallet, or hav winQT?
member
Activity: 61
Merit: 10
member
Activity: 116
Merit: 10
I have done a installer for mine easy in Windows  Grin

1 - Download and install it: https://mega.nz/#!blhEnDjJ!Vz2KleI8YQzdaaS5AB1lG6ysOwVk_eH486vuLhxmPkA
2 - Go to you desktop run "1 - Crear Wallet" chosse a password, and repeat it.
3 - Go to you desktop and this time run "2 - Iniciar Nodo", wait to download the blockchain.
4 - Go to you destop and run "3 - Minar" and now you are mining UTH.
legendary
Activity: 2688
Merit: 1240
So what is the correct chain ?? Dev ?
newbie
Activity: 6
Merit: 0
I have a good feeling about this project. Don't really know exactly why though.
Pages:
Jump to: