Removed unnecesary libs
This commit is contained in:
@@ -1,7 +1,37 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
pragma solidity ^0.8.20;
|
||||
|
||||
import {AggregatorV3Interface} from "@chainlink/contracts/src/v0.8/shared/interfaces/AggregatorV3Interface.sol";
|
||||
interface AggregatorV3Interface {
|
||||
function decimals() external view returns (uint8);
|
||||
|
||||
function description() external view returns (string memory);
|
||||
|
||||
function version() external view returns (uint256);
|
||||
|
||||
function getRoundData(
|
||||
uint80 _roundId
|
||||
)
|
||||
external
|
||||
view
|
||||
returns (
|
||||
uint80 roundId,
|
||||
int256 answer,
|
||||
uint256 startedAt,
|
||||
uint256 updatedAt,
|
||||
uint80 answeredInRound
|
||||
);
|
||||
|
||||
function latestRoundData()
|
||||
external
|
||||
view
|
||||
returns (
|
||||
uint80 roundId,
|
||||
int256 answer,
|
||||
uint256 startedAt,
|
||||
uint256 updatedAt,
|
||||
uint80 answeredInRound
|
||||
);
|
||||
}
|
||||
|
||||
contract SargaTrxUsdPrice {
|
||||
AggregatorV3Interface internal _priceFeed;
|
||||
|
Reference in New Issue
Block a user