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

    Interface ApiPerpetualsBuilderCodesRemoveIntegratorConfigTxBody

    Request payload for creating a transaction to revoke an integrator's permissions.

    This transaction removes an integrator's approval to collect fees on orders placed on behalf of the user. After revocation, the integrator will no longer be able to submit orders with fees for this account.

    interface ApiPerpetualsBuilderCodesRemoveIntegratorConfigTxBody {
        accountId: bigint;
        integratorId: number;
        sponsor?: PerpetualsSponsorConfig;
        txKind?: string;
    }
    Index
    accountId: bigint

    Account ID encoded as a bigint.

    This is the perpetuals account that is revoking the integrator's permission.

    integratorId: number

    Numeric integrator id (as assigned by the registry) of the integrator whose permissions are being revoked.

    Optional cached gas-pool sponsorship data.

    txKind?: string

    Optional existing transaction kind (base64-encoded) to extend.

    If provided, the integrator removal will be added to this transaction.