@cfxlabsinc/b2b-services
    Preparing search index...
    RedemptionWalletWithdrawal: Simplify<
        Omit<
            SelectRedemptionWalletWithdrawal,
            | "id"
            | "externalId"
            | "data"
            | "customerId"
            | "commitExternalId"
            | "redemptionWalletId"
            | "initiateTxId"
            | "amount"
            | "commitTargets"
            | "commitTxId"
            | "voidTxId",
        > & {
            amount: BigNumber;
            commitId?: string;
            commitTargets?: {
                address: PublicKey;
                amount: BigNumber;
                owner?: PublicKey;
            }[];
            commitTxId?: string;
            id: string;
            initiateTxId?: string;
            redemptionWalletId: string;
            voidTxId?: string;
        },
    >