Polkadot Apps
    Preparing search index...

    Interface DerivedAccount

    Derivation result for a Substrate/EVM account from seed material.

    interface DerivedAccount {
        h160Address: `0x${string}`;
        publicKey: Uint8Array;
        signer: PolkadotSigner;
        ss58Address: SS58String;
    }
    Index

    Properties

    h160Address: `0x${string}`

    H160 EVM address derived via keccak256(publicKey)

    publicKey: Uint8Array

    Public key (32 bytes). Sr25519 or Ed25519 depending on key type.

    signer: PolkadotSigner

    PolkadotSigner for signing extrinsics

    ss58Address: SS58String

    SS58 address (generic prefix 42 by default)