Enterprise
Enterprise-grade infra, dedicated support & custom integrations.
Enterprise Features
Dedicated Support
24/7 priority support with dedicated account managers & technical specialists.
Custom Integrations
Tailored solutions & custom API integrations to fit your specific workflows.
Advanced Security
Enterprise-grade security with SOC 2 compliance, multi-sig wallets, & audit logs.
Volume Pricing
Competitive enterprise pricing with volume discounts & 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?