├── .gitattributes ├── .github └── workflows │ └── config.yaml ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── shell.nix └── src ├── DssProxy.sol ├── DssProxy.t.sol ├── DssProxyRegistry.sol └── DssProxyRegistry.t.sol /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity 2 | -------------------------------------------------------------------------------- /.github/workflows/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/.github/workflows/config.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /out 2 | /.vscode 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/Makefile -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/shell.nix -------------------------------------------------------------------------------- /src/DssProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/src/DssProxy.sol -------------------------------------------------------------------------------- /src/DssProxy.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/src/DssProxy.t.sol -------------------------------------------------------------------------------- /src/DssProxyRegistry.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/src/DssProxyRegistry.sol -------------------------------------------------------------------------------- /src/DssProxyRegistry.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky-ecosystem/dss-proxy/HEAD/src/DssProxyRegistry.t.sol --------------------------------------------------------------------------------