Add Parachain Template (#620)
* Add Canvas node as Parachain template * Remove `pallet-contracts` * Point to local Cumulus dependency * Use double quotes instead of single quotes * Get rid of GPL licensing * Remove references to Canvas * Get rid of warnings * Remove GLP-3 License copy-pasta file * Copy in README from `substrate-parachain-template` * Add mention of `polkadot-launch` tool * Add missing screenshot asset * Remove Canvas hidden files and scripts * Rename `template` to `parachain-template` * Remove a few more Canvas references * Add `pallet-template` * Get `pallet-template` compiling * Remove TODOs about Weights * Sort some dependencies * Remove contracts specific const * Change binary name back to `parachain-collator` * RustFmt * Fix mock tests * Purge sneaky whitespace * Add template pallet index to runtime Co-authored-by:Ricardo Rius <9488369+riusricardo@users.noreply.github.com> * Add force authoring to collator `polkadot-launch` config Co-authored-by:
Ricardo Rius <9488369+riusricardo@users.noreply.github.com> * Refer README readers to `substrate-parachain-template` * Remove license header in `build.rs` Co-authored-by:
Michael Müller <michi@parity.io> * Fix punctuation nitpick Co-authored-by:
Michael Müller <michi@parity.io> * Remove unused `lib.rs` file * Add note about Rococo network Co-authored-by:
Ricardo Rius <9488369+riusricardo@users.noreply.github.com> Co-authored-by:
Michael Müller <michi@parity.io>
Showing
- cumulus/Cargo.lock 132 additions, 0 deletionscumulus/Cargo.lock
- cumulus/Cargo.toml 5 additions, 3 deletionscumulus/Cargo.toml
- cumulus/parachain-template/LICENSE 24 additions, 0 deletionscumulus/parachain-template/LICENSE
- cumulus/parachain-template/README.md 14 additions, 0 deletionscumulus/parachain-template/README.md
- cumulus/parachain-template/node/Cargo.toml 95 additions, 0 deletionscumulus/parachain-template/node/Cargo.toml
- cumulus/parachain-template/node/build.rs 7 additions, 0 deletionscumulus/parachain-template/node/build.rs
- cumulus/parachain-template/node/src/chain_spec.rs 214 additions, 0 deletionscumulus/parachain-template/node/src/chain_spec.rs
- cumulus/parachain-template/node/src/cli.rs 121 additions, 0 deletionscumulus/parachain-template/node/src/cli.rs
- cumulus/parachain-template/node/src/command.rs 405 additions, 0 deletionscumulus/parachain-template/node/src/command.rs
- cumulus/parachain-template/node/src/main.rs 14 additions, 0 deletionscumulus/parachain-template/node/src/main.rs
- cumulus/parachain-template/node/src/rpc.rs 57 additions, 0 deletionscumulus/parachain-template/node/src/rpc.rs
- cumulus/parachain-template/node/src/service.rs 492 additions, 0 deletionscumulus/parachain-template/node/src/service.rs
- cumulus/parachain-template/pallets/template/Cargo.toml 37 additions, 0 deletionscumulus/parachain-template/pallets/template/Cargo.toml
- cumulus/parachain-template/pallets/template/README.md 1 addition, 0 deletionscumulus/parachain-template/pallets/template/README.md
- cumulus/parachain-template/pallets/template/src/benchmarking.rs 20 additions, 0 deletions...s/parachain-template/pallets/template/src/benchmarking.rs
- cumulus/parachain-template/pallets/template/src/lib.rs 105 additions, 0 deletionscumulus/parachain-template/pallets/template/src/lib.rs
- cumulus/parachain-template/pallets/template/src/mock.rs 63 additions, 0 deletionscumulus/parachain-template/pallets/template/src/mock.rs
- cumulus/parachain-template/pallets/template/src/tests.rs 20 additions, 0 deletionscumulus/parachain-template/pallets/template/src/tests.rs
- cumulus/parachain-template/polkadot-launch/config.json 39 additions, 0 deletionscumulus/parachain-template/polkadot-launch/config.json
- cumulus/parachain-template/runtime/Cargo.toml 144 additions, 0 deletionscumulus/parachain-template/runtime/Cargo.toml
Please register or sign in to comment