First attempt at showing chainlink eth/usd and fast gas price feeds info
This commit is contained in:
parent
5210599e39
commit
5f04ce8018
11
package-lock.json
generated
11
package-lock.json
generated
@ -8,6 +8,7 @@
|
|||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@chainlink/contracts": "^0.2.1",
|
||||||
"@craco/craco": "^6.2.0",
|
"@craco/craco": "^6.2.0",
|
||||||
"@fontsource/fira-code": "^4.5.0",
|
"@fontsource/fira-code": "^4.5.0",
|
||||||
"@fontsource/roboto": "^4.5.0",
|
"@fontsource/roboto": "^4.5.0",
|
||||||
@ -1203,6 +1204,11 @@
|
|||||||
"version": "0.2.3",
|
"version": "0.2.3",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/@chainlink/contracts": {
|
||||||
|
"version": "0.2.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@chainlink/contracts/-/contracts-0.2.1.tgz",
|
||||||
|
"integrity": "sha512-mAQgPQKiqW3tLMlp31NgcnXpwG3lttgKU0izAqKiirJ9LH7rQ+O0oHIVR5Qp2yuqgmfbLsgfdLo4GcVC8IFz3Q=="
|
||||||
|
},
|
||||||
"node_modules/@cnakazawa/watch": {
|
"node_modules/@cnakazawa/watch": {
|
||||||
"version": "1.0.4",
|
"version": "1.0.4",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
@ -19913,6 +19919,11 @@
|
|||||||
"@bcoe/v8-coverage": {
|
"@bcoe/v8-coverage": {
|
||||||
"version": "0.2.3"
|
"version": "0.2.3"
|
||||||
},
|
},
|
||||||
|
"@chainlink/contracts": {
|
||||||
|
"version": "0.2.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/@chainlink/contracts/-/contracts-0.2.1.tgz",
|
||||||
|
"integrity": "sha512-mAQgPQKiqW3tLMlp31NgcnXpwG3lttgKU0izAqKiirJ9LH7rQ+O0oHIVR5Qp2yuqgmfbLsgfdLo4GcVC8IFz3Q=="
|
||||||
|
},
|
||||||
"@cnakazawa/watch": {
|
"@cnakazawa/watch": {
|
||||||
"version": "1.0.4",
|
"version": "1.0.4",
|
||||||
"requires": {
|
"requires": {
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@chainlink/contracts": "^0.2.1",
|
||||||
"@craco/craco": "^6.2.0",
|
"@craco/craco": "^6.2.0",
|
||||||
"@fontsource/fira-code": "^4.5.0",
|
"@fontsource/fira-code": "^4.5.0",
|
||||||
"@fontsource/roboto": "^4.5.0",
|
"@fontsource/roboto": "^4.5.0",
|
||||||
|
79
src/PriceBox.tsx
Normal file
79
src/PriceBox.tsx
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
import React, { useState, useEffect, useMemo, useContext } from "react";
|
||||||
|
import { ethers } from "ethers";
|
||||||
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||||||
|
import { faGasPump } from "@fortawesome/free-solid-svg-icons";
|
||||||
|
import AggregatorV3Interface from "@chainlink/contracts/abi/v0.8/AggregatorV3Interface.json";
|
||||||
|
import { RuntimeContext } from "./useRuntime";
|
||||||
|
|
||||||
|
const ETH_FEED_DECIMALS = 8;
|
||||||
|
|
||||||
|
const PriceBox: React.FC = () => {
|
||||||
|
const { provider } = useContext(RuntimeContext);
|
||||||
|
const ethFeed = useMemo(
|
||||||
|
() =>
|
||||||
|
provider &&
|
||||||
|
new ethers.Contract("eth-usd.data.eth", AggregatorV3Interface, provider),
|
||||||
|
[provider]
|
||||||
|
);
|
||||||
|
const gasFeed = useMemo(
|
||||||
|
() =>
|
||||||
|
provider &&
|
||||||
|
new ethers.Contract(
|
||||||
|
"fast-gas-gwei.data.eth",
|
||||||
|
AggregatorV3Interface,
|
||||||
|
provider
|
||||||
|
),
|
||||||
|
[provider]
|
||||||
|
);
|
||||||
|
|
||||||
|
const [latestPriceData, setLatestPriceData] = useState<any>();
|
||||||
|
const [latestGasData, setLatestGasData] = useState<any>();
|
||||||
|
useEffect(() => {
|
||||||
|
if (!ethFeed || !gasFeed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const readData = async () => {
|
||||||
|
const [priceData, gasData] = await Promise.all([
|
||||||
|
ethFeed.latestRoundData(),
|
||||||
|
await gasFeed.latestRoundData(),
|
||||||
|
]);
|
||||||
|
setLatestPriceData(priceData);
|
||||||
|
setLatestGasData(gasData);
|
||||||
|
};
|
||||||
|
readData();
|
||||||
|
}, [ethFeed, gasFeed]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{latestPriceData && (
|
||||||
|
<div className="flex rounded-lg px-2 py-1 space-x-2 bg-gray-100 font-sans text-xs text-gray-800">
|
||||||
|
<span>
|
||||||
|
Eth: $
|
||||||
|
<span className="font-balance">
|
||||||
|
{ethers.utils.commify(
|
||||||
|
ethers.utils.formatUnits(
|
||||||
|
latestPriceData.answer,
|
||||||
|
ETH_FEED_DECIMALS
|
||||||
|
)
|
||||||
|
)}
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
{latestGasData && (
|
||||||
|
<>
|
||||||
|
<span>|</span>
|
||||||
|
<span className="text-gray-400">
|
||||||
|
<FontAwesomeIcon icon={faGasPump} size="1x" />
|
||||||
|
<span className="ml-1">
|
||||||
|
{ethers.utils.formatUnits(latestGasData.answer, "gwei")} Gwei
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default React.memo(PriceBox);
|
@ -1,6 +1,7 @@
|
|||||||
import React, { useState, useRef } from "react";
|
import React, { useState, useRef } from "react";
|
||||||
import { Link, useHistory } from "react-router-dom";
|
import { Link, useHistory } from "react-router-dom";
|
||||||
import useKeyboardShortcut from "use-keyboard-shortcut";
|
import useKeyboardShortcut from "use-keyboard-shortcut";
|
||||||
|
import PriceBox from "./PriceBox";
|
||||||
|
|
||||||
const Title: React.FC = () => {
|
const Title: React.FC = () => {
|
||||||
const [search, setSearch] = useState<string>();
|
const [search, setSearch] = useState<string>();
|
||||||
@ -41,6 +42,8 @@ const Title: React.FC = () => {
|
|||||||
<span>Otterscan</span>
|
<span>Otterscan</span>
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
|
<div className="flex items-baseline space-x-3">
|
||||||
|
<PriceBox />
|
||||||
<form
|
<form
|
||||||
className="flex"
|
className="flex"
|
||||||
onSubmit={handleSubmit}
|
onSubmit={handleSubmit}
|
||||||
@ -63,6 +66,7 @@ const Title: React.FC = () => {
|
|||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user