> For the complete documentation index, see [llms.txt](https://ryan-44.gitbook.io/portrait/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ryan-44.gitbook.io/portrait/portrait-sdk/collective-portraits/read/isprotocolactive.md).

# isProtocolActive()

```typescript
  /**
   * Check if the Portrait Protocol is active.
   *
   * @remarks
   * This function will return true if the Portrait Protocol is active. If the Portrait Protocol is paused, this function will return false.
   *
   * @returns {boolean} - True if the Portrait Protocol is active. False if the Portrait Protocol is paused.
   * @beta
   * @async
   */
  isProtocolActive(): boolean {
    const paused = this.portrait.portraitCollectiveContract.paused();
    return paused ? false : true;
  }
```
