-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
4,242 additions
and
582 deletions.
There are no files selected for viewing
277 changes: 277 additions & 0 deletions
277
broadcast/DeployFactories.s.sol/421614/run-1704309785.json
Large diffs are not rendered by default.
Oops, something went wrong.
277 changes: 277 additions & 0 deletions
277
broadcast/DeployFactories.s.sol/421614/run-1704309787.json
Large diffs are not rendered by default.
Oops, something went wrong.
433 changes: 433 additions & 0 deletions
433
broadcast/DeployFactories.s.sol/421614/run-1704310254.json
Large diffs are not rendered by default.
Oops, something went wrong.
433 changes: 433 additions & 0 deletions
433
broadcast/DeployFactories.s.sol/421614/run-1704310255.json
Large diffs are not rendered by default.
Oops, something went wrong.
379 changes: 326 additions & 53 deletions
379
broadcast/DeployFactories.s.sol/421614/run-latest.json
Large diffs are not rendered by default.
Oops, something went wrong.
305 changes: 305 additions & 0 deletions
305
broadcast/DeployOracles.s.sol/421614/run-1704310386.json
Large diffs are not rendered by default.
Oops, something went wrong.
305 changes: 305 additions & 0 deletions
305
broadcast/DeployOracles.s.sol/421614/run-1704310387.json
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// SPDX-License-Identifier: GPL-3.0 | ||
pragma solidity 0.7.6; | ||
|
||
import {IBaseOracle} from '@interfaces/oracles/IBaseOracle.sol'; | ||
|
||
interface IChainlinkRelayerFactory { | ||
// --- Events --- | ||
event NewChainlinkRelayer(address indexed _chainlinkRelayer, address _aggregator, uint256 _staleThreshold); | ||
|
||
function deployChainlinkRelayer(address _aggregator, uint256 _staleThreshold) external returns (IBaseOracle _relayer); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// SPDX-License-Identifier: GPL-3.0 | ||
pragma solidity 0.7.6; | ||
|
||
import {IBaseOracle} from '@interfaces/oracles/IBaseOracle.sol'; | ||
|
||
interface IDenominatedOracleFactory { | ||
// --- Events --- | ||
event NewDenominatedOracle( | ||
address indexed _denominatedOracle, address _priceSource, address _denominationPriceSource, bool _inverted | ||
); | ||
|
||
function deployDenominatedOracle( | ||
IBaseOracle _priceSource, | ||
IBaseOracle _denominationPriceSource, | ||
bool _inverted | ||
) external returns (IBaseOracle _denominatedOracle); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters