Skip to content

Commit 0384894

Browse files
committed
adds UtxoPriority for withdraw v2
1 parent 56a97f7 commit 0384894

File tree

1 file changed

+9
-1
lines changed
  • src/pages/komodo-defi-framework/api/common_structures

1 file changed

+9
-1
lines changed

src/pages/komodo-defi-framework/api/common_structures/index.mdx

+9-1
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,9 @@ The `FeeInfo` response object includes the following items for [withdraw (v2)](/
192192

193193
| Parameter | Type | Description |
194194
| ---------- | ---------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
195-
| type | string | Type of transaction fee; possible values: `UtxoFixed`, `UtxoPerKbyte`, `EthGas`, `Qrc20Gas`, `CosmosGas` |
195+
| type | string | Type of transaction fee. Possible values: `UtxoFixed`, `UtxoPerKbyte`, `UtxoPriority`, `EthGas`, `Qrc20Gas`, `CosmosGas` |
196196
| amount | string (numeric) | Fee amount in coin units, used only when type is `UtxoFixed` (fixed amount not depending on tx size) or `UtxoPerKbyte` (amount per Kbyte) |
197+
| priority | string | Used only when type is `UtxoPriority`. Possible values: 'Low', 'Normal', 'High'. |
197198
| gas\_price | string (numeric) | Used only when fee type is `Qrc20Gas` or `EthGas`; sets the gas price in `gwei` units. |
198199
| gas\_price | number (double) | Used only when fee type is `CosmosGas`; sets the gas price. |
199200
| gas | number (integer) | Used only when fee type is `EthGas`; sets the gas limit for transaction |
@@ -216,6 +217,13 @@ The `FeeInfo` response object includes the following items for [withdraw (v2)](/
216217
}
217218
```
218219

220+
```json
221+
{
222+
"type": "UtxoPriority",
223+
"priority": "Low"
224+
}
225+
```
226+
219227
```json
220228
{
221229
"type": "EthGas",

0 commit comments

Comments
 (0)