> For the complete documentation index, see [llms.txt](https://docs.adi.foundation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.adi.foundation/how-to-start/safe-on-adi-chain.md).

# Safe on ADI Chain

ADI Chain supports **Safe** (formerly Gnosis Safe), the leading smart account infrastructure for secure multi-signature and account abstraction setups.

#### Official Safe Interfaces & Services

* **Safe UI (Web Interface)**: <https://safe.adifoundation.ai/>\
  Use this to create, manage, and interact with Safe accounts on ADI Chain (Mainnet and Testnet).
* **Mainnet Transaction Service**: <https://transaction.safe.adifoundation.ai>\
  Handles off-chain transaction proposing, signing, and indexing for Mainnet.
* **Testnet Transaction Service**: <https://transaction-testnet.safe.adifoundation.ai>\
  Same as above, but for the ADI Chain Testnet.

#### How to Use

1. Go to the [Safe UI](https://safe.adifoundation.ai/) and connect your wallet or create a new Safe.
2. The interface automatically uses the correct Transaction Service for ADI Chain.
3. For developers integrating Safe SDKs:
   * Use the Transaction Service URLs above when initializing `SafeApiKit` with a custom `txServiceUrl`.

Example with Safe Core SDK (TypeScript):

```ts
import SafeApiKit from '@safe-global/api-kit';

const apiKit = new SafeApiKit({
  chainId: <ADI_CHAIN_ID>,           // your ADI mainnet or testnet chainId
  txServiceUrl: 'https://transaction.safe.adifoundation.ai'  // or the testnet URL
});
```

{% hint style="info" %}
Always verify you are on the official domains listed above to avoid phishing risks.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://docs.adi.foundation/how-to-start/safe-on-adi-chain.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.
