Solutions
Enterprise
Enterprise-grade financial infrastructure with dedicated support, custom integrations, and advanced security features for large-scale operations.
Enterprise Features
Dedicated Support
24/7 priority support with dedicated account managers and technical specialists.
Custom Integrations
Tailored solutions and custom API integrations to fit your specific workflows.
Advanced Security
Enterprise-grade security with SOC 2 compliance, multi-sig wallets, and audit logs.
Volume Pricing
Competitive enterprise pricing with volume discounts and custom agreements.
Enterprise API
enterprise-integration.ts
import { TorqueEnterprise } from '@torque/sdk'
// Initialize enterprise client with custom config
const enterprise = new TorqueEnterprise({
enterpriseId: 'your-enterprise-id',
apiKey: process.env.TORQUE_ENTERPRISE_API_KEY,
environment: 'production',
webhookSecret: process.env.WEBHOOK_SECRET,
})
// Custom treasury management
const treasury = await enterprise.treasury.getBalances({
chains: ['ethereum', 'base', 'arbitrum'],
includeTokens: true,
})
// Batch operations
const batch = await enterprise.batch.create({
operations: [
{ type: 'transfer', amount: '1000', token: 'USDC' },
{ type: 'trade', from: 'USDC', to: 'ETH' },
],
execute: true,
})Was this helpful?