# Kyber

Kyber Resolver to get buy and sell details. You can view details like source code, ABIs on [Etherscan](https://etherscan.io/address/0x8240b601d9B565e2BefaA3DA82Cc984E76cB3499#code).

## Get buy amount

Get buy token details like amount and unit amount.Copy

```
dsa.kyber.getBuyAmount(buyToken, sellToken, sellAmt, slippage);
```

| Parameter   | Type   | Description                                                                              |
| ----------- | ------ | ---------------------------------------------------------------------------------------- |
| `buyToken`  | string | The buy token symbol.                                                                    |
| `sellToken` | string | The sell token symbol.                                                                   |
| `sellAmt`   | number | The amount of tokens to sell. Amount to be written in normal form eg - 1.1 ETH, 100 DAI. |
| `slippage`  | number | The slippage in percent eg - 1 means 1%, 10 means 10%, etc.                              |

**Returns:** `Object` of buy token details

```
{
  buyAmt: "2208.0499999999997",
  buyAmtRaw: "2208050000000000000000",
  unitAmt: "216388900000000000000"
}
```

| Return Parameter | Type          | Description                                                                                                                                                                      |
| ---------------- | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| buyAmt           | number/string | Expected buy token amount.                                                                                                                                                       |
| buyAmtRaw        | number/string | Expected buy token amount in decimal form.                                                                                                                                       |
| unitAmt          | number/string | The unit amount is the minimum amount of buy token expected per sell token. It is calculated with the help of slippage. The parameter is passed directly in the kyber connector. |
