> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anchorage.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Rules

> Add, edit, and delete the rules that govern policy approvals.

export const ImageCarousel = ({images, perView = 3, children}) => {
  const [page, setPage] = useState(0);
  const [imgH, setImgH] = useState(0);
  const stripRef = useRef(null);
  const THUMB_MAX_WIDTH = 220;
  const PEEK_WIDTH = 34;
  useEffect(() => {
    const strip = stripRef.current;
    if (!strip) return;
    const measure = () => {
      const box = strip.querySelector("[data-carousel-imgbox]");
      if (box && box.clientHeight) setImgH(box.clientHeight);
    };
    measure();
    const ro = new ResizeObserver(measure);
    ro.observe(strip);
    return () => ro.disconnect();
  }, []);
  const fromChildren = React.Children.toArray(children).map(c => c && c.props && c.props.src ? {
    src: c.props.src,
    alt: c.props.alt
  } : null).filter(Boolean);
  const items = fromChildren.length ? fromChildren : images || [];
  if (!items.length) return null;
  const count = items.length;
  const columns = Math.min(perView, count);
  const totalPages = Math.ceil(count / columns);
  const showControls = totalPages > 1;
  const goTo = p => setPage((p % totalPages + totalPages) % totalPages);
  const prev = () => goTo(page - 1);
  const next = () => goTo(page + 1);
  const start = page * columns;
  const visible = items.slice(start, start + columns);
  const prevPeek = start > 0 ? items[start - 1] : null;
  const nextPeek = start + columns < count ? items[start + columns] : null;
  const renderPeek = (img, side) => {
    if (!img) return null;
    const isLeft = side === "left";
    return <button type="button" onClick={isLeft ? prev : next} aria-hidden="true" tabIndex={-1} style={{
      flex: `0 0 ${PEEK_WIDTH}px`,
      width: PEEK_WIDTH + "px",
      alignSelf: imgH ? "flex-start" : "stretch",
      height: imgH ? imgH + "px" : undefined,
      border: 0,
      padding: 0,
      cursor: "pointer",
      opacity: 0.5,
      borderRadius: isLeft ? "10px 0 0 10px" : "0 10px 10px 0",
      backgroundImage: `url("${img.src}")`,
      backgroundRepeat: "no-repeat",
      backgroundSize: "auto 100%",
      backgroundPosition: isLeft ? "right center" : "left center",
      WebkitMaskImage: `linear-gradient(to ${isLeft ? "left" : "right"}, #000 15%, transparent 100%)`,
      maskImage: `linear-gradient(to ${isLeft ? "left" : "right"}, #000 15%, transparent 100%)`
    }} />;
  };
  const arrowStyle = {
    flex: "0 0 auto",
    width: "30px",
    height: "30px",
    borderRadius: "50%",
    border: "1px solid var(--ad-border, #e4e5e7)",
    background: "var(--background, #fff)",
    fontSize: "16px",
    lineHeight: "28px",
    textAlign: "center",
    cursor: "pointer",
    padding: 0
  };
  return <div style={{
    outline: "none",
    margin: "1.5rem 0"
  }} role={showControls ? "group" : undefined} aria-label={showControls ? "Screenshot carousel" : undefined} aria-roledescription={showControls ? "carousel" : undefined}>
      <div style={{
    display: "flex",
    alignItems: "center",
    gap: "10px"
  }}>
        {showControls && <button type="button" onClick={prev} aria-label="Previous screenshots" style={arrowStyle}>
            ‹
          </button>}

        <div ref={stripRef} style={{
    display: "flex",
    flexWrap: "nowrap",
    alignItems: "flex-start",
    gap: "14px",
    justifyContent: "center",
    flex: 1
  }}>
          {renderPeek(prevPeek, "left")}
          {}
          {Array.from({
    length: columns
  }).map((_, i) => {
    const img = visible[i];
    const slotStyle = {
      margin: 0,
      flex: "1 1 0",
      maxWidth: THUMB_MAX_WIDTH + "px",
      minWidth: 0
    };
    if (!img) {
      return <div key={start + i} aria-hidden="true" style={{
        ...slotStyle,
        visibility: "hidden"
      }} />;
    }
    return <div key={start + i} style={slotStyle}>
                <span data-carousel-imgbox style={{
      display: "block"
    }}>
                  <img src={img.src} alt={img.alt ?? ""} style={{
      display: "block",
      width: "100%",
      height: "auto",
      margin: 0,
      borderRadius: "10px",
      border: "1px solid var(--ad-border, #e4e5e7)"
    }} />
                </span>
                {img.alt && <div style={{
      marginTop: "6px",
      fontSize: "12px",
      lineHeight: 1.4,
      color: "var(--ad-muted, #6b7280)",
      textAlign: "center"
    }}>
                    {img.alt}
                  </div>}
              </div>;
  })}
          {renderPeek(nextPeek, "right")}
        </div>

        {showControls && <button type="button" onClick={next} aria-label="Next screenshots" style={arrowStyle}>
            ›
          </button>}
      </div>

      {showControls && <div style={{
    textAlign: "center",
    marginTop: "8px",
    fontSize: "12px",
    color: "var(--ad-muted, #6b7280)"
  }}>
          {start + 1}
          {visible.length > 1 ? "–" + (start + visible.length) : ""} of {count}
        </div>}
    </div>;
};

A rule is a safety check within a policy. When a specific operation (the trigger) occurs, the rule determines who can approve it and how many approvals are required. Rules let you tailor approval requirements to individual operations — such as withdrawals or user management — instead of relying on the default rule alone.

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-rules-baseline.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=a4a200f570d0658ad62641ee823465a5" alt="Rules screen with only the default rule configured" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-rules-baseline.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-rules-baseline-with-custom.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=68182be7cbc38d02fc2bb431d4075fef" alt="Rules screen with a custom Withdraw rule added alongside the default rule" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-rules-baseline-with-custom.png" />
</ImageCarousel>

## Managing rules

### Adding a rule

<Steps>
  <Step title="Navigate to the policy">
    Tap **Settings**, then **Policies**, and select the specific policy you want to edit (admin or vault).
  </Step>

  <Step title="Add a new rule">
    Tap **Rules**, then select **Add rule**.
  </Step>

  <Step title="Configure the rule">
    Fill in the following fields, then tap **Done**:

    1. **Operation** — Select the specific operation type this rule will control (e.g., Withdraw, User management).
    2. **Quorum** — Tap **Quorum is** to select the pool of users allowed to approve this operation.
    3. **Approvals required** — Define the number of approvals required from that quorum pool.
    4. **Sub-quorum (Optional)** — Tap **Add sub-quorum** to enforce stricter security, requiring a set number of approvals from a specific subgroup before the general quorum can be met.
  </Step>

  <Step title="Finalize">
    Back on the Rules screen, the new rule is tagged **New**. Tap **Continue**, review your settings, and tap **Save changes**. You will be prompted to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/Q6VrRBiEEXtXFQnt/knowledge-base/images/screenshots/policy-add-rule-navigate.png?fit=max&auto=format&n=Q6VrRBiEEXtXFQnt&q=85&s=a90f04f67f5a7e3773a3c15a9434a970" alt="Policy detail screen with Rules highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-rule-navigate.png" />

  <img src="https://mintcdn.com/deployment-4/Q6VrRBiEEXtXFQnt/knowledge-base/images/screenshots/policy-add-rule-empty-list.png?fit=max&auto=format&n=Q6VrRBiEEXtXFQnt&q=85&s=a2669d100dccb57944bc358f7e16445e" alt="Rules screen with only the default rule and an Add rule button" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-rule-empty-list.png" />

  <img src="https://mintcdn.com/deployment-4/Q6VrRBiEEXtXFQnt/knowledge-base/images/screenshots/policy-add-rule-configure.png?fit=max&auto=format&n=Q6VrRBiEEXtXFQnt&q=85&s=f2217cc6c7e2849b46b00fcd547d8386" alt="Add rule screen with operation, quorum, and approval count configured" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-rule-configure.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-add-rule-new-tagged.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=c272c384d7cb6c367fe40045981477ee" alt="Rules screen showing the new rule tagged New" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-rule-new-tagged.png" />
