aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Event emitted when collateral is deallocated from a market back to the account's general collateral.

    interface DeallocatedCollateralEvent {
        accountId: bigint;
        collateralDelta: bigint;
        marketId: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • DeallocatedCollateralEvent
    Index
    accountId: bigint

    Perpetuals account receiving the deallocated collateral.

    collateralDelta: bigint

    Deallocated collateral in the coin's smallest unit.

    marketId: string

    Market returning collateral to the account's free balance.

    timestamp: number | undefined

    Timestamp of the event, if available.

    txnDigest: string

    The transaction digest associated with the event.

    type: string

    A string identifying the Move event type.