All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liewhite.ethers.account.Account.scala Maven / Gradle / Ivy

There is a newer version: 4.2.3
Show newest version
package liewhite.ethers.account

import org.web3j.crypto.Bip32ECKeyPair
import org.web3j.crypto.Keys
import liewhite.ethers.types.Address

class Account(keypair: Bip32ECKeyPair) {

    def address: Address = {
        Address.fromHex(Keys.getAddress(keypair))
    }
    def privateKey: BigInt = {
        keypair.getPrivateKey()
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy