Quickstart

Using Torque

Get up & running with Torque in under 5 minutes.

Connect Your Wallet
Connect Your Wallet

Connect your preferred wallet to get started

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]

Connect Your Wallet

Visit app.torque.fi & select your account type (Individual or Business). Then navigate to /home or /business/home to connect your preferred wallet. We support MetaMask, Coinbase Wallet, & more.

Tip: Make sure you have some native tokens (ETH, POL, etc.) for gas fees on your preferred network.

[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?