├── client_ui ├── client │ ├── main.css │ ├── main.js │ └── main.html ├── .meteor │ ├── .gitignore │ ├── release │ ├── platforms │ ├── .id │ ├── .finished-upgraders │ ├── packages │ └── versions ├── imports │ ├── ui │ │ ├── dasp_dashboard.css │ │ ├── dasp_registry.html │ │ ├── dasp_registry.coffee │ │ ├── dasp_dashboard.coffee │ │ └── dasp_dashboard.html │ ├── daemon │ │ ├── git-ipfs.coffee │ │ ├── git-ipfs.js │ │ └── git-ipfs.js.map │ ├── abi │ │ └── mainABI.json │ └── objects │ │ └── dasp.coffee └── package.json ├── .gitattributes ├── assets └── project_structure.png ├── dev ├── migrations │ ├── config.json │ ├── 1_initial_migration.js │ ├── 2_core_contracts.coffee │ ├── 2_core_contracts.js │ └── 2_core_contracts.js.map ├── truffle.js ├── package.json ├── contracts │ ├── token.sol │ ├── truffle_migrations.sol │ ├── repo_handler.sol │ ├── main.sol │ ├── vault.sol │ ├── dao.sol │ ├── member_handler.sol │ └── tasks_handler.sol ├── test │ ├── voting.js.map │ ├── voting.coffee │ └── voting.js └── build │ └── contracts │ └── Migrations.json ├── .idea ├── misc.xml ├── vcs.xml ├── preferred-vcs.xml ├── modules.xml ├── jsLibraryMappings.xml ├── WikiGit.iml ├── libraries │ ├── Generated_files.xml │ └── meteor_packages_auto_import_browser.xml └── watcherTasks.xml ├── .gitignore ├── Technical Details.md └── README.md /client_ui/client/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client_ui/.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /client_ui/.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.6 2 | -------------------------------------------------------------------------------- /client_ui/imports/ui/dasp_dashboard.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client_ui/.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /client_ui/imports/ui/dasp_registry.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | -------------------------------------------------------------------------------- /client_ui/client/main.js: -------------------------------------------------------------------------------- 1 | import '../imports/ui/dasp_dashboard.js'; -------------------------------------------------------------------------------- /client_ui/imports/ui/dasp_registry.coffee: -------------------------------------------------------------------------------- 1 | import 'dasp_registry.html' -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /client_ui/client/main.html: -------------------------------------------------------------------------------- 1 | 2 || Name | 105 |IPFS Hash | 106 |File Size | 107 |
|---|---|---|
| {{Name}} | 113 |{{Hash}} | 114 |{{Size}} | 115 |
| Title | 169 |ETH Reward | 170 |Reputation Reward | 171 |Token Reward | 172 |Current Workers | 173 |
|---|---|---|---|---|
| Title | 179 |ETH Reward | 180 |Reputation Reward | 181 |Token Reward | 182 |Current Workers | 183 |
| Multiplier | 235 |Token Address | 236 |Start Block Number | 237 |End Block Number | 238 |Current Donation | 239 |Donation Cap | 240 |
|---|---|---|---|---|---|
| {{multiplier}} | 246 |{{tokenAddress}} | 247 |{{startBlockNumber}} | 248 |{{endBlockNumber}} | 249 |{{wei_to_ether totalDonationInWeis}} Ether | 250 |{{wei_to_ether donationCapInWeis}} Ether | 251 |
| Amount | 270 |Currency | 271 |Receipient Address | 272 |Frozen Until Block | 273 |
|---|---|---|---|
| {{wei_to_ether amountInWeis}} Ether | 279 |{{currency_symbol tokenSymbol}} | 280 |{{to}} | 281 |{{frozenUntilBlock}} | 282 |
| Username | 322 |Group Name | 323 |Good Reputation | 324 |Bad Reputation | 325 |Address | 326 |
|---|---|---|---|---|
| {{userName}} | 332 |{{groupName}} | 333 |{{goodRep}} | 334 |{{badRep}} | 335 |{{userAddress}} | 336 |