UNPKG

@augmentedfinance/protocol-v1

Version:

Augmented Protocol smart contracts

149 lines 3.75 kB
"use strict"; /* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ Object.defineProperty(exports, "__esModule", { value: true }); exports.IPriceFeedFactory = void 0; const ethers_1 = require("ethers"); class IPriceFeedFactory { static connect(address, signerOrProvider) { return new ethers_1.Contract(address, _abi, signerOrProvider); } } exports.IPriceFeedFactory = IPriceFeedFactory; const _abi = [ { anonymous: false, inputs: [ { indexed: false, internalType: "address", name: "asset", type: "address", }, { indexed: false, internalType: "uint256", name: "price", type: "uint256", }, { indexed: false, internalType: "uint256", name: "timestamp", type: "uint256", }, ], name: "AssetPriceUpdated", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "asset", type: "address", }, { indexed: false, internalType: "uint256", name: "index", type: "uint256", }, { indexed: true, internalType: "address", name: "underlyingSource", type: "address", }, { indexed: false, internalType: "uint256", name: "underlyingPrice", type: "uint256", }, { indexed: false, internalType: "uint256", name: "timestamp", type: "uint256", }, { indexed: false, internalType: "enum SourceType", name: "sourceType", type: "uint8", }, ], name: "DerivedAssetSourceUpdated", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "uint256", name: "price", type: "uint256", }, { indexed: false, internalType: "uint256", name: "timestamp", type: "uint256", }, ], name: "EthPriceUpdated", type: "event", }, { 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", }, { inputs: [], name: "updatePrice", outputs: [], stateMutability: "nonpayable", type: "function", }, ]; //# sourceMappingURL=IPriceFeedFactory.js.map