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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
// This file is part of Astar.
// Copyright (C) Stake Technologies Pte.Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later
// Astar 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.
// Astar 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 Astar. If not, see <http://www.gnu.org/licenses/>.
//! # Pallet Unified Account
//!
//! A simple module for managing mappings (both ways) between different
//! address schemes, inspired from Acala's evm-accounts pallet
//! https://github.com/AcalaNetwork/Acala/tree/master/modules/evm-accounts
//!
//! - [`Config`]
//! - [`Call`]
//!
//! ## Overview
//!
//! The Unified Accounts module provide functionality for native account holders to
//! connect their evm address to have a unified experience across the different VMs.
//! - Connect evm address you control
//! - Connect default evm address
//!
//! ## Interface
//!
//! * `claim_evm_address`: Creates the double mappings for the provided evm address with caller
//! account id given that no prior mapping exists for both and signature provided is valid.
//! * `claim_default_evm_address`: Creates the double mapping with default evm address given that
//! no prior mapping exists.
//!
//! ## Storage Fee
//! User is also charged a storage fee [`AccountMappingStorageFee`](`crate::Config::AccountMappingStorageFee`)
//! before mappings are created to prevent storage abuse.
//!
//! WARNINGS:
//! * This pallet only handles transfer of native balance only, for the rest of native assets
//! hold by evm address like XC20, DAppStaking unclaimed rewards, etc should be transferred
//! manually beforehand by user himself otherwise FUNDS WILL BE LOST FOREVER.
//! * Once mapping is created it cannot be changed.
//!
//! ## Traits
//!
//! * `UnifiedAddressMapper`: Interface to access pallet's mappings with defaults
//!
//! ## Implementations
//!
//! * [`StaticLookup`](sp_runtime::traits::StaticLookup): Lookup implementations for accepting H160
//! * [`AddressMapping`](pallet_evm::AddressMapping): Wrapper over `UnifiedAddressMapper` for evm address mapping
//! to account id.
//! * `KillAccountMapping`: [`OnKilledAccount`](frame_support::traits::OnKilledAccount) implementation to remove
//! the mappings from storage after account is reaped.
#![cfg_attr(not(feature = "std"), no_std)]
use astar_primitives::{
evm::{EvmAddress, UnifiedAddressMapper},
Balance,
};
use frame_support::{
pallet_prelude::*,
traits::{
fungible::{Inspect as FungibleInspect, Mutate as FungibleMutate},
tokens::{Fortitude::*, Precision::*, Preservation::*},
IsType, OnKilledAccount,
},
};
use frame_system::{ensure_signed, pallet_prelude::*};
use pallet_evm::AddressMapping;
use precompile_utils::keccak256;
use sp_core::{H160, H256, U256};
use sp_io::hashing::keccak_256;
use sp_runtime::{
traits::{LookupError, StaticLookup, Zero},
MultiAddress,
};
use sp_std::marker::PhantomData;
pub use pallet::*;
pub mod weights;
pub use weights::WeightInfo;
#[cfg(feature = "runtime-benchmarks")]
mod benchmarking;
mod mock;
mod tests;
/// ECDSA Signature type, with last bit for recovering address
type EvmSignature = [u8; 65];
#[frame_support::pallet]
pub mod pallet {
use super::*;
#[pallet::pallet]
pub struct Pallet<T>(PhantomData<T>);
#[pallet::config]
pub trait Config: frame_system::Config {
/// The overarching event type
type RuntimeEvent: From<Event<Self>> + IsType<<Self as frame_system::Config>::RuntimeEvent>;
/// The Currency for managing evm address assets
type Currency: FungibleMutate<Self::AccountId, Balance = Balance>;
/// Default address conversion
type DefaultMappings: UnifiedAddressMapper<Self::AccountId>;
/// EVM chain id
#[pallet::constant]
type ChainId: Get<u64>;
/// The amount of currency needed for mappings to be added.
/// Two storage items with values sizes, sizeof(AccountId) and sizeof(H160)
/// respectively
#[pallet::constant]
type AccountMappingStorageFee: Get<Balance>;
/// Weight information for the extrinsics in this module
type WeightInfo: WeightInfo;
}
#[pallet::error]
pub enum Error<T> {
/// AccountId or EvmAddress already mapped
AlreadyMapped,
/// The signature is malformed
UnexpectedSignatureFormat,
/// The signature verification failed due to mismatch evm address
InvalidSignature,
/// Funds unavailable to claim account
FundsUnavailable,
}
#[pallet::event]
#[pallet::generate_deposit(pub(super) fn deposit_event)]
pub enum Event<T: Config> {
/// Evm Address claimed.
/// Double Mapping b/w native and evm address created
AccountClaimed {
account_id: T::AccountId,
evm_address: EvmAddress,
},
}
/// Native accounts for evm address
/// EvmToNative: EvmAddress => Option<AccountId>
#[pallet::storage]
pub type EvmToNative<T: Config> =
StorageMap<_, Blake2_128Concat, EvmAddress, T::AccountId, OptionQuery>;
/// Evm addresses for native accounts
/// NativeToEvm: AccountId => Option<EvmAddress>
#[pallet::storage]
pub type NativeToEvm<T: Config> =
StorageMap<_, Blake2_128Concat, T::AccountId, EvmAddress, OptionQuery>;
#[pallet::call]
impl<T: Config> Pallet<T> {
/// Claim account mapping between Substrate account and Evm address.
/// Ensure no prior mapping exists for evm address.
///
/// - `evm_address`: The evm address to bind to the caller's account
/// - `signature`: A signature generated by the address to prove ownership
///
/// WARNING:
/// - This extrinsic only handles transfer of native balance, if your EVM
/// address contains any other native assets like XC20, DAppStaking unclaimed rewards,
/// etc you need to transfer them before hand, otherwise FUNDS WILL BE LOST FOREVER.
/// - Once connected user cannot change their mapping EVER.
#[pallet::call_index(0)]
#[pallet::weight(T::WeightInfo::claim_evm_address())]
pub fn claim_evm_address(
origin: OriginFor<T>,
evm_address: EvmAddress,
signature: EvmSignature,
) -> DispatchResult {
let who = ensure_signed(origin)?;
// make sure no prior mapping exists
ensure!(
!NativeToEvm::<T>::contains_key(&who),
Error::<T>::AlreadyMapped
);
ensure!(
!EvmToNative::<T>::contains_key(evm_address),
Error::<T>::AlreadyMapped
);
// recover evm address from signature
let address = Self::verify_signature(&who, &signature)
.ok_or(Error::<T>::UnexpectedSignatureFormat)?;
ensure!(evm_address == address, Error::<T>::InvalidSignature);
// charge the storage fee
Self::charge_storage_fee(&who)?;
// Check if the default account id already exists for this evm address
let default_account_id = T::DefaultMappings::to_default_account_id(&evm_address);
if frame_system::Pallet::<T>::account_exists(&default_account_id) {
// Transfer all the free native balance from old account id to the newly
// since this `default_account_id` will no longer be connected to evm address
// and users cannot access it.
// For the reset of the assets types (like XC20, etc) that should be handled by UI.
T::Currency::transfer(
&default_account_id,
&who,
T::Currency::reducible_balance(&default_account_id, Expendable, Polite),
Expendable,
)?;
}
// create double mappings for the pair
EvmToNative::<T>::insert(&evm_address, &who);
NativeToEvm::<T>::insert(&who, &evm_address);
Self::deposit_event(Event::AccountClaimed {
account_id: who,
evm_address,
});
Ok(())
}
/// Claim default evm address for given account id
/// Ensure no prior mapping exists for the account
///
/// WARNINGS: Once connected user cannot change their mapping EVER.
#[pallet::call_index(1)]
#[pallet::weight(T::WeightInfo::claim_default_evm_address())]
pub fn claim_default_evm_address(origin: OriginFor<T>) -> DispatchResult {
let who = ensure_signed(origin)?;
// claim default evm address
let _ = Self::do_claim_default_evm_address(who)?;
Ok(())
}
}
}
impl<T: Config> Pallet<T> {
/// Claim the default evm address
fn do_claim_default_evm_address(account_id: T::AccountId) -> Result<EvmAddress, DispatchError> {
ensure!(
!NativeToEvm::<T>::contains_key(&account_id),
Error::<T>::AlreadyMapped
);
// get the default evm address
let evm_address = T::DefaultMappings::to_default_h160(&account_id);
// make sure default address is not already mapped, this should not
// happen but for sanity check.
ensure!(
!EvmToNative::<T>::contains_key(&evm_address),
Error::<T>::AlreadyMapped
);
Self::charge_storage_fee(&account_id)?;
// create double mappings for the pair with default evm address
EvmToNative::<T>::insert(&evm_address, &account_id);
NativeToEvm::<T>::insert(&account_id, &evm_address);
Self::deposit_event(Event::AccountClaimed {
account_id,
evm_address,
});
Ok(evm_address)
}
/// Charge the (exact) storage fee (politely) from the user and burn it
/// while preserving the account from being reaped.
fn charge_storage_fee(who: &T::AccountId) -> Result<Balance, DispatchError> {
let balance = T::Currency::reducible_balance(who, Preserve, Polite);
let fee = T::AccountMappingStorageFee::get();
ensure!(balance >= fee, Error::<T>::FundsUnavailable);
T::Currency::burn_from(
who,
T::AccountMappingStorageFee::get(),
Preserve,
Exact,
Polite,
)
}
}
/// EIP-712 compatible signature scheme for verifying ownership of EVM Address
/// https://eips.ethereum.org/EIPS/eip-712
///
/// Raw Data = Domain Separator + Type Hash + keccak256(AccountId)
impl<T: Config> Pallet<T> {
pub fn build_signing_payload(who: &T::AccountId) -> [u8; 32] {
let domain_separator = Self::build_domain_separator();
let args_hash = Self::build_args_hash(who);
let mut payload = b"\x19\x01".to_vec();
payload.extend_from_slice(&domain_separator);
payload.extend_from_slice(&args_hash);
keccak_256(&payload)
}
pub fn verify_signature(who: &T::AccountId, sig: &EvmSignature) -> Option<EvmAddress> {
let payload_hash = Self::build_signing_payload(who);
sp_io::crypto::secp256k1_ecdsa_recover(sig, &payload_hash)
.map(|pubkey| H160::from(H256::from_slice(&keccak_256(&pubkey))))
.ok()
}
fn build_domain_separator() -> [u8; 32] {
let mut domain =
keccak256!("EIP712Domain(string name,string version,uint256 chainId,bytes32 salt)")
.to_vec();
domain.extend_from_slice(&keccak256!("Astar EVM Claim")); // name
domain.extend_from_slice(&keccak256!("1")); // version
domain.extend_from_slice(&(<[u8; 32]>::from(U256::from(T::ChainId::get())))); // chain id
domain.extend_from_slice(
frame_system::Pallet::<T>::block_hash(BlockNumberFor::<T>::zero()).as_ref(),
); // genesis block hash
keccak_256(domain.as_slice())
}
fn build_args_hash(account: &T::AccountId) -> [u8; 32] {
let mut args_hash = keccak256!("Claim(bytes substrateAddress)").to_vec();
args_hash.extend_from_slice(&keccak_256(&account.encode()));
keccak_256(args_hash.as_slice())
}
}
#[cfg(any(feature = "std", feature = "runtime-benchmarks"))]
impl<T: Config> Pallet<T> {
/// Sign the given prehash with provided eth private key
pub fn eth_sign_prehash(prehash: &[u8; 32], secret: &libsecp256k1::SecretKey) -> [u8; 65] {
let (sig, recovery_id) = libsecp256k1::sign(&libsecp256k1::Message::parse(prehash), secret);
let mut r = [0u8; 65];
r[0..64].copy_from_slice(&sig.serialize()[..]);
r[64] = recovery_id.serialize();
r
}
/// Get the eth address for given eth private key
pub fn eth_address(secret: &libsecp256k1::SecretKey) -> EvmAddress {
EvmAddress::from_slice(
&sp_io::hashing::keccak_256(
&libsecp256k1::PublicKey::from_secret_key(secret).serialize()[1..65],
)[12..],
)
}
}
/// UnifiedAddressMapper implementation using pallet's mapping
/// and default address scheme from pallet's config
impl<T: Config> UnifiedAddressMapper<T::AccountId> for Pallet<T> {
fn to_account_id(evm_address: &EvmAddress) -> Option<T::AccountId> {
EvmToNative::<T>::get(evm_address)
}
fn to_default_account_id(evm_address: &EvmAddress) -> T::AccountId {
T::DefaultMappings::to_default_account_id(evm_address)
}
fn to_h160(account_id: &T::AccountId) -> Option<EvmAddress> {
NativeToEvm::<T>::get(account_id)
}
fn to_default_h160(account_id: &T::AccountId) -> EvmAddress {
T::DefaultMappings::to_default_h160(account_id)
}
}
/// AddressMapping wrapper implementation
impl<T: Config> AddressMapping<T::AccountId> for Pallet<T> {
fn into_account_id(evm_address: H160) -> T::AccountId {
<Self as UnifiedAddressMapper<T::AccountId>>::to_account_id_or_default(&evm_address)
.into_address()
}
}
/// OnKilledAccount hooks implementation for removing storage mapping
/// for killed accounts
pub struct KillAccountMapping<T>(PhantomData<T>);
impl<T: Config> OnKilledAccount<T::AccountId> for KillAccountMapping<T> {
fn on_killed_account(who: &T::AccountId) {
// remove mappings of account reaped
if let Some(evm_addr) = NativeToEvm::<T>::take(who) {
EvmToNative::<T>::remove(evm_addr);
NativeToEvm::<T>::remove(who);
}
}
}
/// A lookup implementation returning the `AccountId` from `MultiAddress::Address20` (EVM Address).
impl<T: Config> StaticLookup for Pallet<T> {
type Source = MultiAddress<T::AccountId, ()>;
type Target = T::AccountId;
fn lookup(a: Self::Source) -> Result<Self::Target, LookupError> {
match a {
MultiAddress::Address20(i) => Ok(
<Self as UnifiedAddressMapper<T::AccountId>>::to_account_id_or_default(
&EvmAddress::from_slice(&i),
)
.into_address(),
),
_ => Err(LookupError),
}
}
fn unlookup(a: Self::Target) -> Self::Source {
MultiAddress::Id(a)
}
}