1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
// This file is part of Frontier.
//
// Copyright (c) 2020 Parity Technologies (UK) Ltd.
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use ethereum::TransactionV2 as EthereumTransaction;
use ethereum_types::{H160, H256};
use jsonrpsee::core::Error;
// Substrate
use sp_core::hashing::keccak_256;
// Frontier
use fc_rpc_core::types::TransactionMessage;
use crate::internal_err;
/// A generic Ethereum signer.
pub trait EthSigner: Send + Sync {
/// Available accounts from this signer.
fn accounts(&self) -> Vec<H160>;
/// Sign a transaction message using the given account in message.
fn sign(
&self,
message: TransactionMessage,
address: &H160,
) -> Result<EthereumTransaction, Error>;
}
pub struct EthDevSigner {
keys: Vec<libsecp256k1::SecretKey>,
}
impl EthDevSigner {
pub fn new() -> Self {
Self {
keys: vec![libsecp256k1::SecretKey::parse(&[
0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11,
0x11, 0x11, 0x11, 0x11,
])
.expect("Test key is valid; qed")],
}
}
}
fn secret_key_address(secret: &libsecp256k1::SecretKey) -> H160 {
let public = libsecp256k1::PublicKey::from_secret_key(secret);
public_key_address(&public)
}
fn public_key_address(public: &libsecp256k1::PublicKey) -> H160 {
let mut res = [0u8; 64];
res.copy_from_slice(&public.serialize()[1..65]);
H160::from(H256::from(keccak_256(&res)))
}
impl EthSigner for EthDevSigner {
fn accounts(&self) -> Vec<H160> {
self.keys.iter().map(secret_key_address).collect()
}
fn sign(
&self,
message: TransactionMessage,
address: &H160,
) -> Result<EthereumTransaction, Error> {
let mut transaction = None;
for secret in &self.keys {
let key_address = secret_key_address(secret);
if &key_address == address {
match message {
TransactionMessage::Legacy(m) => {
let signing_message = libsecp256k1::Message::parse_slice(&m.hash()[..])
.map_err(|_| internal_err("invalid signing message"))?;
let (signature, recid) = libsecp256k1::sign(&signing_message, secret);
let v = match m.chain_id {
None => 27 + recid.serialize() as u64,
Some(chain_id) => 2 * chain_id + 35 + recid.serialize() as u64,
};
let rs = signature.serialize();
let r = H256::from_slice(&rs[0..32]);
let s = H256::from_slice(&rs[32..64]);
transaction =
Some(EthereumTransaction::Legacy(ethereum::LegacyTransaction {
nonce: m.nonce,
gas_price: m.gas_price,
gas_limit: m.gas_limit,
action: m.action,
value: m.value,
input: m.input,
signature: ethereum::TransactionSignature::new(v, r, s)
.ok_or_else(|| {
internal_err("signer generated invalid signature")
})?,
}));
},
TransactionMessage::EIP2930(m) => {
let signing_message = libsecp256k1::Message::parse_slice(&m.hash()[..])
.map_err(|_| internal_err("invalid signing message"))?;
let (signature, recid) = libsecp256k1::sign(&signing_message, secret);
let rs = signature.serialize();
let r = H256::from_slice(&rs[0..32]);
let s = H256::from_slice(&rs[32..64]);
transaction =
Some(EthereumTransaction::EIP2930(ethereum::EIP2930Transaction {
chain_id: m.chain_id,
nonce: m.nonce,
gas_price: m.gas_price,
gas_limit: m.gas_limit,
action: m.action,
value: m.value,
input: m.input.clone(),
access_list: m.access_list,
odd_y_parity: recid.serialize() != 0,
r,
s,
}));
},
TransactionMessage::EIP1559(m) => {
let signing_message = libsecp256k1::Message::parse_slice(&m.hash()[..])
.map_err(|_| internal_err("invalid signing message"))?;
let (signature, recid) = libsecp256k1::sign(&signing_message, secret);
let rs = signature.serialize();
let r = H256::from_slice(&rs[0..32]);
let s = H256::from_slice(&rs[32..64]);
transaction =
Some(EthereumTransaction::EIP1559(ethereum::EIP1559Transaction {
chain_id: m.chain_id,
nonce: m.nonce,
max_priority_fee_per_gas: m.max_priority_fee_per_gas,
max_fee_per_gas: m.max_fee_per_gas,
gas_limit: m.gas_limit,
action: m.action,
value: m.value,
input: m.input.clone(),
access_list: m.access_list,
odd_y_parity: recid.serialize() != 0,
r,
s,
}));
},
}
break
}
}
transaction.ok_or_else(|| internal_err("signer not available"))
}
}