├── .gitattributes ├── .gitignore ├── .gitmodules ├── Dappfile ├── LICENSE ├── Makefile ├── README.md ├── scripts ├── run-live-tests.sh └── run-tests.sh └── src ├── matching_market.sol ├── matching_market.t.sol ├── matching_market_live.t.sol ├── oracle ├── UniswapLibrary.sol └── UniswapSimplePriceOracle.sol ├── simple_market.sol └── simple_market.t.sol /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | *.sw* 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dappfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/Dappfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/README.md -------------------------------------------------------------------------------- /scripts/run-live-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/scripts/run-live-tests.sh -------------------------------------------------------------------------------- /scripts/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/scripts/run-tests.sh -------------------------------------------------------------------------------- /src/matching_market.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/src/matching_market.sol -------------------------------------------------------------------------------- /src/matching_market.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/src/matching_market.t.sol -------------------------------------------------------------------------------- /src/matching_market_live.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/src/matching_market_live.t.sol -------------------------------------------------------------------------------- /src/oracle/UniswapLibrary.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/src/oracle/UniswapLibrary.sol -------------------------------------------------------------------------------- /src/oracle/UniswapSimplePriceOracle.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/src/oracle/UniswapSimplePriceOracle.sol -------------------------------------------------------------------------------- /src/simple_market.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/src/simple_market.sol -------------------------------------------------------------------------------- /src/simple_market.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daifoundation/maker-otc/HEAD/src/simple_market.t.sol --------------------------------------------------------------------------------