interface URLPeerId {
    publicKey: undefined;
    type: "url";
    equals(other?): boolean;
    toCID(): CID<Uint8Array, 2336, 0, 1>;
    toMultihash(): MultihashDigest<0>;
    toString(): string;
}

Properties

publicKey: undefined

This will always be undefined as URL Peers do not have public keys

type: "url"

Methods