Using Torque

Get up & running with Torque in under 5 minutes.

Create Your Torque Wallet
Create Your Torque Wallet

Continue with Email to create a smart account

Select Account Type
Select Account Type

Choose Individual or Business account

Make Your First Trade
Make Your First Trade

Execute your first trade with best-price execution

Integrate Checkout
Integrate Checkout

Add onchain payments to your website

[01]

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.

[02]

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
[03]

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 trade
[04]

Integrate Checkout

For businesses: Add onchain payments to your website with our Checkout SDK.

Install
npm install torque-checkout
checkout-button.tsx
import { 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>
  )
}
Was this helpful?