For the complete documentation index, see llms.txt. This page is also available as Markdown.

Utils

getAdjustPrice

Rounds down price input to two significant digits to adjust it for strike price. Assumes 18 decimal places (e.g., ETH price 1500 as 1500 * 10**18).

function getAdjustPrice(uint256 price) pure returns (uint256 adjustedPrice)

Params:

Name

Type

Description

price

uint256

The input price

Returns:

Name

Type

Description

adjustedPrice

uint256

The adjusted price

Last updated

Was this helpful?