ISignatureUtils

Git Source

Author: Layr Labs, Inc.

Terms of Service: https://docs.eigenlayer.xyz/overview/terms-of-service

Structs

SignatureWithExpiry

Struct that bundles together a signature and an expiration time for the signature. Used primarily for stack management.

struct SignatureWithExpiry {
    bytes signature;
    uint256 expiry;
}

SignatureWithSaltAndExpiry

Struct that bundles together a signature, a salt for uniqueness, and an expiration time for the signature. Used primarily for stack management.

struct SignatureWithSaltAndExpiry {
    bytes signature;
    bytes32 salt;
    uint256 expiry;
}

Last updated