Commit fdba2053 authored by vicotor's avatar vicotor

update eth.proto

parent 4c299ab1
...@@ -40,9 +40,9 @@ message EthLegacyTx { ...@@ -40,9 +40,9 @@ message EthLegacyTx {
Address to = 4; Address to = 4;
BigInt value = 5; BigInt value = 5;
bytes data = 6; bytes data = 6;
BigInt V = 7; BigInt v = 7;
BigInt R = 8; BigInt r = 8;
BigInt S = 9; BigInt s = 9;
} }
message EthAccessListTx { message EthAccessListTx {
...@@ -54,9 +54,9 @@ message EthAccessListTx { ...@@ -54,9 +54,9 @@ message EthAccessListTx {
BigInt value = 6; BigInt value = 6;
bytes data = 7; bytes data = 7;
EthAccessList access_list = 8; EthAccessList access_list = 8;
BigInt V = 9; BigInt v = 9;
BigInt R = 10; BigInt r = 10;
BigInt S = 11; BigInt s = 11;
} }
message EthDynamicFeeTx { message EthDynamicFeeTx {
...@@ -69,9 +69,9 @@ message EthDynamicFeeTx { ...@@ -69,9 +69,9 @@ message EthDynamicFeeTx {
BigInt value = 7; BigInt value = 7;
bytes data = 8; bytes data = 8;
EthAccessList access_list = 9; EthAccessList access_list = 9;
BigInt V = 10; BigInt v = 10;
BigInt R = 11; BigInt r = 11;
BigInt S = 12; BigInt s = 12;
} }
message EthTransaction { message EthTransaction {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment