UNPKG

@velora-dex/sdk

Version:
89 lines (73 loc) 2.88 kB
/* eslint-disable @typescript-eslint/no-unused-vars */ import axios from 'axios'; import { ethers } from 'ethersV5'; import { constructSimpleSDK } from '..'; import { startStatusCheck } from './helpers/delta'; const DAI_TOKEN = '0x6b175474e89094c44da98b954eedeac495271d0f'; const USDC_TOKEN = '0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48'; async function allQuote() { // @ts-expect-error assume window.ethereum is available const ethersProvider = new ethers.providers.Web3Provider(window.ethereum); const accounts = await ethersProvider.listAccounts(); const account = accounts[0]!; const signer = ethersProvider.getSigner(account); const simpleSDK = constructSimpleSDK( { chainId: 1, axios }, { ethersProviderOrSigner: signer, EthersContract: ethers.Contract, account, } ); const amount = '1000000000000'; // wei const quote = await simpleSDK.quote.getQuote({ srcToken: DAI_TOKEN, destToken: USDC_TOKEN, amount, userAddress: account, srcDecimals: 18, destDecimals: 6, mode: 'all', // Delta quote if possible, with fallback to Market price side: 'SELL', // partner: "..." // if available }); if ('delta' in quote) { // Delta path — quote.delta is the v2 DeltaPrice (route-based) const deltaPrice = quote.delta; const DeltaContract = await simpleSDK.delta.getDeltaContract(); // or sign a Permit1 or Permit2 TransferFrom for DeltaContract const approveTxHash = await simpleSDK.delta.approveTokenForDelta( amount, DAI_TOKEN ); // v2 order building is server-side: pass the quoted route/side, no deltaPrice const deltaAuction = await simpleSDK.delta.submitDeltaOrder({ route: deltaPrice.route, // or pick from deltaPrice.alternatives side: deltaPrice.side, owner: account, // beneficiary: anotherAccount, // if need to send destToken to another account // permit: "0x1234...", // if signed a Permit1 or Permit2 TransferFrom for DeltaContract slippage: 50, // 50 bps = 0.5% slippage }); // poll if necessary startStatusCheck(() => simpleSDK.delta.getDeltaOrderById(deltaAuction.id)); } else { console.log( `Delta Quote failed: ${quote.fallbackReason.errorType} - ${quote.fallbackReason.details}` ); const priceRoute = quote.market; const TokenTransferProxy = await simpleSDK.swap.getSpender(); // or sign a Permit1 or Permit2 TransferFrom for TokenTransferProxy const approveTxHash = simpleSDK.swap.approveToken(amount, DAI_TOKEN); const txParams = await simpleSDK.swap.buildTx({ srcToken: DAI_TOKEN, destToken: USDC_TOKEN, srcAmount: amount, slippage: 250, // 2.5% priceRoute, userAddress: account, // partner: '...' // if available }); const swapTx = await signer.sendTransaction(txParams); } }