Skip to content
This repository was archived by the owner on Feb 21, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
29f08ab
Update runtime to match that of the `substrate-parachain-template`
HCastano Aug 30, 2021
d50cef9
Update runtime TOML file to match that from `substrate-parachain-temp…
HCastano Aug 30, 2021
993d62e
Add some fixes for `master` branch code
HCastano Aug 30, 2021
53ae1fe
Use patched dependencies for Substrate, Polkadot, and Cumulus
HCastano Sep 2, 2021
ee1a336
Update runtime after downgrading Substrate deps
HCastano Sep 2, 2021
99237f0
Copy service file over from `substrate-parachain-template`
HCastano Sep 2, 2021
aa89512
Copy CLI file over from `substrate-parachain-template`
HCastano Sep 2, 2021
56d3320
Copy Command file over from `substrate-parachain-template`
HCastano Sep 2, 2021
fc0a457
Copy ChainSpec file over from `substrate-parachain-template`
HCastano Sep 2, 2021
b1d8818
Update ChainSpec file to be slightly more Canvas node specific
HCastano Sep 2, 2021
674b98c
Add lib file to node
HCastano Sep 2, 2021
de3d824
Get RPC extension file compiling
HCastano Sep 2, 2021
3c3c87f
Try adding RPC to Cumulus service
HCastano Sep 2, 2021
b05ecb3
Use opaque types in RPC
HCastano Sep 3, 2021
a15d653
Hook up contracts RPC
HCastano Sep 3, 2021
98de855
Copy `rustfmt` config from `substrate-parachain-template`
HCastano Sep 3, 2021
be314ae
Format repo
HCastano Sep 3, 2021
570f458
Remove old monetary units
HCastano Sep 3, 2021
a7a50fb
Address most remaining TODO items
HCastano Sep 3, 2021
9ac79fe
Add missing license header
HCastano Sep 3, 2021
aac2f41
Change binary name back to `canvas`
HCastano Sep 6, 2021
ecd8f97
Use less sketchy Substrate branch name
HCastano Sep 6, 2021
c04743a
Remove default node feature
HCastano Sep 6, 2021
a7c4e9b
Add path to binary section
HCastano Sep 6, 2021
0a59241
Use experimental Cargo resolver
HCastano Sep 6, 2021
79e7169
Revert Substrate branch change
HCastano Sep 6, 2021
a11b57a
Clean up contracts related imports in TOML file
HCastano Sep 6, 2021
0254de3
Set `pallet-contracts` state rent related params to zero
HCastano Sep 6, 2021
41c83e8
Don't use unstable contract features by default
HCastano Sep 6, 2021
3edfdd4
Update Substrate dependencies in README
HCastano Sep 6, 2021
08ce160
Update Substrate branch name
HCastano Sep 6, 2021
e24d0b5
Update GitHub dependency references
HCastano Sep 6, 2021
6d157e3
Update `ChainType` and chain names
HCastano Sep 6, 2021
693de48
Update `contract-pallet` constants
HCastano Sep 6, 2021
521e940
Remove `testnet-1.json` file
HCastano Sep 6, 2021
aee43ca
Attach issue number to TODO comment
HCastano Sep 6, 2021
c03a3c9
Minor readme fix
cmichi Sep 7, 2021
c545540
Remove outdated usage info
cmichi Sep 7, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
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
normalize_comments = true
normalize_doc_attributes = true

# Misc
chain_width = 80
spaces_around_ranges = false
Expand All @@ -20,6 +22,6 @@ match_arm_blocks = false
match_block_trailing_comma = true
trailing_comma = "Vertical"
trailing_semicolon = false
use_field_init_shorthand = true

# Canvas specific
license_template_path = "FILE_HEADER"
Loading