tokenPrice()
function tokenPrice(Token token) external view returns (Price memory price);
struct Price {
uint128 sourceAmount;
uint128 targetAmount;
}Function Arguments
Name
Type
Description
Example
tokenPrice(
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 //token address
)
returns (
{
uint128 sourceAmount;
uint128 targetAmount;
}
)
Last updated