Bitcoin Forum

Local => 山寨币 => Topic started by: liyueyue8964 on June 13, 2016, 06:34:07 PM



Title: 以太大神请进
Post by: liyueyue8964 on June 13, 2016, 06:34:07 PM
请教个问题,以太币有没有物理硬钱包啊
 ???

谢谢指教!! ;)


Title: Re: 以太大神请进
Post by: liyueyue8964 on June 14, 2016, 04:42:35 PM
没大神,没钱包  :D


Title: Re: 以太大神请进
Post by: Beijideluotuo on June 14, 2016, 07:57:41 PM
秘药走天下。


Title: Re: 以太大神请进
Post by: healtheworld on June 15, 2016, 12:58:37 AM
Part 1                                     geth
安装
C++  bash <(curl https://install-eth.ethereum.org -L)
Go    bash <(curl https://install-geth.ethereum.org -L)
1.1  geth常用命令
geth console / geth 启动命令
geth attach        开启JavaScript控制台
geth --networkid “a”  a为网络id (输入>2的任意数字即可启动私链)
geth --testnet  连接到以太坊测试链
geth --rpc        启动HTTP-RPC服务
geth --rpccorsdomain  设置请求ip白名单 * 为所有
常用组合命令  geth --networkid "888" --rpccorsdomain="*" --rpc
1.2 JavaScript控制台常用命令
admin.nodeInfo  查询当前节点信息
admin.peers        查询已连接的节点信息
etc.accounts        查询账户列表信息
personal.newAccount(“123456")
创建新的账户 123456 为密码
personal.unlockAccount(‘0xaaa…’, '123456', 1000)
解锁账户0xaaa… 密码为 123456  解锁时间  1000s
eth.getBalance(‘0xaaa…’)
查询账户以太币信息
eth.sendTransaction({from: ‘0xaaa…’, to: ‘0xbbb..’, value: web3.toWei(100,  “ether")})
发送以太币  从0xaaa...给 0xbbb…
1.2.1 常用js方法
查询所有账户以太币信息
function checkAllBalances() { var i =0;
web3.eth.accounts.forEach( function(e){
console.log("eth.accounts["+i+"]: " +  e + "\tbalance:
"+web3.fromWei(web3.eth.getBalance(e), "ether") + " ether"); i++; })};
自己去查查


Title: Re: 以太大神请进
Post by: 007eminem on June 16, 2016, 03:35:19 AM
似乎没有,比太还处在初级阶段。


Title: Re: 以太大神请进
Post by: liyueyue8964 on June 22, 2016, 06:13:38 PM
不是吧  物理钱包,你是怎么想的

https://bitcointalk.org/index.php?topic=946448.0

https://bitcointalk.org/index.php?topic=866763.0


Title: Re: 以太大神请进
Post by: liyueyue8964 on June 22, 2016, 06:17:47 PM
Part 1                                     geth
安装
C++  bash <(curl https://install-eth.ethereum.org -L)
Go    bash <(curl https://install-geth.ethereum.org -L)
1.1  geth常用命令
geth console / geth 启动命令
geth attach        开启JavaScript控制台
geth --networkid “a”  a为网络id (输入>2的任意数字即可启动私链)
geth --testnet  连接到以太坊测试链
geth --rpc        启动HTTP-RPC服务
geth --rpccorsdomain  设置请求ip白名单 * 为所有
常用组合命令  geth --networkid "888" --rpccorsdomain="*" --rpc
1.2 JavaScript控制台常用命令
admin.nodeInfo  查询当前节点信息
admin.peers        查询已连接的节点信息
etc.accounts        查询账户列表信息
personal.newAccount(“123456")
创建新的账户 123456 为密码
personal.unlockAccount(‘0xaaa…’, '123456', 1000)
解锁账户0xaaa… 密码为 123456  解锁时间  1000s
eth.getBalance(‘0xaaa…’)
查询账户以太币信息
eth.sendTransaction({from: ‘0xaaa…’, to: ‘0xbbb..’, value: web3.toWei(100,  “ether")})
发送以太币  从0xaaa...给 0xbbb…
1.2.1 常用js方法
查询所有账户以太币信息
function checkAllBalances() { var i =0;
web3.eth.accounts.forEach( function(e){
console.log("eth.accounts["+i+"]: " +  e + "\tbalance:
"+web3.fromWei(web3.eth.getBalance(e), "ether") + " ether"); i++; })};
自己去查查

thanks a lot


Title: Re: 以太大神请进
Post by: qq1191618694 on June 24, 2016, 05:48:31 AM
有私钥就能做出来吧