Skip to content

Instantly share code, notes, and snippets.

/-

Created September 19, 2017 16:08
Show Gist options
  • Save anonymous/464361097bc95a00808baa5f95fbf29b to your computer and use it in GitHub Desktop.
Save anonymous/464361097bc95a00808baa5f95fbf29b to your computer and use it in GitHub Desktop.
src
├── assets
│   ├── AssetInterface.sol
│   ├── AssetRegistrar.sol
│   ├── Asset.sol
│   ├── EtherToken.sol
│   └── PreminedAsset.sol
├── datafeeds
│   ├── DataFeedInterface.sol
│   └── DataFeed.sol
├── dependencies
│   ├── BackupOwned.sol
│   ├── DBC.sol
│   ├── ERC20Interface.sol
│   ├── ERC20.sol
│   ├── Logger.sol
│   ├── Owned.sol
│   └── Permissioned.sol
├── exchange
│   ├── ExchangeInterface.sol
│   └── SimpleMarket.sol
├── governance
│   ├── Governance.sol
│   └── Version.sol
├── libraries
│   ├── calculate.sol
│   ├── rewards.sol
│   └── safeMath.sol
├── Migrations.sol
├── Owned.sol
├── participation
│   ├── ParticipationInterface.sol
│   └── Participation.sol
├── Protocol.sol
├── Protocol.t.sol
├── riskmgmt
│   ├── RiskMgmtInterface.sol
│   ├── RiskMgmt.sol
│   ├── RMLiquidityProvider.sol
│   └── RMMakeOrders.sol
├── sphere
│   ├── SphereInterface.sol
│   └── Sphere.sol
├── VaultInterface.sol
└── Vault.sol
9 directories, 35 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment