Enterprise-grade security with Safe
Accept payments to multi-signature wallets using Safe (formerly Gnosis Safe). Perfect for teams, DAOs, and enterprises requiring multiple approvals.
Require multiple signers for transactions. No single point of failure or compromise.
Configure M-of-N signing requirements. 2-of-3, 3-of-5, or any combination you need.
Different team members can have different permissions. Spending limits per signer.
Full transaction history with signer attribution. Export for accounting and compliance.
Integration with Safe{Core} protocol. Create and manage Safes programmatically through the t402 SDK.
Pending transactions visible to all signers. Push notifications for signature requests.
Compatible with Safe modules for allowances, recurring payments, and spending limits.
Social recovery and guardian systems for account recovery without compromising security.
Get started with our quickstart guide and have multi-signature support working in minutes.
Get Startedimport { ExactEvmServer } from "@t402/evm/exact/server";
app.use(paymentMiddleware({
"GET /api/premium": {
price: "$100.00",
network: "eip155:8453",
schemes: [
new ExactEvmServer({
// Safe multisig address
payTo: "0xSafeAddress...",
}),
],
},
}));Check out the documentation for detailed implementation guides and API references.