# `FireblocksSdk.Api.GasStation`
[🔗](https://github.com/csokun/fireblocks_sdk/blob/v0.2.4/lib/fireblocks_sdk/api/gas_station.ex#L1)

# `get_settings`

Returns gas station settings and ETH balance.

# `get_settings_by_asset`

Returns gas station settings and balances for a requested asset.

```
FireblocksSdk.Api.GasStation.get_settings_by_asset("ETH")
```

Options:
  - `asset`: `String.t()`

# `update_settings`

Configures gas station settings for ETH or given asset.

```
FireblocksSdk.Api.GasStation.update_settings([
  assetId: "ETH",
  gasThreshold: "0.005",
  gasCap: "0.003"
])
```

Options:
* `:gasThreshold` (`t:String.t/0`) - Required.

* `:gasCap` (`t:String.t/0`) - Required.

* `:maxGasPrice` (`t:String.t/0`)

* `:assetId` (`t:String.t/0`)

---

*Consult [api-reference.md](api-reference.md) for complete listing*
