• Resolves a private key into its corresponding public key, JWK, and address.

    Parameters

    • privateKey: string

      The private key to resolve.

    Returns {
        address: string;
        jwk: {
            crv: string;
            d: string;
            kty: string;
            x: string;
            y: string;
        };
        privateKey: string;
        publicKey: string;
    }

    An object containing the resolved private key, public key, JWK, and address.

    • address: string
    • jwk: {
          crv: string;
          d: string;
          kty: string;
          x: string;
          y: string;
      }
      • crv: string
      • d: string
      • kty: string
      • x: string
      • y: string
    • privateKey: string
    • publicKey: string

Generated using TypeDoc