Author

Topic: 以太大神请进 (Read 949 times)

brand new
Activity: 0
Merit: 0
June 24, 2016, 12:35:18 AM
#10
比特也在发展中  感慨....
brand new
Activity: 0
Merit: 0
June 23, 2016, 12:30:33 AM
#9
应该就是银行卡一个类型吧
jr. member
Activity: 51
Merit: 10
June 24, 2016, 01:48:31 AM
#8
有私钥就能做出来吧
full member
Activity: 168
Merit: 100
June 22, 2016, 02:17:47 PM
#7
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
hero member
Activity: 868
Merit: 1000
June 15, 2016, 11:35:19 PM
#5
似乎没有,比太还处在初级阶段。
hero member
Activity: 490
Merit: 500
June 14, 2016, 08:58:37 PM
#4
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++; })};
自己去查查
sr. member
Activity: 414
Merit: 250
June 14, 2016, 03:57:41 PM
#3
秘药走天下。
full member
Activity: 168
Merit: 100
June 14, 2016, 12:42:35 PM
#2
没大神,没钱包  Cheesy
full member
Activity: 168
Merit: 100
June 13, 2016, 02:34:07 PM
#1
请教个问题,以太币有没有物理硬钱包啊
 Huh

谢谢指教!! Wink
Jump to: