mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 13:48:09 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { u8aConcat } from '@pezkuwi/util';
|
||||
import { hasher } from '../secp256k1/hasher.js';
|
||||
import { encodeAddress } from './encode.js';
|
||||
/**
|
||||
* @name evmToAddress
|
||||
* @summary Converts an EVM address to its corresponding SS58 address.
|
||||
*/
|
||||
export function evmToAddress(evmAddress, ss58Format, hashType = 'blake2') {
|
||||
const message = u8aConcat('evm:', evmAddress);
|
||||
if (message.length !== 24) {
|
||||
throw new Error(`Converting ${evmAddress}: Invalid evm address length`);
|
||||
}
|
||||
return encodeAddress(hasher(hashType, message), ss58Format);
|
||||
}
|
||||
Reference in New Issue
Block a user