Skip to content

Instantly share code, notes, and snippets.

/-

Created September 22, 2017 12:56
Show Gist options
  • Save anonymous/db7ee885040ee55b02baaddb742f153d to your computer and use it in GitHub Desktop.
Save anonymous/db7ee885040ee55b02baaddb742f153d to your computer and use it in GitHub Desktop.
contracts
├── assets
│   ├── AssetInterface.sol
│   ├── AssetRegistrarInterface.sol
│   ├── AssetRegistrar.sol
│   ├── Asset.sol
│   ├── EtherToken.sol
│   └── PreminedAsset.sol
├── competition
│   └── Competition.sol
├── datafeeds
│   ├── DataFeedInterface.sol
│   ├── DataFeed.sol
│   └── DataFeed.sol.orig
├── dependencies
│   ├── BackupOwned.sol
│   ├── DBC.sol
│   ├── ERC20Interface.sol
│   ├── ERC20.sol
│   ├── Logger.sol
│   ├── Owned.sol
│   └── Permissioned.sol
├── exchange
│   ├── adapter
│   │   └── simpleAdapter.sol
│   ├── ExchangeAdapter.sol.orig
│   ├── ExchangeInterface.sol
│   └── thirdparty
│   ├── EtherDelta.sol
│   └── SimpleMarket.sol
├── FundHistory.sol
├── FundInterface.sol
├── Fund.sol
├── governance
│   ├── Governance.sol
│   └── Version.sol
├── libraries
│   ├── rewards.sol
│   └── safeMath.sol
├── Migrations.sol
├── participation
│   ├── ParticipationInterface.sol
│   ├── ParticipationOpen.sol
│   └── Participation.sol
├── riskmgmt
│   ├── RiskMgmtInterface.sol
│   ├── RiskMgmt.sol
│   ├── RMLiquidityProvider.sol
│   └── RMMakeOrders.sol
└── sphere
├── SphereInterface.sol
└── Sphere.sol
12 directories, 39 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment