| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | package xeth | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2014-08-20 13:05:26 +02:00
										 |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	"encoding/json" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2014-10-31 12:37:43 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/crypto" | 
					
						
							| 
									
										
										
										
											2014-10-23 15:01:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/ethutil" | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/state" | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | type JSXEth struct { | 
					
						
							|  |  |  | 	*XEth | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | func NewJSXEth(eth core.EthManager) *JSXEth { | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | 	return &JSXEth{New(eth)} | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) BlockByHash(strHash string) *JSBlock { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	hash := ethutil.Hex2Bytes(strHash) | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 	block := self.obj.ChainManager().GetBlock(hash) | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return NewJSBlock(block) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) BlockByNumber(num int32) *JSBlock { | 
					
						
							| 
									
										
										
										
											2014-08-20 13:36:54 +02:00
										 |  |  | 	if num == -1 { | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 		return NewJSBlock(self.obj.ChainManager().CurrentBlock) | 
					
						
							| 
									
										
										
										
											2014-08-20 13:36:54 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 11:53:11 +02:00
										 |  |  | 	return NewJSBlock(self.obj.ChainManager().GetBlockByNumber(uint64(num))) | 
					
						
							| 
									
										
										
										
											2014-08-20 13:36:54 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) Block(v interface{}) *JSBlock { | 
					
						
							| 
									
										
										
										
											2014-08-20 16:40:19 +02:00
										 |  |  | 	if n, ok := v.(int32); ok { | 
					
						
							|  |  |  | 		return self.BlockByNumber(n) | 
					
						
							|  |  |  | 	} else if str, ok := v.(string); ok { | 
					
						
							|  |  |  | 		return self.BlockByHash(str) | 
					
						
							|  |  |  | 	} else if f, ok := v.(float64); ok { // Don't ask ... | 
					
						
							|  |  |  | 		return self.BlockByNumber(int32(f)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) Key() *JSKey { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	return NewJSKey(self.obj.KeyManager().KeyPair()) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) StateObject(addr string) *JSObject { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	object := &Object{self.World().safeGet(ethutil.Hex2Bytes(addr))} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NewJSObject(object) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) PeerCount() int { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	return self.obj.PeerCount() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) Peers() []JSPeer { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	var peers []JSPeer | 
					
						
							| 
									
										
										
										
											2014-12-14 18:09:33 +00:00
										 |  |  | 	for _, peer := range self.obj.Peers() { | 
					
						
							|  |  |  | 		peers = append(peers, *NewJSPeer(peer)) | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return peers | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) IsMining() bool { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	return self.obj.IsMining() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) IsListening() bool { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	return self.obj.IsListening() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) CoinBase() string { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	return ethutil.Bytes2Hex(self.obj.KeyManager().Address()) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) NumberToHuman(balance string) string { | 
					
						
							| 
									
										
										
										
											2014-08-18 10:17:45 +02:00
										 |  |  | 	b := ethutil.Big(balance) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ethutil.CurrencyToString(b) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) StorageAt(addr, storageAddr string) string { | 
					
						
							| 
									
										
										
										
											2014-08-20 09:59:09 +02:00
										 |  |  | 	storage := self.World().SafeGet(ethutil.Hex2Bytes(addr)).Storage(ethutil.Hex2Bytes(storageAddr)) | 
					
						
							| 
									
										
										
										
											2014-08-21 21:06:42 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ethutil.Bytes2Hex(storage.Bytes()) | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) BalanceAt(addr string) string { | 
					
						
							| 
									
										
										
										
											2014-10-23 01:01:26 +02:00
										 |  |  | 	return self.World().SafeGet(ethutil.Hex2Bytes(addr)).Balance().String() | 
					
						
							| 
									
										
										
										
											2014-09-22 14:51:21 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) TxCountAt(address string) int { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	return int(self.World().SafeGet(ethutil.Hex2Bytes(address)).Nonce) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) CodeAt(address string) string { | 
					
						
							| 
									
										
										
										
											2014-09-22 14:51:21 +02:00
										 |  |  | 	return ethutil.Bytes2Hex(self.World().SafeGet(ethutil.Hex2Bytes(address)).Code) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) IsContract(address string) bool { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	return len(self.World().SafeGet(ethutil.Hex2Bytes(address)).Code) > 0 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) SecretToAddress(key string) string { | 
					
						
							| 
									
										
										
										
											2014-10-31 12:37:43 +01:00
										 |  |  | 	pair, err := crypto.NewKeyPairFromSec(ethutil.Hex2Bytes(key)) | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return "" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ethutil.Bytes2Hex(pair.Address()) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) Execute(addr, value, gas, price, data string) (string, error) { | 
					
						
							| 
									
										
										
										
											2014-09-22 14:51:21 +02:00
										 |  |  | 	ret, err := self.ExecuteObject(&Object{ | 
					
						
							|  |  |  | 		self.World().safeGet(ethutil.Hex2Bytes(addr))}, | 
					
						
							|  |  |  | 		ethutil.Hex2Bytes(data), | 
					
						
							|  |  |  | 		ethutil.NewValue(value), | 
					
						
							|  |  |  | 		ethutil.NewValue(gas), | 
					
						
							|  |  |  | 		ethutil.NewValue(price), | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ethutil.Bytes2Hex(ret), err | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | type KeyVal struct { | 
					
						
							|  |  |  | 	Key   string `json:"key"` | 
					
						
							|  |  |  | 	Value string `json:"value"` | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) EachStorage(addr string) string { | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	var values []KeyVal | 
					
						
							|  |  |  | 	object := self.World().SafeGet(ethutil.Hex2Bytes(addr)) | 
					
						
							|  |  |  | 	object.EachStorage(func(name string, value *ethutil.Value) { | 
					
						
							|  |  |  | 		value.Decode() | 
					
						
							|  |  |  | 		values = append(values, KeyVal{ethutil.Bytes2Hex([]byte(name)), ethutil.Bytes2Hex(value.Bytes())}) | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	valuesJson, err := json.Marshal(values) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return "" | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return string(valuesJson) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) ToAscii(str string) string { | 
					
						
							| 
									
										
										
										
											2014-08-20 13:05:26 +02:00
										 |  |  | 	padded := ethutil.RightPadBytes([]byte(str), 32) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return "0x" + ethutil.Bytes2Hex(padded) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) FromAscii(str string) string { | 
					
						
							| 
									
										
										
										
											2014-08-20 13:05:26 +02:00
										 |  |  | 	if ethutil.IsHex(str) { | 
					
						
							|  |  |  | 		str = str[2:] | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return string(bytes.Trim(ethutil.Hex2Bytes(str), "\x00")) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) FromNumber(str string) string { | 
					
						
							| 
									
										
										
										
											2014-08-20 13:05:26 +02:00
										 |  |  | 	if ethutil.IsHex(str) { | 
					
						
							|  |  |  | 		str = str[2:] | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ethutil.BigD(ethutil.Hex2Bytes(str)).String() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | func (self *JSXEth) Transact(key, toStr, valueStr, gasStr, gasPriceStr, codeStr string) (string, error) { | 
					
						
							|  |  |  | 	var ( | 
					
						
							|  |  |  | 		to       []byte | 
					
						
							|  |  |  | 		value    = ethutil.NewValue(valueStr) | 
					
						
							|  |  |  | 		gas      = ethutil.NewValue(gasStr) | 
					
						
							|  |  |  | 		gasPrice = ethutil.NewValue(gasPriceStr) | 
					
						
							|  |  |  | 		data     []byte | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ethutil.IsHex(codeStr) { | 
					
						
							|  |  |  | 		data = ethutil.Hex2Bytes(codeStr[2:]) | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | 		data = ethutil.Hex2Bytes(codeStr) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if ethutil.IsHex(toStr) { | 
					
						
							|  |  |  | 		to = ethutil.Hex2Bytes(toStr[2:]) | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		to = ethutil.Hex2Bytes(toStr) | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 12:37:43 +01:00
										 |  |  | 	var keyPair *crypto.KeyPair | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	var err error | 
					
						
							|  |  |  | 	if ethutil.IsHex(key) { | 
					
						
							| 
									
										
										
										
											2014-10-31 12:37:43 +01:00
										 |  |  | 		keyPair, err = crypto.NewKeyPairFromSec([]byte(ethutil.Hex2Bytes(key[2:]))) | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2014-10-31 12:37:43 +01:00
										 |  |  | 		keyPair, err = crypto.NewKeyPairFromSec([]byte(ethutil.Hex2Bytes(key))) | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | 		return "", err | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | 	tx, err := self.XEth.Transact(keyPair, to, value, gas, gasPrice, data) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return "", err | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-03 14:05:19 +01:00
										 |  |  | 	if types.IsContractAddr(to) { | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | 		return ethutil.Bytes2Hex(tx.CreationAddress(nil)), nil | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | 	return ethutil.Bytes2Hex(tx.Hash()), nil | 
					
						
							| 
									
										
										
										
											2014-08-15 13:05:13 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-17 12:41:52 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) PushTx(txStr string) (*JSReceipt, error) { | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 	tx := types.NewTransactionFromBytes(ethutil.Hex2Bytes(txStr)) | 
					
						
							| 
									
										
										
										
											2014-12-01 20:18:09 +01:00
										 |  |  | 	err := self.obj.TxPool().Add(tx) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-12-02 11:52:56 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-02 17:03:15 +02:00
										 |  |  | 	return NewJSReciept(tx.CreatesContract(), tx.CreationAddress(self.World().State()), tx.Hash(), tx.Sender()), nil | 
					
						
							| 
									
										
										
										
											2014-09-06 13:51:13 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:30:08 +01:00
										 |  |  | func (self *JSXEth) CompileMutan(code string) string { | 
					
						
							|  |  |  | 	data, err := self.XEth.CompileMutan(code) | 
					
						
							| 
									
										
										
										
											2014-08-17 12:41:52 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err.Error() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ethutil.Bytes2Hex(data) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-18 10:17:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-07 12:18:48 +01:00
										 |  |  | func (self *JSXEth) FindInConfig(str string) string { | 
					
						
							|  |  |  | 	return ethutil.Bytes2Hex(self.World().Config().Get(str).Address()) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | func ToJSMessages(messages state.Messages) *ethutil.List { | 
					
						
							| 
									
										
										
										
											2014-08-18 10:17:45 +02:00
										 |  |  | 	var msgs []JSMessage | 
					
						
							|  |  |  | 	for _, m := range messages { | 
					
						
							|  |  |  | 		msgs = append(msgs, NewJSMessage(m)) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-14 00:13:23 +02:00
										 |  |  | 	return ethutil.NewList(msgs) | 
					
						
							| 
									
										
										
										
											2014-08-20 09:59:09 +02:00
										 |  |  | } |