golang學習筆記19 用Golang實現以太坊代幣轉賬

來源:互聯網
上載者:User

golang學習筆記19 用Golang實現以太坊代幣轉賬

  • 在以太坊區塊鏈中,我們稱代幣為Token,是以太坊區塊鏈中每個人都可以任意發行的數字資產。並且它必須是遵循erc20標準的,至於erc20標準,大家可以參考這篇文章 https://theethereum.wiki/w/index.php/ERC20_Token_Standard
  • 它實際上一段智能合約代碼,智能合約代碼中必須要有以下的一些function 和 event。
contract ERC20 {      function totalSupply() constant returns (uint totalSupply);      function balanceOf(address _owner) constant returns (uint balance);      function transfer(address _to, uint _value) returns (bool success);      function transferFrom(address _from, address _to, uint _value) returns (bool success);      function approve(address _spender, uint _value) returns (bool success);      function allowance(address _owner, address _spender) constant returns (uint remaining);      event Transfer(address indexed _from, address indexed _to, uint _value);      event Approval(address indexed _owner, address indexed _spender, uint _value); }
  • 能合約代碼是運行在以太坊智能合約虛擬機器中的。文檔:https://solidity.readthedocs.io/en/latest/installing-solidity.html#building-from-source

  • 我們看到上面那段類似golang中interface的代碼,裡面分別包含了總量、餘額、轉賬等方法。我們今天重點講的其實就是用golang來實現transfer、transferFrom方法。

串連以太坊RPC節點

  • 目前廣泛使用的是go-ethereum,他的用戶端名是geth。你可以通過編譯、安裝等方式把節點搭建在你的電腦或者伺服器中,並開啟rpc服務。本文省略這一步驟,網上有很文章供你瞭解。
  • 附上github:https://github.com/ethereum/go-ethereum
  • geth預設的rpc連接埠是8545,我使用預設連接埠,後面我們都用http://127.0.0.1:8545作為我們的rpc串連。

首先擷取go-ethereum代碼

  • go get github.com/ethereum/go-ethereum
  • 然後我們go-ethereum目錄,如果你的golang環境沒有問題,那麼應該是這個路徑。
  • cd $GOPATH/src/github.com/ethereum/go-ethereum
  • 當你進入目錄,看到代碼已經完整拉取下來,那麼我們就可以進行下一步了。

串連RPC節點

import (    "github.com/ethereum/go-ethereum/rpc"    "github.com/ethereum/go-ethereum/ethclient")rpcDial, err := rpc.Dial("http://127.0.0.1:8545")if err != nil {panic(err);}client := ethclient.NewClient(rpcDial)

  如果沒有panic,那麼我們已經成功串連了

建立測試賬戶

  • 要進行轉賬測試,那麼我們需要兩個以太坊賬戶。我們用golang來產生,我們知道以太坊的賬戶私密金鑰是放在keystore檔案中的,是一段json,並且建立的時候可以設定密碼。跟比特幣的wallet.dat檔案是一樣的意思,不見哪一樣,你的資產就永遠留在區塊鏈網路中,再也無法找回。
  • 下面我們用代碼建立兩個以太坊賬戶。
import (    "github.com/ethereum/go-ethereum/accounts/keystore")ks := keystore.NewKeyStore("/", keystore.StandardScryptN, keystore.StandardScryptP)address, _ := ks.NewAccount("password")account, err := ks.Export(address, "password", "password")if err != nil {    panic(err)}
  • 從上面的代碼我們可以看到,建立了一個以太坊的賬戶,並且密碼設定為password,並匯出。最終account變數就是賬戶的私密金鑰,是一段json文本。
  • 通過address變數,我們可以獲得賬戶的地址。如 address.Address.Hex()

產生代幣檔案

  • 開啟 cd $GOPATH/src/github.com/ethereum/go-ethereum/cmd/abigen 你能看到main.go檔案
  • 執行 go build main.go,會在目錄下產生一個main的二進位檔案。

  • 將以下的json 儲存為token.abi,並放在目前的目錄下。

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"guy","type":"address"},{"name":"wad","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint128"}],"name":"push","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"name_","type":"bytes32"}],"name":"setName","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint128"}],"name":"mint","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"wad","type":"uint128"}],"name":"pull","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"wad","type":"uint128"}],"name":"burn","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"dst","type":"address"},{"name":"wad","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"guy","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"symbol_","type":"bytes32"}],"payable":false,"type":"constructor"},{"anonymous":true,"inputs":[{"indexed":true,"name":"sig","type":"bytes4"},{"indexed":true,"name":"guy","type":"address"},{"indexed":true,"name":"foo","type":"bytes32"},{"indexed":true,"name":"bar","type":"bytes32"},{"indexed":false,"name":"wad","type":"uint256"},{"indexed":false,"name":"fax","type":"bytes"}],"name":"LogNote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

  

  • 執行命令 ./main --abi token.abi --pkg main --type Token --out token.go

  • 我們可以看到目錄下產生了一個token.go檔案。大功告成。

開始轉賬

  • 首先就把上一步產生的token.go拖入項目中。
import (    "github.com/ethereum/go-ethereum/accounts/abi/bind")//首先匯入上面產生的賬戶密鑰(json)和密碼auth, err := bind.NewTransactor(strings.NewReader("json"), "password")//這句用的是產生的token.go裡面的方法//client變數是我們第一步串連以太坊rpc節點的時候建立的//contractAddress 是代幣地址,比如eos 的地址是0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0//那麼我們轉賬針對的就是賬戶裡的eos代幣//具體看這裡 https://etherscan.io/token/0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0token, err := NewToken(common.HexToAddress("0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0"), client)if err != nil {    panic(err)}//每個代幣都會有相應的位元,例如eos是18位,那麼我們轉賬的時候,需要在金額後面加18個0decimal, err := token.Decimals(nil)if err != nil {    panic(err)}//這是處理位元的程式碼片段tenDecimal := big.NewFloat(math.Pow(10, float64(decimal)))convertAmount, _ := new(big.Float).Mul(tenDecimal, amount).Int(&big.Int{})//然後就可以轉賬到你需要接受的賬戶上了//toAddress 是接受eos的賬戶地址txs, err := token.Transfer(auth, common.HexToAddress(toAddress), convertAmount)

  到此轉賬就成功了。

https://golang.org/src/go/token/token.go

裡面還有很多其他的方法

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.