| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | package ethchain | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2014-06-12 11:19:32 +02:00
										 |  |  | 	"bytes" | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2014-08-09 18:09:55 +01:00
										 |  |  | 	"math/big" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 18:30:05 +01:00
										 |  |  | 	"github.com/ethereum/eth-go/ethcrypto" | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	"github.com/ethereum/eth-go/ethutil" | 
					
						
							|  |  |  | 	"github.com/obscuren/secp256k1-go" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 11:35:17 +01:00
										 |  |  | var ContractAddr = []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-19 13:42:47 +02:00
										 |  |  | func IsContractAddr(addr []byte) bool { | 
					
						
							| 
									
										
										
										
											2014-09-08 00:48:59 +02:00
										 |  |  | 	return len(addr) == 0 | 
					
						
							|  |  |  | 	//return bytes.Compare(addr, ContractAddr) == 0 | 
					
						
							| 
									
										
										
										
											2014-06-19 13:42:47 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | type Transaction struct { | 
					
						
							|  |  |  | 	Nonce     uint64 | 
					
						
							|  |  |  | 	Recipient []byte | 
					
						
							|  |  |  | 	Value     *big.Int | 
					
						
							| 
									
										
										
										
											2014-03-21 00:04:31 +01:00
										 |  |  | 	Gas       *big.Int | 
					
						
							| 
									
										
										
										
											2014-04-18 13:41:07 +02:00
										 |  |  | 	GasPrice  *big.Int | 
					
						
							| 
									
										
										
										
											2014-04-09 12:28:16 -04:00
										 |  |  | 	Data      []byte | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	v         byte | 
					
						
							|  |  |  | 	r, s      []byte | 
					
						
							| 
									
										
										
										
											2014-03-27 15:42:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Indicates whether this tx is a contract creation transaction | 
					
						
							|  |  |  | 	contractCreation bool | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-22 18:24:04 +02:00
										 |  |  | func NewContractCreationTx(value, gas, gasPrice *big.Int, script []byte) *Transaction { | 
					
						
							| 
									
										
										
										
											2014-09-08 00:48:59 +02:00
										 |  |  | 	return &Transaction{Recipient: nil, Value: value, Gas: gas, GasPrice: gasPrice, Data: script, contractCreation: true} | 
					
						
							| 
									
										
										
										
											2014-03-21 00:04:31 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-23 11:51:04 +02:00
										 |  |  | func NewTransactionMessage(to []byte, value, gas, gasPrice *big.Int, data []byte) *Transaction { | 
					
						
							|  |  |  | 	return &Transaction{Recipient: to, Value: value, GasPrice: gasPrice, Gas: gas, Data: data} | 
					
						
							| 
									
										
										
										
											2014-03-21 00:04:31 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-25 11:22:18 +01:00
										 |  |  | func NewTransactionFromBytes(data []byte) *Transaction { | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	tx := &Transaction{} | 
					
						
							|  |  |  | 	tx.RlpDecode(data) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return tx | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func NewTransactionFromValue(val *ethutil.Value) *Transaction { | 
					
						
							|  |  |  | 	tx := &Transaction{} | 
					
						
							|  |  |  | 	tx.RlpValueDecode(val) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return tx | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | func (self *Transaction) GasValue() *big.Int { | 
					
						
							|  |  |  | 	return new(big.Int).Mul(self.Gas, self.GasPrice) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *Transaction) TotalValue() *big.Int { | 
					
						
							|  |  |  | 	v := self.GasValue() | 
					
						
							|  |  |  | 	return v.Add(v, self.Value) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | func (tx *Transaction) Hash() []byte { | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 	data := []interface{}{tx.Nonce, tx.GasPrice, tx.Gas, tx.Recipient, tx.Value, tx.Data} | 
					
						
							| 
									
										
										
										
											2014-04-23 11:51:04 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 18:30:05 +01:00
										 |  |  | 	return ethcrypto.Sha3Bin(ethutil.NewValue(data).Encode()) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-25 14:13:54 +01:00
										 |  |  | func (tx *Transaction) CreatesContract() bool { | 
					
						
							| 
									
										
										
										
											2014-03-27 23:17:14 +01:00
										 |  |  | 	return tx.contractCreation | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-17 18:05:46 +02:00
										 |  |  | /* Deprecated */ | 
					
						
							| 
									
										
										
										
											2014-05-25 14:13:54 +01:00
										 |  |  | func (tx *Transaction) IsContract() bool { | 
					
						
							|  |  |  | 	return tx.CreatesContract() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-02 14:08:54 +02:00
										 |  |  | func (tx *Transaction) CreationAddress() []byte { | 
					
						
							| 
									
										
										
										
											2014-06-29 18:30:05 +01:00
										 |  |  | 	return ethcrypto.Sha3Bin(ethutil.NewValue([]interface{}{tx.Sender(), tx.Nonce}).Encode())[12:] | 
					
						
							| 
									
										
										
										
											2014-05-02 14:08:54 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | func (tx *Transaction) Signature(key []byte) []byte { | 
					
						
							|  |  |  | 	hash := tx.Hash() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sig, _ := secp256k1.Sign(hash, key) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return sig | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) PublicKey() []byte { | 
					
						
							|  |  |  | 	hash := tx.Hash() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 00:05:48 +02:00
										 |  |  | 	// TODO | 
					
						
							|  |  |  | 	r := ethutil.LeftPadBytes(tx.r, 32) | 
					
						
							|  |  |  | 	s := ethutil.LeftPadBytes(tx.s, 32) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:51 +02:00
										 |  |  | 	sig := append(r, s...) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | 	sig = append(sig, tx.v-27) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	pubkey, _ := secp256k1.RecoverPubkey(hash, sig) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return pubkey | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) Sender() []byte { | 
					
						
							|  |  |  | 	pubkey := tx.PublicKey() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Validate the returned key. | 
					
						
							|  |  |  | 	// Return nil if public key isn't in full format | 
					
						
							|  |  |  | 	if pubkey[0] != 4 { | 
					
						
							|  |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 18:30:05 +01:00
										 |  |  | 	return ethcrypto.Sha3Bin(pubkey[1:])[12:] | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) Sign(privk []byte) error { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sig := tx.Signature(privk) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tx.r = sig[:32] | 
					
						
							|  |  |  | 	tx.s = sig[32:64] | 
					
						
							|  |  |  | 	tx.v = sig[64] + 27 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) RlpData() interface{} { | 
					
						
							| 
									
										
										
										
											2014-05-20 13:06:47 +02:00
										 |  |  | 	data := []interface{}{tx.Nonce, tx.GasPrice, tx.Gas, tx.Recipient, tx.Value, tx.Data} | 
					
						
							| 
									
										
										
										
											2014-03-27 19:49:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:51 +02:00
										 |  |  | 	// TODO Remove prefixing zero's | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-09 18:09:55 +01:00
										 |  |  | 	return append(data, tx.v, new(big.Int).SetBytes(tx.r).Bytes(), new(big.Int).SetBytes(tx.s).Bytes()) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) RlpValue() *ethutil.Value { | 
					
						
							|  |  |  | 	return ethutil.NewValue(tx.RlpData()) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) RlpEncode() []byte { | 
					
						
							|  |  |  | 	return tx.RlpValue().Encode() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) RlpDecode(data []byte) { | 
					
						
							|  |  |  | 	tx.RlpValueDecode(ethutil.NewValueFromBytes(data)) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) RlpValueDecode(decoder *ethutil.Value) { | 
					
						
							|  |  |  | 	tx.Nonce = decoder.Get(0).Uint() | 
					
						
							| 
									
										
										
										
											2014-05-20 13:06:47 +02:00
										 |  |  | 	tx.GasPrice = decoder.Get(1).BigInt() | 
					
						
							|  |  |  | 	tx.Gas = decoder.Get(2).BigInt() | 
					
						
							|  |  |  | 	tx.Recipient = decoder.Get(3).Bytes() | 
					
						
							|  |  |  | 	tx.Value = decoder.Get(4).BigInt() | 
					
						
							| 
									
										
										
										
											2014-04-09 12:28:16 -04:00
										 |  |  | 	tx.Data = decoder.Get(5).Bytes() | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 	tx.v = byte(decoder.Get(6).Uint()) | 
					
						
							| 
									
										
										
										
											2014-06-20 20:12:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:51 +02:00
										 |  |  | 	tx.r = decoder.Get(7).Bytes() | 
					
						
							|  |  |  | 	tx.s = decoder.Get(8).Bytes() | 
					
						
							| 
									
										
										
										
											2014-06-12 11:19:32 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-19 13:42:47 +02:00
										 |  |  | 	if IsContractAddr(tx.Recipient) { | 
					
						
							| 
									
										
										
										
											2014-05-25 14:13:54 +01:00
										 |  |  | 		tx.contractCreation = true | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (tx *Transaction) String() string { | 
					
						
							|  |  |  | 	return fmt.Sprintf(` | 
					
						
							|  |  |  | 	TX(%x) | 
					
						
							|  |  |  | 	Contract: %v | 
					
						
							|  |  |  | 	From:     %x | 
					
						
							| 
									
										
										
										
											2014-05-22 17:56:33 +02:00
										 |  |  | 	To:       %x | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 	Nonce:    %v | 
					
						
							|  |  |  | 	GasPrice: %v | 
					
						
							|  |  |  | 	Gas:      %v | 
					
						
							|  |  |  | 	Value:    %v | 
					
						
							|  |  |  | 	Data:     0x%x | 
					
						
							|  |  |  | 	V:        0x%x | 
					
						
							|  |  |  | 	R:        0x%x | 
					
						
							|  |  |  | 	S:        0x%x | 
					
						
							|  |  |  | 	`, | 
					
						
							|  |  |  | 		tx.Hash(), | 
					
						
							| 
									
										
										
										
											2014-05-25 14:13:54 +01:00
										 |  |  | 		len(tx.Recipient) == 0, | 
					
						
							| 
									
										
										
										
											2014-06-23 11:23:51 +02:00
										 |  |  | 		tx.Sender(), | 
					
						
							| 
									
										
										
										
											2014-05-22 17:56:33 +02:00
										 |  |  | 		tx.Recipient, | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 		tx.Nonce, | 
					
						
							|  |  |  | 		tx.GasPrice, | 
					
						
							|  |  |  | 		tx.Gas, | 
					
						
							|  |  |  | 		tx.Value, | 
					
						
							|  |  |  | 		tx.Data, | 
					
						
							|  |  |  | 		tx.v, | 
					
						
							|  |  |  | 		tx.r, | 
					
						
							|  |  |  | 		tx.s) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type Receipt struct { | 
					
						
							|  |  |  | 	Tx                *Transaction | 
					
						
							|  |  |  | 	PostState         []byte | 
					
						
							|  |  |  | 	CumulativeGasUsed *big.Int | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-13 12:45:11 +02:00
										 |  |  | type Receipts []*Receipt | 
					
						
							| 
									
										
										
										
											2014-05-22 17:35:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | func NewRecieptFromValue(val *ethutil.Value) *Receipt { | 
					
						
							|  |  |  | 	r := &Receipt{} | 
					
						
							|  |  |  | 	r.RlpValueDecode(val) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return r | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *Receipt) RlpValueDecode(decoder *ethutil.Value) { | 
					
						
							|  |  |  | 	self.Tx = NewTransactionFromValue(decoder.Get(0)) | 
					
						
							|  |  |  | 	self.PostState = decoder.Get(1).Bytes() | 
					
						
							|  |  |  | 	self.CumulativeGasUsed = decoder.Get(2).BigInt() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *Receipt) RlpData() interface{} { | 
					
						
							|  |  |  | 	return []interface{}{self.Tx.RlpData(), self.PostState, self.CumulativeGasUsed} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self *Receipt) String() string { | 
					
						
							|  |  |  | 	return fmt.Sprintf(` | 
					
						
							|  |  |  | 	R | 
					
						
							|  |  |  | 	Tx:[                 %v] | 
					
						
							|  |  |  | 	PostState:           0x%x | 
					
						
							|  |  |  | 	CumulativeGasUsed:   %v | 
					
						
							|  |  |  | 	`, | 
					
						
							|  |  |  | 		self.Tx, | 
					
						
							|  |  |  | 		self.PostState, | 
					
						
							|  |  |  | 		self.CumulativeGasUsed) | 
					
						
							| 
									
										
										
										
											2014-02-14 23:56:09 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-05-28 12:06:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-14 22:52:44 +02:00
										 |  |  | func (self *Receipt) Cmp(other *Receipt) bool { | 
					
						
							|  |  |  | 	if bytes.Compare(self.PostState, other.PostState) != 0 { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-28 12:06:09 +02:00
										 |  |  | // Transaction slice type for basic sorting | 
					
						
							|  |  |  | type Transactions []*Transaction | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (s Transactions) Len() int      { return len(s) } | 
					
						
							|  |  |  | func (s Transactions) Swap(i, j int) { s[i], s[j] = s[j], s[i] } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type TxByNonce struct{ Transactions } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (s TxByNonce) Less(i, j int) bool { | 
					
						
							|  |  |  | 	return s.Transactions[i].Nonce < s.Transactions[j].Nonce | 
					
						
							|  |  |  | } |