</ImageCarousel>

<Note>
  Operations not covered by specific rules will automatically follow the default **Any vault operation** or **Any admin operation** rule.
</Note>

### Editing a rule

<Steps>
  <Step title="Navigate to the policy">
    Tap **Settings**, then **Policies**, and select the relevant policy.
  </Step>

  <Step title="Open the rule">
    Tap **Rules**, then tap the options menu (**...**) next to the rule you want to change and select **Edit rule**.
  </Step>

  <Step title="Modify parameters">
    Update any of the following:

    1. **Operation** — Change the action that triggers the rule.
    2. **Quorum members** — Update the base quorum members eligible to approve the request.
    3. **Threshold** — Change the number of approvals required.
    4. **Sub-quorums** — Add or remove sub-quorum requirements.
  </Step>

  <Step title="Save changes">
    Tap **Continue**, review the updated rule configuration, and tap **Save changes**. Follow the prompts to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

### Deleting a rule

<Warning>
  You cannot delete the default **Any vault operation** or **Any admin operation** rules. These serve as the baseline safety net for your organization. When a custom rule is deleted, that operation type immediately reverts to following the applicable default rule.
</Warning>

<Steps>
  <Step title="Navigate to the policy">
    Tap **Settings**, then **Policies**, and select the relevant policy.
  </Step>

  <Step title="Delete the rule">
    Tap **Rules**, then tap the options menu (**...**) next to the rule you want to remove and select **Delete rule**.
  </Step>

  <Step title="Save changes">
    Tap **Continue**, then **Save changes**. Follow the prompts to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-delete-rule-menu.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=e669ae7101020375bd06f2b4c11ad62c" alt="Rules screen with the options menu highlighted next to a custom rule" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-delete-rule-menu.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-delete-rule-tagged.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=a7944c8e016922c57c466fb4dd09f1aa" alt="Rules screen showing the rule tagged Deleted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-delete-rule-tagged.png" />
</ImageCarousel>

## Base quorum members

The base quorum defines the pool of users — admins or operators — eligible to approve a specific operation within a policy.

### Editing base quorum members

<Steps>
  <Step title="Navigate to the policy">
    Tap **Settings**, then **Policies**, and select the relevant policy (admin or vault).
  </Step>

  <Step title="Open the rule">
    Tap **Rules**, then tap the options menu (**...**) next to the rule you want to modify and select **Edit rule**.
  </Step>

  <Step title="Update members">
    Tap the **Quorum is** field to select or deselect approvers.
  </Step>

  <Step title="Save changes">
    Tap **Done** to save the rule. Follow the prompts to submit biometric approval — quorum approval is required. Once quorum is met, Anchorage Digital will review the operation.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-rules-list.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=1e376a8d5742ac2ce1eea428cbf7ee89" alt="Rules screen with the three-dot menu highlighted next to a rule" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-rules-list.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-rule-quorum-members-open.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=a176b472163d5007a1f25b2729eba287" alt="Edit rule screen with the Quorum is field highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-rule-quorum-members-open.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-rule-quorum-members-picker.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=0a6fd9f7c56b350e2689470037674148" alt="Member picker for the rule's quorum, with Continue highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-rule-quorum-members-picker.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-rule-quorum-members-done.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=625db5999e601f721e23ead1186bbffe" alt="Edit rule screen with updated quorum members and Done highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-rule-quorum-members-done.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-rules-list-edited.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=f68ef448b1c1d4b31acd08c4c0cdf87d" alt="Rules screen showing the rule tagged as edited" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-rules-list-edited.png" />
</ImageCarousel>

### Editing base quorum approvals

<Steps>
  <Step title="Navigate to the policy">
    Tap **Settings**, then **Policies**, and select the relevant policy.
  </Step>

  <Step title="Open the rule">
    Tap **Rules**, then tap the options menu (**...**) next to the rule and select **Edit rule**.
  </Step>

  <Step title="Update the threshold">
    Scroll down to **Number of approvals required** and select the new amount.
  </Step>

  <Step title="Save changes">
    Tap **Done** to save the rule. Follow the prompts to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-rule-threshold-start.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=a3ea5dede0bb89711f6ac34095ee1b06" alt="Edit rule screen showing the number of approvals required stepper" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-rule-threshold-start.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-rule-threshold-updated.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=15c9c0887f5d533018b6f34592649461" alt="Edit rule screen with the approval count increased" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-rule-threshold-updated.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-rules-list-edited.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=f68ef448b1c1d4b31acd08c4c0cdf87d" alt="Rules screen showing the rule tagged as edited" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-rules-list-edited.png" />
</ImageCarousel>

## Sub-quorums

Sub-quorums add an additional security layer to a rule. They ensure an operation cannot be completed unless a specific number of approvals are received from a designated group (e.g., "2 approvals from the Legal Team"). Multiple sub-quorums can be added to any rule.

<Note>
  Sub-quorum members are always selected from the base quorum, so every sub-quorum approver is also part of the base quorum.
</Note>

### Adding a sub-quorum

<Steps>
  <Step title="Navigate to the rule">
    Tap **Settings**, then **Policies**, select the relevant policy, tap **Rules**, and tap the options menu (**...**) next to the target rule and select **Edit rule**.
  </Step>

  <Step title="Add the sub-quorum">
    Scroll down and tap **Add sub-quorum**.
  </Step>

  <Step title="Select members and set threshold">
    Select members from the base quorum pool and tap **Continue**. Set the number of required approvals for this group and tap **Continue**.
  </Step>

  <Step title="Name and review">
    Enter a name and optional description for the sub-quorum. Review the details, adding more sub-quorums if needed.
  </Step>

  <Step title="Save changes">
    Tap **Done** to save the rule. Follow the prompts to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-add-subquorum-start.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=812d245c3dc19d5135a54c322c6ddc53" alt="Edit rule screen with Add sub-quorum highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-subquorum-start.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-add-subquorum-members.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=d46c986c3643ad1b0dda4009a6c81531" alt="Add sub-quorum member picker with Continue highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-subquorum-members.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-add-subquorum-count.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=d938d616b51a2786e0ffe6646744a6a8" alt="Add sub-quorum screen for setting the number of required approvers" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-subquorum-count.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-add-subquorum-details.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=2b6696d8fcf13024cdf83a26c79d2233" alt="Add sub-quorum screen for entering a name and description" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-subquorum-details.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-add-subquorum-review.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=4f607757b59b4f7002ce5d8bd1cb4f93" alt="Edit rule screen showing the new sub-quorum with Done highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-add-subquorum-review.png" />
</ImageCarousel>

### Editing sub-quorum details

Administrators can update the name or description of an existing sub-quorum.

<Steps>
  <Step title="Navigate to the rule">
    Tap **Settings**, then **Policies**, select the relevant policy, tap **Rules**, and tap the options menu (**...**) next to the parent rule and select **Edit rule**.
  </Step>

  <Step title="Open sub-quorum settings">
    Scroll down to the sub-quorum section. Tap the options menu for the sub-quorum and select **Edit details**.
  </Step>

  <Step title="Make changes">
    Update the name or description and tap **Finish**.
  </Step>

  <Step title="Save changes">
    Tap **Done** to save the rule. Follow the prompts to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-subquorum-details-open.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=5918e1be8ea736bb589db11a581edc6e" alt="Edit rule screen showing an existing sub-quorum" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-subquorum-details-open.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-subquorum-name-field.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=bc22ed79fbd59b656666287b9614d2ae" alt="Edit sub-quorum screen with the name field highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-subquorum-name-field.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-subquorum-details-done.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=cd5d19a818f38e3bc6b2b954d4768557" alt="Edit rule screen with the updated sub-quorum name and Done highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-subquorum-details-done.png" />
