Represents information about a delegated PKP (Programmable Key Pair). Includes the token ID, Ethereum address, and public key.

interface DelegatedPkpInfo {
    ethAddress: string;
    publicKey: string;
    tokenId: string;
}

Properties

ethAddress: string

The Ethereum address derived from the PKP's public key.

publicKey: string

The public key of the delegated PKP.

tokenId: string

The token ID of the delegated PKP.