# shareSplit()

```typescript
/**
   * Split the shares of the Collective Portrait.
   *
   * @remarks
   * Splitting the shares of the Collective Portrait will split the shares of the Collective Portrait by the multiplier.
   * For example, if the multiplier is 2, then the number of shares of the Collective Portrait will be doubled.
   * The multiplier must be greater than 1.
   * The minimum control shares will be updated to be the minimum control shares multiplied by the multiplier.
   *
   * @param {CollectivePortraitName | number} identity - The name of the Collective Portrait that the user would like to split the shares for.
   * @param {number} multiplier - The multiplier to split the shares by.
   * @returns {ethers.ContractTransaction} - The transaction object of the transaction that splits the shares of the Collective Portrait.
   * @beta
   * @async
   */
  shareSplit(
    identity: CollectivePortraitName | number,
    multiplier: number,
  ): Promise<ethers.ContractTransaction> {
    const id =
      typeof identity === 'number' ? identity : this.getTokenIdByName(identity);

    return this.portrait.portraitCollectiveContract.shareSplit(id, multiplier);
  }

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ryan-44.gitbook.io/portrait/portrait-sdk/collective-portraits/write/sharesplit.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
