-
Notifications
You must be signed in to change notification settings - Fork 13
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 #972 from Setheum-Labs/qingdao1
Qingdao1
- Loading branch information
Showing
252 changed files
with
12,018 additions
and
2,553 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,21 +1,9 @@ | ||
[submodule "chassis/lib-sesl/predeploy-contracts"] | ||
path = chassis/lib-sesl/predeploy-contracts | ||
[submodule "highway/predeploy-contracts"] | ||
path = highway/predeploy-contracts | ||
url = https://github.com/Setheum-Labs/predeploy-contracts.git | ||
[submodule "chassis/lib-sesl/Stem"] | ||
path = chassis/lib-sesl/Stem | ||
url = https://github.com/Setheum-Labs/Stem | ||
[submodule "chassis/lib-sesl/Sial"] | ||
path = chassis/lib-sesl/Sial | ||
url = https://github.com/Setheum-Labs/Sial | ||
[submodule "chassis/lib-sesl/khalifa-ecdp"] | ||
path = chassis/lib-sesl/khalifa-ecdp | ||
url = https://github.com/Khalifa-Blockchain/ECDP | ||
[submodule "chassis/lib-sesl/khalifa-dex"] | ||
path = chassis/lib-sesl/khalifa-dex | ||
url = https://github.com/Khalifa-Blockchain/DEX | ||
[submodule "chassis/lib-sesl/Dagestan"] | ||
path = chassis/lib-sesl/Dagestan | ||
url = https://github.com/Setheum-Labs/Dagestan | ||
[submodule "chassis/lib-sesl/khalifa-liquid"] | ||
path = chassis/lib-sesl/khalifa-liquid | ||
url = https://github.com/Khalifa-Blockchain/liquid | ||
[submodule "highway/EthicalDeFi"] | ||
path = highway/EthicalDeFi | ||
url = https://Setheum-Labs/EthicalDeFi.git | ||
[submodule "highway/orml"] | ||
path = highway/orml | ||
url = https://github.com/Slixon-Technologies/open-runtime-module-library |
216 changes: 108 additions & 108 deletions
216
templates/module-weight-template.hbs → .maintain/module-weight-template.hbs
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,108 +1,108 @@ | ||
// بِسْمِ اللَّهِ الرَّحْمَنِ الرَّحِيم | ||
|
||
// This file is part of Setheum. | ||
|
||
// Copyright (C) 2019-Present Setheum Labs. | ||
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0 | ||
|
||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
//! Autogenerated weights for {{pallet}} | ||
//! | ||
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION {{version}} | ||
//! DATE: {{date}}, STEPS: {{cmd.steps}}, REPEAT: {{cmd.repeat}}, LOW RANGE: {{cmd.lowest_range_values}}, HIGH RANGE: {{cmd.highest_range_values}} | ||
//! EXECUTION: {{cmd.execution}}, WASM-EXECUTION: {{cmd.wasm_execution}}, CHAIN: {{cmd.chain}}, DB CACHE: {{cmd.db_cache}} | ||
|
||
// Executed Command: | ||
{{#each args as |arg|~}} | ||
// {{arg}} | ||
{{/each}} | ||
|
||
#![cfg_attr(rustfmt, rustfmt_skip)] | ||
#![allow(unused_parens)] | ||
#![allow(unused_imports)] | ||
#![allow(clippy::unnecessary_cast)] | ||
|
||
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}}; | ||
use sp_std::marker::PhantomData; | ||
|
||
/// Weight functions needed for {{pallet}}. | ||
pub trait WeightInfo { | ||
{{~#each benchmarks as |benchmark|}} | ||
fn {{benchmark.name~}} | ||
( | ||
{{~#each benchmark.components as |c| ~}} | ||
{{c.name}}: u32, {{/each~}} | ||
) -> Weight; | ||
{{~/each}} | ||
} | ||
|
||
/// Weights for {{pallet}} using the Setheum node and recommended hardware. | ||
pub struct SetheumWeight<T>(PhantomData<T>); | ||
impl<T: frame_system::Config> WeightInfo for SetheumWeight<T> { | ||
{{~#each benchmarks as |benchmark|}} | ||
fn {{benchmark.name~}} | ||
( | ||
{{~#each benchmark.components as |c| ~}} | ||
{{~#if (not c.is_used)}}_{{/if}}{{c.name}}: u32, {{/each~}} | ||
) -> Weight { | ||
({{underscore benchmark.base_weight}} as Weight) | ||
{{~#each benchmark.component_weight as |cw|}} | ||
// Standard Error: {{underscore cw.error}} | ||
.saturating_add(({{underscore cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight)) | ||
{{~/each}} | ||
{{~#if (ne benchmark.base_reads "0")}} | ||
.saturating_add(T::DbWeight::get().reads({{benchmark.base_reads}} as Weight)) | ||
{{~/if}} | ||
{{~#each benchmark.component_reads as |cr|}} | ||
.saturating_add(T::DbWeight::get().reads(({{cr.slope}} as Weight).saturating_mul({{cr.name}} as Weight))) | ||
{{~/each}} | ||
{{~#if (ne benchmark.base_writes "0")}} | ||
.saturating_add(T::DbWeight::get().writes({{benchmark.base_writes}} as Weight)) | ||
{{~/if}} | ||
{{~#each benchmark.component_writes as |cw|}} | ||
.saturating_add(T::DbWeight::get().writes(({{cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight))) | ||
{{~/each}} | ||
} | ||
{{~/each}} | ||
} | ||
|
||
// For backwards compatibility and tests | ||
impl WeightInfo for () { | ||
{{~#each benchmarks as |benchmark|}} | ||
fn {{benchmark.name~}} | ||
( | ||
{{~#each benchmark.components as |c| ~}} | ||
{{~#if (not c.is_used)}}_{{/if}}{{c.name}}: u32, {{/each~}} | ||
) -> Weight { | ||
({{underscore benchmark.base_weight}} as Weight) | ||
{{~#each benchmark.component_weight as |cw|}} | ||
// Standard Error: {{underscore cw.error}} | ||
.saturating_add(({{underscore cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight)) | ||
{{~/each}} | ||
{{~#if (ne benchmark.base_reads "0")}} | ||
.saturating_add(RocksDbWeight::get().reads({{benchmark.base_reads}} as Weight)) | ||
{{~/if}} | ||
{{~#each benchmark.component_reads as |cr|}} | ||
.saturating_add(RocksDbWeight::get().reads(({{cr.slope}} as Weight).saturating_mul({{cr.name}} as Weight))) | ||
{{~/each}} | ||
{{~#if (ne benchmark.base_writes "0")}} | ||
.saturating_add(RocksDbWeight::get().writes({{benchmark.base_writes}} as Weight)) | ||
{{~/if}} | ||
{{~#each benchmark.component_writes as |cw|}} | ||
.saturating_add(RocksDbWeight::get().writes(({{cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight))) | ||
{{~/each}} | ||
} | ||
{{~/each}} | ||
} | ||
// بِسْمِ اللَّهِ الرَّحْمَنِ الرَّحِيم | ||
|
||
// This file is part of Setheum. | ||
|
||
// Copyright (C) 2019-Present Setheum Labs. | ||
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0 | ||
|
||
// This program is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
|
||
//! Autogenerated weights for {{pallet}} | ||
//! | ||
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION {{version}} | ||
//! DATE: {{date}}, STEPS: {{cmd.steps}}, REPEAT: {{cmd.repeat}}, LOW RANGE: {{cmd.lowest_range_values}}, HIGH RANGE: {{cmd.highest_range_values}} | ||
//! EXECUTION: {{cmd.execution}}, WASM-EXECUTION: {{cmd.wasm_execution}}, CHAIN: {{cmd.chain}}, DB CACHE: {{cmd.db_cache}} | ||
|
||
// Executed Command: | ||
{{#each args as |arg|~}} | ||
// {{arg}} | ||
{{/each}} | ||
|
||
#![cfg_attr(rustfmt, rustfmt_skip)] | ||
#![allow(unused_parens)] | ||
#![allow(unused_imports)] | ||
#![allow(clippy::unnecessary_cast)] | ||
|
||
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}}; | ||
use sp_std::marker::PhantomData; | ||
|
||
/// Weight functions needed for {{pallet}}. | ||
pub trait WeightInfo { | ||
{{~#each benchmarks as |benchmark|}} | ||
fn {{benchmark.name~}} | ||
( | ||
{{~#each benchmark.components as |c| ~}} | ||
{{c.name}}: u32, {{/each~}} | ||
) -> Weight; | ||
{{~/each}} | ||
} | ||
|
||
/// Weights for {{pallet}} using the Setheum node and recommended hardware. | ||
pub struct SetheumWeight<T>(PhantomData<T>); | ||
impl<T: frame_system::Config> WeightInfo for SetheumWeight<T> { | ||
{{~#each benchmarks as |benchmark|}} | ||
fn {{benchmark.name~}} | ||
( | ||
{{~#each benchmark.components as |c| ~}} | ||
{{~#if (not c.is_used)}}_{{/if}}{{c.name}}: u32, {{/each~}} | ||
) -> Weight { | ||
({{underscore benchmark.base_weight}} as Weight) | ||
{{~#each benchmark.component_weight as |cw|}} | ||
// Standard Error: {{underscore cw.error}} | ||
.saturating_add(({{underscore cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight)) | ||
{{~/each}} | ||
{{~#if (ne benchmark.base_reads "0")}} | ||
.saturating_add(T::DbWeight::get().reads({{benchmark.base_reads}} as Weight)) | ||
{{~/if}} | ||
{{~#each benchmark.component_reads as |cr|}} | ||
.saturating_add(T::DbWeight::get().reads(({{cr.slope}} as Weight).saturating_mul({{cr.name}} as Weight))) | ||
{{~/each}} | ||
{{~#if (ne benchmark.base_writes "0")}} | ||
.saturating_add(T::DbWeight::get().writes({{benchmark.base_writes}} as Weight)) | ||
{{~/if}} | ||
{{~#each benchmark.component_writes as |cw|}} | ||
.saturating_add(T::DbWeight::get().writes(({{cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight))) | ||
{{~/each}} | ||
} | ||
{{~/each}} | ||
} | ||
|
||
// For backwards compatibility and tests | ||
impl WeightInfo for () { | ||
{{~#each benchmarks as |benchmark|}} | ||
fn {{benchmark.name~}} | ||
( | ||
{{~#each benchmark.components as |c| ~}} | ||
{{~#if (not c.is_used)}}_{{/if}}{{c.name}}: u32, {{/each~}} | ||
) -> Weight { | ||
({{underscore benchmark.base_weight}} as Weight) | ||
{{~#each benchmark.component_weight as |cw|}} | ||
// Standard Error: {{underscore cw.error}} | ||
.saturating_add(({{underscore cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight)) | ||
{{~/each}} | ||
{{~#if (ne benchmark.base_reads "0")}} | ||
.saturating_add(RocksDbWeight::get().reads({{benchmark.base_reads}} as Weight)) | ||
{{~/if}} | ||
{{~#each benchmark.component_reads as |cr|}} | ||
.saturating_add(RocksDbWeight::get().reads(({{cr.slope}} as Weight).saturating_mul({{cr.name}} as Weight))) | ||
{{~/each}} | ||
{{~#if (ne benchmark.base_writes "0")}} | ||
.saturating_add(RocksDbWeight::get().writes({{benchmark.base_writes}} as Weight)) | ||
{{~/if}} | ||
{{~#each benchmark.component_writes as |cw|}} | ||
.saturating_add(RocksDbWeight::get().writes(({{cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight))) | ||
{{~/each}} | ||
} | ||
{{~/each}} | ||
} |
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.
Oops, something went wrong.