Open Cap Table Protocol Canton SDK - v0.2.224
    Preparing search index...

    Interface MintWithRateLimitResult<T>

    Result of a mintWithRateLimit operation.

    interface MintWithRateLimitResult<T> {
        result: T;
        waitedMs: number;
        wasRateLimited: boolean;
    }

    Type Parameters

    • T
    Index

    Properties

    result: T

    The result from the mint function

    waitedMs: number

    How long we waited in milliseconds (0 if not rate limited)

    wasRateLimited: boolean

    Whether we had to wait due to rate limiting