1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#![allow(unused_parens)]
#![allow(unused_imports)]
use frame_support::weights::{constants::RocksDbWeight as DbWeight, Weight};
impl crate::WeightInfo for () {
fn create() -> Weight {
(117_000_000 as Weight)
.saturating_add(DbWeight::get().reads(7 as Weight))
.saturating_add(DbWeight::get().writes(5 as Weight))
}
fn mint() -> Weight {
(87_000_000 as Weight)
.saturating_add(DbWeight::get().reads(8 as Weight))
.saturating_add(DbWeight::get().writes(4 as Weight))
}
fn burn() -> Weight {
(86_000_000 as Weight)
.saturating_add(DbWeight::get().reads(8 as Weight))
.saturating_add(DbWeight::get().writes(4 as Weight))
}
fn update_details() -> Weight {
(116_000_000 as Weight)
.saturating_add(DbWeight::get().reads(7 as Weight))
.saturating_add(DbWeight::get().writes(4 as Weight))
}
fn transfer() -> Weight {
(97_000_000 as Weight)
.saturating_add(DbWeight::get().reads(8 as Weight))
.saturating_add(DbWeight::get().writes(4 as Weight))
}
}