# Quickstart

Begin receiving quotes after 3 easy steps:

<table data-view="cards"><thead><tr><th></th><th data-hidden data-card-cover data-type="image">Cover image</th></tr></thead><tbody><tr><td>Create Account</td><td><a href="https://2927719792-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGNZX42boT5K8BnIz27Gl%2Fuploads%2F8jYHNLqxDVsnC11eca68%2Faccount.png?alt=media&#x26;token=f6add92b-9cb6-4f59-b13d-80857cb29744">account.png</a></td></tr><tr><td>Create Project</td><td><a href="https://2927719792-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGNZX42boT5K8BnIz27Gl%2Fuploads%2FpjaCqnbosgrTFD15faow%2Fcreate.png?alt=media&#x26;token=cd3a723a-cc74-4e30-bbc9-65178a111143">create.png</a></td></tr><tr><td>Save Project Keys</td><td><a href="https://2927719792-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FGNZX42boT5K8BnIz27Gl%2Fuploads%2Fl8D2a5uZ8fpbQiykk8gk%2Fsave.png?alt=media&#x26;token=2cbe7fb0-151b-46aa-a9a6-01e6c2cebbd4">save.png</a></td></tr></tbody></table>

#### Jump In With SDKs

{% tabs %}
{% tab title="Typescript" %}

```
import { OrdaSDK } from '@ordanetwork/sdk';

const orda = new OrdaSDK({
  clientId: 'your-client-id',
  clientSecret: 'your-client-secret',
  // Never expose your clientSecret in frontend code
});

// Create a recipient with a smart wallet
const recipient = await orda.recipients.create({
  name: 'Test Recipient',
  cryptoSettlementDetails: {
    toChain: '8453',
    toToken: '0x833589fcd6edb6e08f4c7c32d4f71b54bda02913',
    // omit toAddress → auto-generates smart wallet
  }
});
console.log('Smart wallet:', recipient.smartWallet?.address);

// Request a quote
const quote = await orda.quote.request({
  fromChain: '1', // Ethereum mainnet
  fromToken: '0xA0b8...eB48', // USDC
  fromAddress: '0xYourAddress',
  intent: { method: 'usd', value: '100' },
  recipientId: recipient.recipientId,
});
```

{% endtab %}
{% endtabs %}

#### Prerequisites <a href="#prerequisites" id="prerequisites"></a>

Before integrating with orda, ensure you're familiar with the following key concepts and workflows:

* An orda developer account ([Here](https://app.orda.network/))
* Project **clientID & secret** [(Learn more about auth here)](https://docs.orda.network/developers/authentication)
* How to request & execute a quote
* Monitoring a quote/transaction

After registering, you'll need to generate a project key to start interacting with the orda network.
