Safe on ADI Chain
Official Safe interfaces and transaction services for ADI Chain.
Last updated
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.
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.
Go to the Safe UI and connect your wallet or create a new Safe.
The interface automatically uses the correct Transaction Service for ADI Chain.
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
