Uniswap V 2 Price Provider

UniswapV2 price provider This implementation can be affected by price manipulation due to not using TWAP For development purposes only

Methods

DEFAULT_ADMIN_ROLE

function DEFAULT_ADMIN_ROLE() external view returns (bytes32)

Returns

Name
Type
Description

_0

bytes32

undefined

DESCRIPTION

function DESCRIPTION() external view returns (string)

Returns

Name
Type
Description

_0

string

undefined

MODERATOR_ROLE

function MODERATOR_ROLE() external view returns (bytes32)

Returns

Name
Type
Description

_0

bytes32

undefined

changeActive

Parameters

Name
Type
Description

token

address

undefined

active

bool

undefined

getEvaluation

Parameters

Name
Type
Description

token

address

undefined

tokenAmount

uint256

undefined

Returns

Name
Type
Description

evaluation

uint256

undefined

getEvaluationSigned

return the evaluation in $ of tokenAmount with signed price

Parameters

Name
Type
Description

token

address

the address of token to get evaluation in $

tokenAmount

uint256

the amount of token to get evaluation. Amount is scaled by 10 in power token decimals

priceMantissa

uint256

the price multiplied by priceDecimals. The dimension of priceMantissa should be $/token

validTo

uint256

the timestamp in seconds, when price is gonna be not valid.

signature

bytes

the ECDSA sign on eliptic curve secp256k1.

Returns

Name
Type
Description

evaluation

uint256

undefined

getPrice

Parameters

Name
Type
Description

token

address

undefined

Returns

Name
Type
Description

price

uint256

undefined

priceDecimals

uint8

undefined

getPriceDecimals

Returns

Name
Type
Description

_0

uint8

undefined

getPriceSigned

Parameters

Name
Type
Description

token

address

undefined

priceMantissa

uint256

undefined

validTo

uint256

undefined

signature

bytes

undefined

Returns

Name
Type
Description

_priceMantissa

uint256

undefined

_priceDecimals

uint8

undefined

getReserves

Parameters

Name
Type
Description

uniswapPair

address

undefined

tokenA

address

undefined

tokenB

address

undefined

Returns

Name
Type
Description

reserveA

uint256

undefined

reserveB

uint256

undefined

getRoleAdmin

Returns the admin role that controls role. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.

Parameters

Name
Type
Description

role

bytes32

undefined

Returns

Name
Type
Description

_0

bytes32

undefined

grandModerator

Parameters

Name
Type
Description

newModerator

address

undefined

grantRole

Grants role to account. If account had not been already granted role, emits a {RoleGranted} event. Requirements: - the caller must have role's admin role.

Parameters

Name
Type
Description

role

bytes32

undefined

account

address

undefined

hasRole

Returns true if account has been granted role.

Parameters

Name
Type
Description

role

bytes32

undefined

account

address

undefined

Returns

Name
Type
Description

_0

bool

undefined

initialize

isActive

Parameters

Name
Type
Description

token

address

undefined

Returns

Name
Type
Description

_0

bool

undefined

isListed

Parameters

Name
Type
Description

token

address

undefined

Returns

Name
Type
Description

_0

bool

undefined

renounceRole

Revokes role from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted role, emits a {RoleRevoked} event. Requirements: - the caller must be account.

Parameters

Name
Type
Description

role

bytes32

undefined

account

address

undefined

revokeModerator

Parameters

Name
Type
Description

moderator

address

undefined

revokeRole

Revokes role from account. If account had been granted role, emits a {RoleRevoked} event. Requirements: - the caller must have role's admin role.

Parameters

Name
Type
Description

role

bytes32

undefined

account

address

undefined

setTokenAndPair

Parameters

Name
Type
Description

token

address

undefined

pair

address

undefined

supportsInterface

See {IERC165-supportsInterface}.

Parameters

Name
Type
Description

interfaceId

bytes4

undefined

Returns

Name
Type
Description

_0

bool

undefined

uniswapV2Metadata

Parameters

Name
Type
Description

_0

address

undefined

Returns

Name
Type
Description

isActive

bool

undefined

pair

address

undefined

pairAsset

address

undefined

tokenDecimals

uint8

undefined

pairAssetDecimals

uint8

undefined

usdDecimals

Returns

Name
Type
Description

_0

uint8

undefined

Events

ChangeActive

Parameters

Name
Type
Description

who indexed

address

undefined

token indexed

address

undefined

active

bool

undefined

GrandModeratorRole

Parameters

Name
Type
Description

who indexed

address

undefined

newModerator indexed

address

undefined

RevokeModeratorRole

Parameters

Name
Type
Description

who indexed

address

undefined

moderator indexed

address

undefined

RoleAdminChanged

Parameters

Name
Type
Description

role indexed

bytes32

undefined

previousAdminRole indexed

bytes32

undefined

newAdminRole indexed

bytes32

undefined

RoleGranted

Parameters

Name
Type
Description

role indexed

bytes32

undefined

account indexed

address

undefined

sender indexed

address

undefined

RoleRevoked

Parameters

Name
Type
Description

role indexed

bytes32

undefined

account indexed

address

undefined

sender indexed

address

undefined

SetTokenAndPair

Parameters

Name
Type
Description

who indexed

address

undefined

token indexed

address

undefined

pair indexed

address

undefined

Last updated