@cfxlabsinc/b2b-services
    Preparing search index...

    Type Alias GirasolCardSolanaTransactionError

    GirasolCardSolanaTransactionError: ServiceError<
        "INSUFFICIENT_FUNDS",
        { balance: { amount: BigNumber; currency: string } },
    >

    Errors returned by the private cardDebitSolanaTransaction / cardCreditSolanaTransaction, and re-surfaced by authorize and clear.

    Named and exported rather than derived via ErrorReturnedBy<typeof this.…>: private members are emitted without their types, so that form degrades to unknown in the .d.ts and — with skipLibCheck masking it at the producer — surfaces only as result.error is of type unknown in consumers. (Protected and public members keep their types, so typeof this.update below is fine.)