Documentation
    Preparing search index...

    Class EnokiKeypair

    Hierarchy

    • Signer
      • EnokiKeypair
    Index

    Constructors

    • Parameters

      • input: {
            address: string;
            ephemeralKeypair: Signer;
            maxEpoch: number;
            proof: {
                addressSeed: string;
                headerBase64: string;
                issBase64Details: { indexMod4: number; value: string };
                proofPoints: {
                    a: Iterable<string, any, any> & { length: number };
                    b: Iterable<Iterable<string, any, any> & { length: number }, any, any> & {
                        length: number;
                    };
                    c: Iterable<string, any, any> & { length: number };
                };
            };
        }

      Returns EnokiKeypair

    Methods

    • Get the key scheme of the keypair: Secp256k1 or ED25519

      Returns SignatureScheme

    • The public key for this keypair

      Returns EnokiPublicKey

    • Parameters

      • data: Uint8Array

      Returns Promise<Uint8Array<ArrayBuffer>>

    • Parameters

      • __namedParameters: SignAndExecuteOptions

      Returns Promise<TransactionResponse>

    • Signs provided personal message by calling signWithIntent() with a PersonalMessage provided as intent scope

      Parameters

      • bytes: Uint8Array

      Returns Promise<SignatureWithBytes>

    • Signs provided transaction by calling signWithIntent() with a TransactionData provided as intent scope

      Parameters

      • bytes: Uint8Array

      Returns Promise<SignatureWithBytes>

    • Sign messages with a specific intent. By combining the message bytes with the intent before hashing and signing, it ensures that a signed message is tied to a specific purpose and domain separator is provided

      Parameters

      • bytes: Uint8Array
      • intent: IntentScope

      Returns Promise<SignatureWithBytes>

    • Returns string