This repository has been archived by the owner on Nov 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Load external, builtin & local apps in parallel #3340
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[ | ||
{ | ||
"id": "0xf9f2d620c2e08f83e45555247146c62185e4ab7cf82a4b9002a265a0d020348f", | ||
"url": "basiccoin", | ||
"name": "Token Deployment", | ||
"description": "Deploy new basic tokens that you are able to send around", | ||
"author": "Parity Team <admin@ethcore.io>", | ||
"version": "1.0.0" | ||
}, | ||
{ | ||
"id": "0xd1adaede68d344519025e2ff574650cd99d3830fe6d274c7a7843cdc00e17938", | ||
"url": "registry", | ||
"name": "Registry", | ||
"description": "A global registry of addresses on the network", | ||
"author": "Parity Team <admin@ethcore.io>", | ||
"version": "1.0.0" | ||
}, | ||
{ | ||
"id": "0x0a8048117e51e964628d0f2d26342b3cd915248b59bcce2721e1d05f5cfa2208", | ||
"url": "tokenreg", | ||
"name": "Token Registry", | ||
"description": "A registry of transactable tokens on the network", | ||
"author": "Parity Team <admin@ethcore.io>", | ||
"version": "1.0.0" | ||
}, | ||
{ | ||
"id": "0xf49089046f53f5d2e5f3513c1c32f5ff57d986e46309a42d2b249070e4e72c46", | ||
"url": "signaturereg", | ||
"name": "Method Registry", | ||
"description": "A registry of method signatures for lookups on transactions", | ||
"author": "Parity Team <admin@ethcore.io>", | ||
"version": "1.0.0" | ||
}, | ||
{ | ||
"id": "0x058740ee9a5a3fb9f1cfa10752baec87e09cc45cd7027fd54708271aca300c75", | ||
"url": "githubhint", | ||
"name": "GitHub Hint", | ||
"description": "A mapping of GitHub URLs to hashes for use in contracts as references", | ||
"author": "Parity Team <admin@ethcore.io>", | ||
"version": "1.0.0", | ||
"secure": true | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not using the
store
package that is installed ?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We actually have an issue logged to rework the localStorage - I prefer to do it properly everywhere and set the standard to doing it piecemeal and forgetting about the rest. (So basically when creating the MobX store didn't attempt re-invent the code that was there. Neither will I do so in this PR - it is focussed on solving the issue linked.)
Actually if we did that when we introduced the package, it would be known, now with 2 different approaches there are inconsistencies in the codebase.