Skip to content

Instantly share code, notes, and snippets.

View web3jason's full-sized avatar

web3jason

  • Joined Mar 25, 2026
View GitHub Profile
@web3jason
web3jason / IAggregatorV3.sol
Last active April 17, 2026 17:59
PRTY Token Redesign — Security Audit Package (Pairty) | 6 contracts, 160 tests, full scope doc | Request for audit quote
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/// @title IAggregatorV3 — Minimal Chainlink AggregatorV3 interface
interface IAggregatorV3 {
function latestRoundData()
external
view
returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);