Skip to content
This repository has been archived by the owner on Jan 16, 2022. It is now read-only.

Deploy scripts #99

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7902992
conftest alterations to test uni mock alone
Nov 17, 2021
ed89c83
removed print statements from reflect feed
Nov 17, 2021
c4fa332
script to deploy uni mock to ropsten with all mock data
Nov 17, 2021
408a6c9
reversed feed before loading observations
Nov 17, 2021
dabb1ac
mock feed for axs plus minor improvements
Nov 17, 2021
f0cf6aa
rennamed weth_axs feed deploy
Nov 17, 2021
533c875
rennamed weth dai feed deploy
Nov 17, 2021
0973fd4
deploy ovl token
Nov 17, 2021
e3f1a58
deploy mothership
Nov 17, 2021
9499c2f
deploy eth dai market
Nov 17, 2021
4af8f5a
deploy ovl collateral
Nov 17, 2021
79eaf01
rennamed scripts to conform to python imports
Nov 17, 2021
49e3ddb
combined all deploy scripts into rough draft deployment script
Nov 17, 2021
31c9d54
deleted deployment scripts in separate files
Nov 17, 2021
c4e32ea
updated local deploy script
Nov 19, 2021
a3d643f
corrected path for feeds in local deploy
Nov 19, 2021
ee3fcc8
remove print_logs
bigboydiamonds Nov 19, 2021
30de795
removed prints
Nov 19, 2021
f1c8afd
adjusted deploy script to have real mocked erc20 in feed
Dec 1, 2021
cf7d126
fixed deployment bug setting the market feed to the depth feed
Dec 1, 2021
b2098ed
added wbtc_weth feed
Dec 2, 2021
6bdcada
script to test log multiplexing
Dec 2, 2021
98280e6
research.
Dec 3, 2021
ee7bf61
progress.
Dec 3, 2021
d1e3fd1
removed test test
Dec 3, 2021
1008a70
flake8 linted scripts dir
Dec 3, 2021
3766a16
finished linting
Dec 3, 2021
8f1d7de
removed new solidity contracts
Dec 4, 2021
7aa40a1
removed extra print statement
Dec 4, 2021
4f93aca
logging gas usage
Dec 14, 2021
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
324 changes: 0 additions & 324 deletions contracts/OverlayV1UniswapV3MultiplexMarket.sol

This file was deleted.

6 changes: 6 additions & 0 deletions contracts/mocks/UniswapV3FactoryMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ contract UniswapV3FactoryMock {

}

function allPoolsLength () public view returns (uint) {

return allPools.length;

}

function loadObservations(
address pool,
OracleMock.Observation[] calldata _observations,
Expand Down
Loading