For the complete documentation index, see llms.txt. This page is also available as Markdown.

Safe on ADI Chain

Official Safe interfaces and transaction services for 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

How to Use

  1. Go to the Safe UI 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):

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
});

Always verify you are on the official domains listed above to avoid phishing risks.

Last updated