Skip to content
This repository was archived by the owner on Mar 13, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
50549f1
extract `drml-rpc`
Aug 23, 2021
1b50a8b
support multi-runtime
Aug 24, 2021
6acdc32
refactor primitives
Aug 24, 2021
09beec0
update `CODEOWNERS`
Aug 24, 2021
0691120
eliminate warning
Aug 25, 2021
8babc99
license Pangolin code
Aug 25, 2021
d3d32e6
add Pangoro runtime
Aug 25, 2021
015c4e7
use 42 as ss58 prefix
Aug 25, 2021
ea0f2b1
fix typo
Aug 25, 2021
3723152
extract system & use multi-address
Aug 25, 2021
9d3c95f
extract aura
Aug 25, 2021
60e76e5
extract timestamp
Aug 25, 2021
3e385ed
extract balances
Aug 25, 2021
a153f5a
use empty implementation
Aug 25, 2021
fe37aa4
extract transaction payment
Aug 25, 2021
0d4dae1
extract session
Aug 25, 2021
0bc6c1b
extract grandpa
Aug 25, 2021
1aa2295
extract sudo
Aug 25, 2021
5f84769
fix compile
Aug 25, 2021
bdb9d17
extract bridge part
Aug 25, 2021
dddd55c
code cleaning part 1
Aug 25, 2021
0706455
code cleaning part 2
Aug 25, 2021
85d6fd5
code cleaning part 3
Aug 25, 2021
7d2696a
switch to `Babe`
Aug 25, 2021
6d200c3
simplify transaction payment
Aug 25, 2021
8e2005f
refactor service part 1
Aug 25, 2021
b762143
refactor service part 2
Aug 25, 2021
a906151
refactor service part 3
Aug 25, 2021
e0e1e72
refactor rpc for different services
Aug 26, 2021
f2abdc1
fix macro
Aug 26, 2021
8b790d9
add Pangoro service
Aug 26, 2021
006d88e
refactor service part 4
Aug 26, 2021
899ce8e
add license
Aug 26, 2021
b72d0cc
add Pangoro chain spec & refactor cli
Aug 26, 2021
867c867
prepare for merging
Aug 26, 2021
ba87444
merge & code cleaning
Aug 26, 2021
e672a5f
update types
Aug 26, 2021
ec15986
remove storage
Aug 26, 2021
6b2135e
build genesis
Aug 26, 2021
ca308e2
fix typo
Aug 26, 2021
872a81a
fix typo
Aug 26, 2021
967558d
format
Aug 26, 2021
e498fd6
update value
Aug 26, 2021
9a5b847
update index
Aug 26, 2021
e7eae6e
fix typo
Aug 26, 2021
57a5578
fix typo
Aug 26, 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
571 changes: 344 additions & 227 deletions Cargo.lock

Large diffs are not rendered by default.

17 changes: 11 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
[workspace]
members = [
"bin/node/cli",
"bin/node/bridge-primitives/pangolin",
"bin/node/primitives",
"bin/node/runtime/pangolin",
"bin/node/runtime/pangolin/src/constants",
"bin/node/runtime/pangolin/src/pallets/system/params",
"node/cli",
"node/primitives/common",
"node/primitives/bridge",
"node/rpc",
"node/runtime/pangolin",
"node/runtime/pangolin/src/constants",
"node/runtime/pangolin/src/pallets/system/params",
"node/runtime/pangoro",
"node/runtime/pangoro/src/constants",
"node/runtime/pangoro/src/pallets/system/params",
"node/service",
"client/dvm/db",
"client/dvm/mapping-sync",
"client/dvm/rpc",
Expand Down
136 changes: 0 additions & 136 deletions bin/node/cli/Cargo.toml

This file was deleted.

234 changes: 0 additions & 234 deletions bin/node/cli/src/command.rs

This file was deleted.

Loading