remove privateKeyToAddress util
This commit is contained in:
parent
26948d31d3
commit
1499d879c9
|
@ -1,10 +0,0 @@
|
|||
import { privateKeyToAddress } from './private-key-to-address'
|
||||
|
||||
describe('privateKeyToAddress', () => {
|
||||
it('should return public address', () => {
|
||||
const privateKey =
|
||||
'0x348ce564d427a3311b6536bbcff9390d69395b06ed6c486954e971d960fe8709'
|
||||
const address = privateKeyToAddress(privateKey)
|
||||
expect(address).toEqual('0xb8CE9ab6943e0eCED004cDe8e3bBed6568B2Fa01')
|
||||
})
|
||||
})
|
|
@ -1,13 +0,0 @@
|
|||
import { keccak256 } from 'ethereum-cryptography/keccak'
|
||||
import { getPublicKey } from 'ethereum-cryptography/secp256k1'
|
||||
import { bytesToHex } from 'ethereum-cryptography/utils'
|
||||
|
||||
export function privateKeyToAddress(privateKey: string): string {
|
||||
const publicKey = getPublicKey(privateKey)
|
||||
const publicKeyWithoutPrefix = publicKey.slice(1) // uncompressed public key has 04 prefix
|
||||
const hash = keccak256(publicKeyWithoutPrefix)
|
||||
const address = bytesToHex(hash.slice(12))
|
||||
|
||||
// TODO: add checksum
|
||||
return address
|
||||
}
|
Loading…
Reference in New Issue