@augmentedfinance/protocol-v1
Version:
Augmented Protocol smart contracts
137 lines • 3.32 kB
JavaScript
;
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
exports.IChainlinkAggregatorFactory = void 0;
const ethers_1 = require("ethers");
class IChainlinkAggregatorFactory {
static connect(address, signerOrProvider) {
return new ethers_1.Contract(address, _abi, signerOrProvider);
}
}
exports.IChainlinkAggregatorFactory = IChainlinkAggregatorFactory;
const _abi = [
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: "int256",
name: "current",
type: "int256",
},
{
indexed: true,
internalType: "uint256",
name: "roundId",
type: "uint256",
},
{
indexed: false,
internalType: "uint256",
name: "timestamp",
type: "uint256",
},
],
name: "AnswerUpdated",
type: "event",
},
{
anonymous: false,
inputs: [
{
indexed: true,
internalType: "uint256",
name: "roundId",
type: "uint256",
},
{
indexed: true,
internalType: "address",
name: "startedBy",
type: "address",
},
],
name: "NewRound",
type: "event",
},
{
inputs: [
{
internalType: "uint256",
name: "roundId",
type: "uint256",
},
],
name: "getAnswer",
outputs: [
{
internalType: "int256",
name: "",
type: "int256",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [
{
internalType: "uint256",
name: "roundId",
type: "uint256",
},
],
name: "getTimestamp",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "latestAnswer",
outputs: [
{
internalType: "int256",
name: "",
type: "int256",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "latestRound",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
],
stateMutability: "view",
type: "function",
},
{
inputs: [],
name: "latestTimestamp",
outputs: [
{
internalType: "uint256",
name: "",
type: "uint256",
},
],
stateMutability: "view",
type: "function",
},
];
//# sourceMappingURL=IChainlinkAggregatorFactory.js.map