Options for creating a Capacity Credit delegation auth signature. Includes delegatee addresses, usage limits, and expiration.

interface CapacityCreditDelegationAuthSigOptions {
    delegateeAddresses: string[];
    expiration?: string;
    uses?: string;
}

Properties

delegateeAddresses: string[]

The addresses of the delegatees.

expiration?: string

The expiration time for the delegation (optional).

uses?: string

The number of uses allowed for the delegation (optional).