plugeth/ethereal/ui/library.go

107 lines
2.4 KiB
Go
Raw Normal View History

2014-02-21 16:29:59 +00:00
package ethui
import (
"encoding/hex"
"fmt"
"github.com/ethereum/eth-go/ethchain"
"github.com/ethereum/eth-go/ethutil"
"github.com/obscuren/mutan"
"strings"
2014-02-21 16:29:59 +00:00
)
type EthLib struct {
2014-03-05 09:57:14 +00:00
stateManager *ethchain.StateManager
2014-02-21 16:29:59 +00:00
blockChain *ethchain.BlockChain
txPool *ethchain.TxPool
}
func (lib *EthLib) CreateTx(recipient, valueStr, gasStr, gasPriceStr, data string) string {
var hash []byte
var contractCreation bool
if len(recipient) == 0 {
contractCreation = true
} else {
var err error
hash, err = hex.DecodeString(recipient)
if err != nil {
return err.Error()
}
}
keyPair := ethutil.Config.Db.GetKeys()[0]
value := ethutil.Big(valueStr)
gas := ethutil.Big(gasStr)
gasPrice := ethutil.Big(gasPriceStr)
var tx *ethchain.Transaction
// Compile and assemble the given data
if contractCreation {
2014-03-30 20:03:29 +00:00
asm, err := mutan.Compile(strings.NewReader(data), false)
if err != nil {
return err.Error()
}
code := ethutil.Assemble(asm...)
tx = ethchain.NewContractCreationTx(value, gasPrice, code)
} else {
tx = ethchain.NewTransactionMessage(hash, value, gasPrice, gas, []string{})
}
tx.Nonce = lib.stateManager.GetAddrState(keyPair.Address()).Nonce
tx.Sign(keyPair.PrivateKey)
lib.txPool.QueueTransaction(tx)
if contractCreation {
ethutil.Config.Log.Infof("Contract addr %x", tx.Hash()[12:])
} else {
ethutil.Config.Log.Infof("Tx hash %x", tx.Hash())
}
return ethutil.Hex(tx.Hash())
}
/*
func (lib *EthLib) CreateTx(receiver, a, data string) string {
var hash []byte
if len(receiver) == 0 {
hash = ethchain.ContractAddr
} else {
var err error
hash, err = hex.DecodeString(receiver)
if err != nil {
return err.Error()
}
2014-02-21 16:29:59 +00:00
}
k, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
2014-03-21 10:16:41 +00:00
keyPair := ethutil.NewKeyFromBytes(k)
amount := ethutil.Big(a)
code := ethchain.Compile(strings.Split(data, "\n"))
tx := ethchain.NewTx(hash, amount, code)
2014-03-21 10:16:41 +00:00
tx.Nonce = lib.stateManager.GetAddrState(keyPair.Address()).Nonce
2014-03-21 10:16:41 +00:00
tx.Sign(keyPair.PrivateKey)
2014-02-21 16:29:59 +00:00
lib.txPool.QueueTransaction(tx)
if len(receiver) == 0 {
ethutil.Config.Log.Infof("Contract addr %x", tx.Hash()[12:])
2014-02-25 09:55:44 +00:00
} else {
ethutil.Config.Log.Infof("Tx hash %x", tx.Hash())
}
2014-02-21 16:29:59 +00:00
return ethutil.Hex(tx.Hash())
}
*/
2014-02-21 16:29:59 +00:00
func (lib *EthLib) GetBlock(hexHash string) *Block {
hash, err := hex.DecodeString(hexHash)
if err != nil {
return nil
}
block := lib.blockChain.GetBlock(hash)
fmt.Println(block)
2014-02-21 16:29:59 +00:00
return &Block{Number: int(block.BlockInfo().Number), Hash: ethutil.Hex(block.Hash())}
}