-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from trackback-blockchain/feature/implementati…
…on_cleanup Implementation cleanup
- Loading branch information
Showing
41 changed files
with
2,217 additions
and
4,298 deletions.
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 |
---|---|---|
@@ -1,8 +1,23 @@ | ||
binop_separator = "Front" | ||
brace_style = "SameLineWhere" | ||
edition = "2018" | ||
format_code_in_doc_comments = true | ||
imports_granularity = "Preserve" | ||
imports_layout = "Mixed" | ||
indent_style = "Block" | ||
match_arm_leading_pipes = "Always" | ||
# Basic | ||
hard_tabs = true | ||
max_width = 100 | ||
use_small_heuristics = "Max" | ||
# Imports | ||
imports_granularity = "Crate" | ||
reorder_imports = true | ||
# Consistency | ||
newline_style = "Unix" | ||
# Format comments | ||
comment_width = 100 | ||
wrap_comments = true | ||
# Misc | ||
chain_width = 80 | ||
spaces_around_ranges = false | ||
binop_separator = "Back" | ||
reorder_impl_items = false | ||
match_arm_leading_pipes = "Preserve" | ||
match_arm_blocks = false | ||
match_block_trailing_comma = true | ||
trailing_comma = "Vertical" | ||
trailing_semicolon = false | ||
use_field_init_shorthand = true |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
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,18 @@ | ||
# TrackBack Node Limitations (Minimum Viable Product). | ||
|
||
|
||
## Disclaimer | ||
* This node created as minimum viable product | ||
* Do not use ina production environment | ||
* Released for test purposes only | ||
|
||
## Limitations | ||
* No [token](https://docs.substrate.io/how-to-guides/v3/basics/mint-token/) economic models around managing Decentralised Identifiers | ||
* No staking rewards | ||
* Default configuration has 2 validators and a not well known node ( 3 node network ) | ||
* OnChain data will recycle after 6 weeks ( subject to change ) | ||
* Does not have the complete functionality for [DIDComms](https://identity.foundation/didcomm-messaging/spec/) | ||
* Covers the functionality for creation, revocation, update and retrieve a DID only | ||
* Provides support for Ledger based DIDs only. | ||
* Does not cover Ledger Middleware DIDs, Peer DIDs, Static DIDs and Alternative DIDs | ||
* Tight bindings between a Controller and the Chain limited to default accounts |
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
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
use substrate_build_script_utils::{generate_cargo_keys, rerun_if_git_head_changed}; | ||
|
||
fn main() { | ||
generate_cargo_keys(); | ||
rerun_if_git_head_changed(); | ||
generate_cargo_keys(); | ||
rerun_if_git_head_changed(); | ||
} |
Empty file.
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 |
---|---|---|
|
@@ -93,5 +93,4 @@ | |
"key": "5FA9nQDVg267DEd8m1ZypXLBnvN7SFxYwV7ndqSYGiN9TTpu" | ||
} | ||
} | ||
} | ||
} | ||
}, |
Oops, something went wrong.