Using Torque
Get up & running with Torque in under 5 minutes.
Continue with Email to create a smart account
Choose Individual or Business account
Execute your first trade with best-price execution
Add onchain payments to your website
Create Your Torque Wallet
Visit app.torque.fi & select your account type (Individual or Business). Then navigate to /home or /business/home.
Continue with Email: Enter your email → complete OTP → your Torque Wallet (smart account) is created. Gas is sponsored where implemented. This is the only supported connection method.
Tip: With a Torque Wallet, gas is sponsored where implemented so you don't need native tokens (ETH, POL, etc.) for gas in those flows.
Select Account Type
Choose between Individual or Business account during onboarding.
Individual
- ✓ Portfolio tracking
- ✓ Trade
- ✓ Lending & borrowing
- ✓ AI assistant
Business
- ✓ Analytics dashboard
- ✓ Product management
- ✓ Checkout SDK
- ✓ Treasury management
Make Your First Trade
Navigate to the Trade section & execute your first trade with best-price execution.
// Using the AI Assistant
"Trade 100 USDC for ETH on Base"
// The assistant will:
// 1. Find the best route across DEXs
// 2. Show you the expected output
// 3. Ask for confirmation
// 4. Execute the tradeIntegrate Checkout
For businesses: Add onchain payments to your website with our Checkout SDK.
npm install torque-checkoutimport { TorqueCheckout } from 'torque-checkout'
export function CheckoutButton() {
const handleCheckout = async () => {
const checkout = new TorqueCheckout({
businessId: process.env.TORQUE_BUSINESS_ID,
})
await checkout.open({
amount: 49.99,
currency: 'USD',
productName: 'Premium Plan',
})
}
return (
<button onClick={handleCheckout}>
Pay with Crypto
</button>
)
}