CreateEvmSwapQuoteBody: {
    fromAmount: string;
    fromToken: string;
    gasPrice?: string;
    network: EvmSwapsNetwork;
    signerAddress?: string;
    slippageBps?: number;
    taker: string;
    toToken: string;
}

Type declaration

  • fromAmount: string

    The amount of the fromToken to send in atomic units of the token. For example, 1000000000000000000 when sending ETH equates to 1 ETH, 1000000 when sending USDC equates to 1 USDC, etc.

    ^\d+$

  • fromToken: string

    The 0x-prefixed contract address of the token to send.

    ^0x[a-fA-F0-9]{40}$

  • OptionalgasPrice?: string

    The target gas price for the swap transaction, in Wei. For EIP-1559 transactions, this value should be seen as the maxFeePerGas value. If not provided, the API will use an estimate based on the current network conditions.

    ^\d+$

  • network: EvmSwapsNetwork
  • OptionalsignerAddress?: string

    The 0x-prefixed Externally Owned Account (EOA) address that will sign the Permit2 EIP-712 permit message. This is only needed if taker is a smart contract.

    ^0x[a-fA-F0-9]{40}$

  • OptionalslippageBps?: number

    The maximum acceptable slippage of the toToken in basis points. If this parameter is set to 0, no slippage will be tolerated. If not provided, the default slippage tolerance is 100 bps (i.e., 1%).

    0

    10000

  • taker: string

    The 0x-prefixed address that holds the fromToken balance and has the Permit2 allowance set for the swap.

    ^0x[a-fA-F0-9]{40}$

  • toToken: string

    The 0x-prefixed contract address of the token to receive.

    ^0x[a-fA-F0-9]{40}$