> For the complete documentation index, see [llms.txt](https://nomos-docs.gitbook.io/nomos-1/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nomos-docs.gitbook.io/nomos-1/readme/nomos-sdk/utils.md).

# Utils

Utility functions to interact with multisigs and the nomos Iframe

### isNomos

This function checks if your app is within the Iframe wrapper of nomos. It checks first if your app is within an iframe and then if that iframe is from nomos.

```typescript
import { isNomos} from "nomosjs";

console.log({isNomos: isNomos()});
```
