Backend Price Provider
Backend price verifier.
Methods
DEFAULT_ADMIN_ROLE
Returns
_0
bytes32
undefined
DESCRIPTION
Returns
_0
string
undefined
TRUSTED_BACKEND_ROLE
Returns
_0
bytes32
undefined
backendMetadata
Parameters
_0
address
undefined
Returns
isListed
bool
undefined
isActive
bool
undefined
changeActive
Parameters
token
address
undefined
active
bool
undefined
getEthSignedMessageHash
step. Backend formatting the message and get hash of this message.
returns the keccak256 of formatted message
Parameters
messageHash
bytes32
the keccak256 of message
Returns
_0
bytes32
undefined
getEvaluation
Parameters
token
address
undefined
tokenAmount
uint256
undefined
Returns
evaluation
uint256
undefined
getEvaluationSigned
return the evaluation in $ of tokenAmount
with signed price
Parameters
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
evaluation
uint256
undefined
getMessageHash
step. Backend creates offchain data and get hash of this data. This data calls message.
returns the keccak256 of concatenated input data
Parameters
token
address
the address of asset
priceMantissa
uint256
the price of asset that include decimals
validTo
uint256
the unix timestamp in seconds that define the validity of given price to validTo
timestamp
Returns
_0
bytes32
undefined
getPrice
Returns the latest asset price and price decimals
Parameters
token
address
the token address
Returns
price
uint256
undefined
priceDecimals
uint8
undefined
getPriceDecimals
Returns
_0
uint8
undefined
getPriceSigned
Parameters
token
address
undefined
priceMantissa
uint256
undefined
validTo
uint256
undefined
signature
bytes
undefined
Returns
_priceMantissa
uint256
undefined
priceDecimals
uint8
undefined
getRoleAdmin
Returns the admin role that controls role
. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}.
Parameters
role
bytes32
undefined
Returns
_0
bytes32
undefined
grandTrustedBackendRole
Parameters
newTrustedBackend
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
role
bytes32
undefined
account
address
undefined
hasRole
Returns true
if account
has been granted role
.
Parameters
role
bytes32
undefined
account
address
undefined
Returns
_0
bool
undefined
initialize
isActive
Parameters
token
address
undefined
Returns
_0
bool
undefined
isListed
Parameters
token
address
undefined
Returns
_0
bool
undefined
recoverSigner
returns the signer of ethSignedMessageHash
Parameters
ethSignedMessageHash
bytes32
undefined
signature
bytes
undefined
Returns
_0
address
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
role
bytes32
undefined
account
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
role
bytes32
undefined
account
address
undefined
revokeTrustedBackendRole
Parameters
trustedBackend
address
undefined
setToken
Parameters
token
address
undefined
supportsInterface
See {IERC165-supportsInterface}.
Parameters
interfaceId
bytes4
undefined
Returns
_0
bool
undefined
usdDecimals
Returns
_0
uint8
undefined
verify
step. Smart contract verify the message (tuple)
returns true if the message is signed by trusted backend. Else returns false.
Parameters
token
address
the address of asset
priceMantissa
uint256
the price of asset that include decimals
validTo
uint256
the unix timestamp in seconds that define the validity of given price to validTo
timestamp
signature
bytes
the sign of message.
Returns
_0
bool
undefined
Events
ChangeActive
Parameters
who indexed
address
undefined
token indexed
address
undefined
active
bool
undefined
GrandTrustedBackendRole
Parameters
who indexed
address
undefined
newTrustedBackend indexed
address
undefined
RevokeTrustedBackendRole
Parameters
who indexed
address
undefined
trustedBackend indexed
address
undefined
RoleAdminChanged
Parameters
role indexed
bytes32
undefined
previousAdminRole indexed
bytes32
undefined
newAdminRole indexed
bytes32
undefined
RoleGranted
Parameters
role indexed
bytes32
undefined
account indexed
address
undefined
sender indexed
address
undefined
RoleRevoked
Parameters
role indexed
bytes32
undefined
account indexed
address
undefined
sender indexed
address
undefined
SetToken
Parameters
who indexed
address
undefined
token indexed
address
undefined
Last updated