Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,21 @@

## [0.3.11](https://github.com/sprintertech/sprinter-sdk/compare/docs-v0.3.10...docs-v0.3.11) (2025-10-09)


### Bug Fixes

* borrow quote example ([#189](https://github.com/sprintertech/sprinter-sdk/issues/189)) ([1583e74](https://github.com/sprintertech/sprinter-sdk/commit/1583e74b750fd4b5a7fe1b5887f742221ea3061f))
- borrow quote example ([#189](https://github.com/sprintertech/sprinter-sdk/issues/189)) ([1583e74](https://github.com/sprintertech/sprinter-sdk/commit/1583e74b750fd4b5a7fe1b5887f742221ea3061f))

## [0.3.10](https://github.com/sprintertech/sprinter-sdk/compare/docs-v0.3.9...docs-v0.3.10) (2025-09-15)


### Bug Fixes

* missing base url ([#185](https://github.com/sprintertech/sprinter-sdk/issues/185)) ([c9b535d](https://github.com/sprintertech/sprinter-sdk/commit/c9b535dd422413a9f06414ef8158f07c1b650462)), closes [#184](https://github.com/sprintertech/sprinter-sdk/issues/184)
- missing base url ([#185](https://github.com/sprintertech/sprinter-sdk/issues/185)) ([c9b535d](https://github.com/sprintertech/sprinter-sdk/commit/c9b535dd422413a9f06414ef8158f07c1b650462)), closes [#184](https://github.com/sprintertech/sprinter-sdk/issues/184)

## [0.3.9](https://github.com/sprintertech/sprinter-sdk/compare/docs-v0.3.8...docs-v0.3.9) (2025-07-08)


### Bug Fixes

* adding requestID to solve api ([#178](https://github.com/sprintertech/sprinter-sdk/issues/178)) ([0438cc9](https://github.com/sprintertech/sprinter-sdk/commit/0438cc921ab037988d46f43f61bfe481d7a0e8b1))
- adding requestID to solve api ([#178](https://github.com/sprintertech/sprinter-sdk/issues/178)) ([0438cc9](https://github.com/sprintertech/sprinter-sdk/commit/0438cc921ab037988d46f43f61bfe481d7a0e8b1))

## [0.3.8](https://github.com/sprintertech/sprinter-sdk/compare/docs-v0.3.7...docs-v0.3.8) (2025-06-30)

Expand Down
32 changes: 31 additions & 1 deletion docs/docs/03-Solve/get-route-v-1.api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,14 @@ Calculate the optimal swap route and generate execution parameters for a token e
},
required: false,
},
{
in: "query",
name: "timeout",
description:
"Optional timeout in milliseconds. If set, returns the best pathfinder result within the timeout window. Must be a positive integer.",
schema: { type: "integer", format: "int32", minimum: 1 },
required: false,
},
]}
></ParamsDetails>

Expand Down Expand Up @@ -114,7 +122,15 @@ Calculate the optimal swap route and generate execution parameters for a token e
schema: {
description: "Successfully created route with execution details",
type: "object",
required: ["requestId", "amountOut", "minAmountOut", "target", "callData"],
required: [
"requestId",
"amountOut",
"minAmountOut",
"target",
"callData",
"gasUsed",
"gasLimit",
],
properties: {
requestId: {
description:
Expand Down Expand Up @@ -151,6 +167,20 @@ Calculate the optimal swap route and generate execution parameters for a token e
pattern: "^0x[a-fA-F0-9]*$",
title: "Bytes",
},
gasUsed: {
description: "Actual gas consumed by the swap simulation",
type: "integer",
format: "uint64",
minimum: 0,
example: 180000,
},
gasLimit: {
description: "Recommended gas limit for the swap transaction (gasUsed * 1.3)",
type: "integer",
format: "uint64",
minimum: 0,
example: 234000,
},
},
title: "RouteV1Response",
},
Expand Down
183 changes: 0 additions & 183 deletions docs/src/api/generated/solve/get-quote.api.mdx

This file was deleted.

Loading
Loading