</ImageCarousel>

### Editing sub-quorum members

<Steps>
  <Step title="Navigate to the rule">
    Tap **Settings**, then **Policies**, select the relevant policy, tap **Rules**, and tap the options menu (**...**) next to the parent rule and select **Edit rule**.
  </Step>

  <Step title="Open member settings">
    Scroll down to the sub-quorum section. Tap the options menu for the sub-quorum and select **Edit approvers**.
  </Step>

  <Step title="Update members">
    Select or deselect members to update the pool and tap **Continue**.
  </Step>

  <Step title="Save changes">
    Tap **Done** to save the rule. Follow the prompts to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-subquorum-members-open.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=3efe08db81f76aa7e23c2c68bb823d18" alt="Edit rule screen showing an existing sub-quorum" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-subquorum-members-open.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-subquorum-members-picker.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=951f82c9b4a7fe46a7629786f05c4dba" alt="Sub-quorum member picker with members selected" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-subquorum-members-picker.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-subquorum-members-done.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=4f0f3ed4e9110a08d5898ea244ebcd94" alt="Edit rule screen with the updated sub-quorum members and Done highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-subquorum-members-done.png" />
</ImageCarousel>

### Editing sub-quorum approvals

<Steps>
  <Step title="Navigate to the rule">
    Tap **Settings**, then **Policies**, select the relevant policy, tap **Rules**, and tap the options menu (**...**) next to the parent rule and select **Edit rule**.
  </Step>

  <Step title="Open approval limit settings">
    Scroll down to the sub-quorum section. Tap the options menu for the sub-quorum and select **Edit approval limit**.
  </Step>

  <Step title="Set the threshold">
    Select the new number of required approvals and tap **Save**.
  </Step>

  <Step title="Save changes">
    Tap **Done** to save the rule. Follow the prompts to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-subquorum-threshold-open.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=d2549884fb877dd41eab1bfa7761a7e0" alt="Edit rule screen showing an existing sub-quorum" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-subquorum-threshold-open.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-edit-subquorum-threshold-done.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=2093aafe7297e126fa91d8db1e159876" alt="Edit rule screen with the updated sub-quorum approval count and Done highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-edit-subquorum-threshold-done.png" />
</ImageCarousel>

### Deleting a sub-quorum

<Steps>
  <Step title="Navigate to the rule">
    Tap **Settings**, then **Policies**, select the relevant policy, tap **Rules**, and tap the options menu (**...**) next to the parent rule and select **Edit rule**.
  </Step>

  <Step title="Delete the sub-quorum">
    Scroll down to the sub-quorum section. Tap the options menu for the sub-quorum and select **Delete**.
  </Step>

  <Step title="Save changes">
    Tap **Done** to save the rule. Follow the prompts to submit biometric approval — quorum approval is required.
  </Step>
</Steps>

<ImageCarousel>
  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-delete-subquorum-open.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=3bff99258a2704322cad0c6d58b2d43d" alt="Edit rule screen showing an existing sub-quorum with a Delete option" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-delete-subquorum-open.png" />

  <img src="https://mintcdn.com/deployment-4/3eHo4c6eQNfdmseu/knowledge-base/images/screenshots/policy-delete-subquorum-done.png?fit=max&auto=format&n=3eHo4c6eQNfdmseu&q=85&s=3fcbe5669e4c5150329f4d3ce044e6ef" alt="Edit rule screen with the sub-quorum removed and Done highlighted" width="828" height="1792" data-path="knowledge-base/images/screenshots/policy-delete-subquorum-done.png" />
</ImageCarousel>
