@cfxlabsinc/b2b-services
    Preparing search index...
    RedemptionWallet: Simplify<
        Omit<
            SelectCustomerRedemptionWallet,
            | "id"
            | "externalId"
            | "referenceId"
            | "customerId"
            | "identityId"
            | "organizationId"
            | "name"
            | "address"
            | "walletData"
            | "customerId",
        > & Omit<SelectCustomerRedemptionWallet["walletData"], "tokenAccounts"> & {
            address: PublicKey;
            balance: BigNumber;
            id: SelectCustomerRedemptionWallet["externalId"];
            name: NonNullable<SelectCustomerRedemptionWallet["name"]>;
            referenceId?: NonNullable<SelectCustomerRedemptionWallet["referenceId"]>;
            tokenAccounts: Record<"MOVEUSD", { address: PublicKey }>;
        },
    >