[TOC]html
HundredLee
2013年起,便奮鬥在數字貨幣交易平臺開發第一線,2016年接觸區塊鏈,今後走上不歸路。目前正在開發一套全新的高速撮合引擎。
微博 :weibo.com/hundredlee2…
郵箱 :hundred9411#gmail.comgit
連載一,介紹以太坊,查詢餘額等。
連載二,go-ethereum轉出以太坊、如何對接token、如何查詢token餘額、如何轉出token。
連載三,交易平臺對接以太坊的一些經驗和總結。github
百度百科:golang
以太坊(Ethereum)並非一個機構,而是一款可以在區塊鏈上實現智能合約、開源的底層系統,以太坊從誕生到2017年5月,短短3年半時間,全球已有200多個以太坊應用誕生。以太坊是一個平臺和一種編程語言,使開發人員可以創建和發佈下一代分佈式應用。 以太坊能夠用來編程,分散,擔保和交易任何事物:投票,域名,金融交易所,衆籌,公司管理, 合同和大部分的協議,知識產權,還有得益於硬件集成的智能資產。編程
首先比較重要的一步,先 go get https://github.com/ethereum/go-ethereum
編程語言
若是上一步你成功安裝了geth客戶端,並開啓了rpc功能,例如http://127.0.0.1
,那麼你就能夠在golang中鏈接rpc。分佈式
直接上代碼:區塊鏈
import (
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/ethereum/go-ethereum/rpc"
)
func connectToRpc() (*ethclient.Client, error) {
client, err := rpc.Dial("http://127.0.0.1")
if err != nil {
return nil, err
}
conn := ethclient.NewClient(client)
return conn, nil
}複製代碼
import (
"context"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
"github.com/ethereum/go-ethereum/common"
)
//特別注意,這裏的address就是你要查詢的以太坊餘額的地址。通常是0xddddd 這樣的形式
func GetBalance(address string) {
client,err := connectToRpc()
if err != nil {
panic(err.Error())
}
balance, err := client.BalanceAt(context.TODO(),common.HexToAddress(address), nil)
}複製代碼
if err != nil {
beego.Error(err.Error())
} else {
//這個就是地址中以太坊的餘額
balanceV := float64(balance.Int64()) * math.Pow(10, -18)
}複製代碼
接受捐贈,多少都是支持。
ui