Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: UNICENSE
pragma solidity 0.8.30;

import { IWeth9 } from './interfaces/IWeth9.sol';
import { IWeth9 } from './IWeth9.sol';
import { OpenOracle } from './openOracle/OpenOracle.sol';
import { ReputationToken } from '../ReputationToken.sol';
import { ISecurityPool } from './interfaces/ISecurityPool.sol';
Expand Down
6 changes: 3 additions & 3 deletions solidity/ts/testsuite/simulator/utils/deployments.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { peripherals_interfaces_IAugur_IAugur, IERC20_IERC20, peripherals_interfaces_IWeth9_IWeth9, peripherals_Auction_Auction, peripherals_CompleteSet_CompleteSet, peripherals_openOracle_OpenOracle_OpenOracle, peripherals_PriceOracleManagerAndOperatorQueuer_PriceOracleManagerAndOperatorQueuer, peripherals_SecurityPool_SecurityPool, peripherals_SecurityPoolFactory_SecurityPoolFactory, ReputationToken_ReputationToken, Zoltar_Zoltar, peripherals_SecurityPoolUtils_SecurityPoolUtils } from '../../../types/contractArtifact.js'
import { peripherals_IAugur_IAugur, IERC20_IERC20, peripherals_IWeth9_IWeth9, peripherals_Auction_Auction, peripherals_CompleteSet_CompleteSet, peripherals_openOracle_OpenOracle_OpenOracle, peripherals_PriceOracleManagerAndOperatorQueuer_PriceOracleManagerAndOperatorQueuer, peripherals_SecurityPool_SecurityPool, peripherals_SecurityPoolFactory_SecurityPoolFactory, ReputationToken_ReputationToken, Zoltar_Zoltar, peripherals_SecurityPoolUtils_SecurityPoolUtils } from '../../../types/contractArtifact.js'
import { QuestionOutcome } from '../types/types.js'
import { addressString } from './bigint.js'
import { ETHEREUM_LOGS_LOGGER_ADDRESS, GENESIS_REPUTATION_TOKEN, TEST_ADDRESSES, WETH_ADDRESS } from './constants.js'
Expand Down Expand Up @@ -67,11 +67,11 @@ export const getDeployments = (genesisUniverse: bigint, questionId: bigint, secu
deploymentName: 'OpenOracle',
address: getOpenOracleAddress()
}, {
abi: peripherals_interfaces_IWeth9_IWeth9.abi,
abi: peripherals_IWeth9_IWeth9.abi,
deploymentName: 'WETH',
address: WETH_ADDRESS
}, {
abi: peripherals_interfaces_IAugur_IAugur.abi,
abi: peripherals_IAugur_IAugur.abi,
deploymentName: 'Augur',
address: '0x23916a8f5c3846e3100e5f587ff14f3098722f5d'
}, {
Expand Down