NOC/USD
Market ClosedNORTHROP GRUMMAN CORPORATION / US DOLLAR · Equity
Price
$521.82
Confidence (±)
±$1.24
±0.2377%
Last Update
13h ago
Quote
USD
Confidence Band
Pyth Feed ID
0x5f848f61c44e1c9b21ddac0fcac5536344e80ad21df3271c2f069f57229fab81
About the NOC/USD Pyth feed
The NOC/USD feed (NORTHROP GRUMMAN CORPORATION / US DOLLAR) is an aggregated equity price published on-chain by the Pyth Network — a first-party oracle sourcing quotes from institutional publishers including exchanges, market makers and trading firms. Each update carries a confidence interval (±), an exponent and a publish timestamp, currently around $521.82. PythFeeds streams this feed live from the Hermes API and surfaces its staleness so you can see exactly how fresh the oracle price is.
On-chain (Solidity)
// Read NOC/USD on-chain with the Pyth pull oracle
bytes32 constant NOC_USD =
0x5f848f61c44e1c9b21ddac0fcac5536344e80ad21df3271c2f069f57229fab81;
PythStructs.Price memory p =
pyth.getPriceNoOlderThan(NOC_USD, 60); // revert if >60s stale
// real price = p.price * 10 ** p.expoOff-chain (Hermes API)
// Fetch the latest NOC/USD price off-chain (Hermes REST)
const id = "0x5f848f61c44e1c9b21ddac0fcac5536344e80ad21df3271c2f069f57229fab81";
const res = await fetch(
`https://hermes.pyth.network/v2/updates/price/latest?ids[]=${id}&parsed=true`
);
const { parsed } = await res.json();
const p = parsed[0].price;
const price = Number(p.price) * 10 ** p.expo;