├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── laboratory-js ├── .gitignore ├── block_explorer.js ├── nodemon.json ├── package-lock.json ├── package.json ├── src │ ├── index.ts │ └── lab.ts ├── tsconfig.json └── yarn-error.log ├── laboratory ├── Cargo.lock ├── Cargo.toml ├── README.md ├── UDPATE.md ├── remote-ext-elections-phragmen │ ├── .DS_Store │ ├── Cargo.lock │ ├── Cargo.toml │ ├── js │ │ ├── .DS_Store │ │ ├── .gitignore │ │ ├── build │ │ │ └── index.js │ │ ├── effective_kusama.csv │ │ ├── effective_polkadot.csv │ │ ├── elections.kusama.json │ │ ├── elections.polkadot.json │ │ ├── kusama-preimage-0xca8474fb509d5a4254342130a3462da5c6140c5aacc8ea4b49d3af3ab04126b5.bin │ │ ├── nodemon.json │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── polkadot-preimage-0x683b144f5dc9fe9875261fc75ffb49c7d047669a887ab639d7c322783cf6593d.bin │ │ ├── src │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── yarn-error.log │ │ └── yarn.lock │ └── src │ │ ├── elections.kusama │ │ ├── elections.polkadot │ │ └── main.rs ├── remote-ext-phragmms │ ├── Cargo.toml │ ├── kusama.csv │ ├── polkadot.csv │ └── src │ │ └── main.rs └── src │ └── main.rs ├── migration-dry-run ├── .cargo │ └── config ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── rustfmt.toml └── src │ └── main.rs ├── offline-election ├── Cargo.toml ├── PHRAGMEN.md ├── README.md ├── cli.yml ├── output.json ├── override_example.json ├── src │ ├── main.rs │ ├── network.rs │ ├── primitives.rs │ ├── subcommands │ │ ├── current.rs │ │ ├── dangling_nominators.rs │ │ ├── elections_phragmen.rs │ │ ├── mod.rs │ │ ├── nominator_check.rs │ │ ├── staking.rs │ │ └── validator_check.rs │ └── timing.rs └── tests │ └── cli.rs ├── polkadot-mock-runtime ├── Cargo.lock ├── Cargo.toml └── src │ ├── common.rs │ └── kusama_mock.rs ├── remote-externalities ├── .gitignore ├── Cargo.toml ├── README.md ├── src │ └── lib.rs └── test_cache ├── rustfmt.toml ├── staking-miner ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── js │ ├── .gitignore │ ├── nodemon.json │ ├── package.json │ ├── src │ │ └── index.ts │ └── tsconfig.json └── src │ ├── main.rs │ ├── mock_runtime.rs │ └── offchain_miner.rs ├── sub-du ├── Cargo.toml ├── README.md ├── src │ └── main.rs └── tests │ └── cli.rs ├── sub-storage ├── .DS_Store ├── Cargo.toml ├── README.md ├── build.rs └── src │ ├── helpers.rs │ └── lib.rs ├── sub-tokens ├── Cargo.toml ├── README.md └── src │ └── lib.rs ├── test_all.sh └── update_cargo.js /.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | log 3 | out 4 | .vscode 5 | node_modules 6 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/README.md -------------------------------------------------------------------------------- /laboratory-js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | build 4 | 5 | -------------------------------------------------------------------------------- /laboratory-js/block_explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory-js/block_explorer.js -------------------------------------------------------------------------------- /laboratory-js/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory-js/nodemon.json -------------------------------------------------------------------------------- /laboratory-js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory-js/package-lock.json -------------------------------------------------------------------------------- /laboratory-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory-js/package.json -------------------------------------------------------------------------------- /laboratory-js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory-js/src/index.ts -------------------------------------------------------------------------------- /laboratory-js/src/lab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory-js/src/lab.ts -------------------------------------------------------------------------------- /laboratory-js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory-js/tsconfig.json -------------------------------------------------------------------------------- /laboratory-js/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory-js/yarn-error.log -------------------------------------------------------------------------------- /laboratory/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/Cargo.lock -------------------------------------------------------------------------------- /laboratory/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/Cargo.toml -------------------------------------------------------------------------------- /laboratory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/README.md -------------------------------------------------------------------------------- /laboratory/UDPATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/UDPATE.md -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/.DS_Store -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/Cargo.lock -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/Cargo.toml -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/.DS_Store -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/build/index.js -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/effective_kusama.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/effective_kusama.csv -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/effective_polkadot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/effective_polkadot.csv -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/elections.kusama.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/elections.kusama.json -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/elections.polkadot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/elections.polkadot.json -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/kusama-preimage-0xca8474fb509d5a4254342130a3462da5c6140c5aacc8ea4b49d3af3ab04126b5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/kusama-preimage-0xca8474fb509d5a4254342130a3462da5c6140c5aacc8ea4b49d3af3ab04126b5.bin -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/nodemon.json -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/package-lock.json -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/package.json -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/polkadot-preimage-0x683b144f5dc9fe9875261fc75ffb49c7d047669a887ab639d7c322783cf6593d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/polkadot-preimage-0x683b144f5dc9fe9875261fc75ffb49c7d047669a887ab639d7c322783cf6593d.bin -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/src/index.ts -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/tsconfig.json -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/yarn-error.log -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/js/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/js/yarn.lock -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/src/elections.kusama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/src/elections.kusama -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/src/elections.polkadot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/src/elections.polkadot -------------------------------------------------------------------------------- /laboratory/remote-ext-elections-phragmen/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-elections-phragmen/src/main.rs -------------------------------------------------------------------------------- /laboratory/remote-ext-phragmms/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-phragmms/Cargo.toml -------------------------------------------------------------------------------- /laboratory/remote-ext-phragmms/kusama.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-phragmms/kusama.csv -------------------------------------------------------------------------------- /laboratory/remote-ext-phragmms/polkadot.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-phragmms/polkadot.csv -------------------------------------------------------------------------------- /laboratory/remote-ext-phragmms/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/remote-ext-phragmms/src/main.rs -------------------------------------------------------------------------------- /laboratory/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/laboratory/src/main.rs -------------------------------------------------------------------------------- /migration-dry-run/.cargo/config: -------------------------------------------------------------------------------- 1 | paths = [ "../../substrate" ] 2 | 3 | -------------------------------------------------------------------------------- /migration-dry-run/.gitignore: -------------------------------------------------------------------------------- 1 | .cargo 2 | *.bin 3 | -------------------------------------------------------------------------------- /migration-dry-run/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/migration-dry-run/Cargo.lock -------------------------------------------------------------------------------- /migration-dry-run/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/migration-dry-run/Cargo.toml -------------------------------------------------------------------------------- /migration-dry-run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/migration-dry-run/README.md -------------------------------------------------------------------------------- /migration-dry-run/rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/migration-dry-run/rustfmt.toml -------------------------------------------------------------------------------- /migration-dry-run/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/migration-dry-run/src/main.rs -------------------------------------------------------------------------------- /offline-election/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/Cargo.toml -------------------------------------------------------------------------------- /offline-election/PHRAGMEN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/PHRAGMEN.md -------------------------------------------------------------------------------- /offline-election/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/README.md -------------------------------------------------------------------------------- /offline-election/cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/cli.yml -------------------------------------------------------------------------------- /offline-election/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/output.json -------------------------------------------------------------------------------- /offline-election/override_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/override_example.json -------------------------------------------------------------------------------- /offline-election/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/main.rs -------------------------------------------------------------------------------- /offline-election/src/network.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/network.rs -------------------------------------------------------------------------------- /offline-election/src/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/primitives.rs -------------------------------------------------------------------------------- /offline-election/src/subcommands/current.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/subcommands/current.rs -------------------------------------------------------------------------------- /offline-election/src/subcommands/dangling_nominators.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/subcommands/dangling_nominators.rs -------------------------------------------------------------------------------- /offline-election/src/subcommands/elections_phragmen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/subcommands/elections_phragmen.rs -------------------------------------------------------------------------------- /offline-election/src/subcommands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/subcommands/mod.rs -------------------------------------------------------------------------------- /offline-election/src/subcommands/nominator_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/subcommands/nominator_check.rs -------------------------------------------------------------------------------- /offline-election/src/subcommands/staking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/subcommands/staking.rs -------------------------------------------------------------------------------- /offline-election/src/subcommands/validator_check.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/subcommands/validator_check.rs -------------------------------------------------------------------------------- /offline-election/src/timing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/src/timing.rs -------------------------------------------------------------------------------- /offline-election/tests/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/offline-election/tests/cli.rs -------------------------------------------------------------------------------- /polkadot-mock-runtime/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/polkadot-mock-runtime/Cargo.lock -------------------------------------------------------------------------------- /polkadot-mock-runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/polkadot-mock-runtime/Cargo.toml -------------------------------------------------------------------------------- /polkadot-mock-runtime/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/polkadot-mock-runtime/src/common.rs -------------------------------------------------------------------------------- /polkadot-mock-runtime/src/kusama_mock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/polkadot-mock-runtime/src/kusama_mock.rs -------------------------------------------------------------------------------- /remote-externalities/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | -------------------------------------------------------------------------------- /remote-externalities/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/remote-externalities/Cargo.toml -------------------------------------------------------------------------------- /remote-externalities/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/remote-externalities/README.md -------------------------------------------------------------------------------- /remote-externalities/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/remote-externalities/src/lib.rs -------------------------------------------------------------------------------- /remote-externalities/test_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/remote-externalities/test_cache -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /staking-miner/.gitignore: -------------------------------------------------------------------------------- 1 | key* 2 | era*_solution 3 | -------------------------------------------------------------------------------- /staking-miner/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/Cargo.lock -------------------------------------------------------------------------------- /staking-miner/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/Cargo.toml -------------------------------------------------------------------------------- /staking-miner/js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/js/.gitignore -------------------------------------------------------------------------------- /staking-miner/js/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/js/nodemon.json -------------------------------------------------------------------------------- /staking-miner/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/js/package.json -------------------------------------------------------------------------------- /staking-miner/js/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/js/src/index.ts -------------------------------------------------------------------------------- /staking-miner/js/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/js/tsconfig.json -------------------------------------------------------------------------------- /staking-miner/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/src/main.rs -------------------------------------------------------------------------------- /staking-miner/src/mock_runtime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/src/mock_runtime.rs -------------------------------------------------------------------------------- /staking-miner/src/offchain_miner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/staking-miner/src/offchain_miner.rs -------------------------------------------------------------------------------- /sub-du/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-du/Cargo.toml -------------------------------------------------------------------------------- /sub-du/README.md: -------------------------------------------------------------------------------- 1 | # sub-du 2 | -------------------------------------------------------------------------------- /sub-du/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-du/src/main.rs -------------------------------------------------------------------------------- /sub-du/tests/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-du/tests/cli.rs -------------------------------------------------------------------------------- /sub-storage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-storage/.DS_Store -------------------------------------------------------------------------------- /sub-storage/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-storage/Cargo.toml -------------------------------------------------------------------------------- /sub-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-storage/README.md -------------------------------------------------------------------------------- /sub-storage/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-storage/build.rs -------------------------------------------------------------------------------- /sub-storage/src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-storage/src/helpers.rs -------------------------------------------------------------------------------- /sub-storage/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-storage/src/lib.rs -------------------------------------------------------------------------------- /sub-tokens/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-tokens/Cargo.toml -------------------------------------------------------------------------------- /sub-tokens/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-tokens/README.md -------------------------------------------------------------------------------- /sub-tokens/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/sub-tokens/src/lib.rs -------------------------------------------------------------------------------- /test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/test_all.sh -------------------------------------------------------------------------------- /update_cargo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paritytech/substrate-debug-kit/HEAD/update_cargo.js --------------------------------------------------------------------------------