From 926b38f061ed17b71c5158fb20a21b0e39e57cb7 Mon Sep 17 00:00:00 2001 From: Izel Nakri Date: Fri, 1 Sep 2017 17:59:38 +0200 Subject: [PATCH] debugging transaction signing --- README.md | 4 +++- lib/eth/transaction.ex | 31 ++++++++++++++++--------------- test/eth/transaction_test.exs | 3 +-- 3 files changed, 20 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 88ab61a..0f41cab 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Eth +Transaction signing not working perfectly yet. + + **TODO: Add description** ## Installation @@ -18,4 +21,3 @@ end Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc) and published on [HexDocs](https://hexdocs.pm). Once published, the docs can be found at [https://hexdocs.pm/eth](https://hexdocs.pm/eth). - diff --git a/lib/eth/transaction.ex b/lib/eth/transaction.ex index 1aa34ad..fcae3ad 100644 --- a/lib/eth/transaction.ex +++ b/lib/eth/transaction.ex @@ -8,16 +8,19 @@ defmodule ETH.Transaction do def set(params = [from: from, to: to, value: value]) do gas_price = Keyword.get(params, :gas_price, ETH.Query.gas_price()) data = Keyword.get(params, :data, "") - nonce = Keyword.get(params, :nonce, ETH.Query.transaction_count(from)) + nonce = Keyword.get(params, :nonce, ETH.Query.get_transaction_count(from)) chain_id = Keyword.get(params, :chain_id, 3) gas_limit = Keyword.get(params, :gas_limit, ETH.Query.estimate_gas(%{ to: to, value: value, data: data, nonce: nonce, chain_id: chain_id })) - %{ - from: from, to: to, value: value, gas_price: gas_price, gas_limit: gas_limit, - data: data, nonce: nonce, chain_id: chain_id - } + [ + to: to, value: to_hex(value), data: to_hex(data), gas_price: to_hex(gas_price), + gas_limit: to_hex(gas_limit), nonce: nonce + ] |> Enum.map(fn(x) -> + {key, value} = x + {key, Base.encode16(value, case: :lower)} + end) |> Enum.into(%{chain_id: chain_id}) end def sign(transaction = %{ @@ -32,33 +35,31 @@ defmodule ETH.Transaction do sign_transaction(transaction, decoded_private_key) end - def send(signature) do # TODO: make it strict - Ethereumex.HttpClient.eth_send_raw_transaction([signature]) - end + def send(signature), do: Ethereumex.HttpClient.eth_send_raw_transaction([signature]) - def send_transaction(params = [from: from, to: to, value: value], private_key) do + def send_transaction(params = [from: _from, to: _to, value: _value], private_key) do set(params) |> sign(private_key) |> send end - def send_transaction(params = %{from: from, to: to, value: value}, private_key) do + def send_transaction(params = %{from: _from, to: _to, value: _value}, private_key) do Map.to_list(params) |> set |> sign(private_key) |> send end + # NOTE: if transaction is decoded no need to encode + def hash_transaction(transaction = %{ to: _to, value: _value, data: _data, gas_price: _gas_price, gas_limit: _gas_limit, - nonce: _nonce, chain_id: _chain_id - }) do - # NOTE: if transaction is decoded no need to encode - # EIP155 spec: + nonce: _nonce, chain_id: chain_id + }) do # EIP155 spec: # when computing the hash of a transaction for purposes of signing or recovering, # instead of hashing only the first six elements (ie. nonce, gasprice, startgas, to, value, data), # hash nine elements, with v replaced by CHAIN_ID, r = 0 and s = 0 transaction - |> Map.merge(%{v: encode16(<>), r: <<>>, s: <<>>}) + |> Map.merge(%{v: encode16(<>), r: <<>>, s: <<>>}) |> to_list |> Enum.map(fn(x) -> Base.decode16!(x, case: :lower) end) |> hash diff --git a/test/eth/transaction_test.exs b/test/eth/transaction_test.exs index 899efc6..363c77d 100644 --- a/test/eth/transaction_test.exs +++ b/test/eth/transaction_test.exs @@ -47,8 +47,7 @@ defmodule ETH.TransactionTest do test "sign/2 works" do signature = ETH.Transaction.sign(@first_example_transaction, @first_example_wallet.private_key) - |> Base.encode16(case: :lower) - + |> Base.encode16(case: :lower) assert signature == "f889808609184e72a00082271094000000000000000000000000000000000000000080a47f746573743200000000000000000000000000000000000000000000000000000060005729a0f2d54d3399c9bcd3ac3482a5ffaeddfe68e9a805375f626b4f2f8cf530c2d95aa05b3bb54e6e8db52083a9b674e578c843a87c292f0383ddba168573808d36dc8e" end end