Coverage Report

Created: 2024-05-16 12:16

/__w/smoldot/smoldot/repo/lib/src/json_rpc/methods.rs
Line
Count
Source (jump to first uncovered line)
1
// Smoldot
2
// Copyright (C) 2019-2022  Parity Technologies (UK) Ltd.
3
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
4
5
// This program is free software: you can redistribute it and/or modify
6
// it under the terms of the GNU General Public License as published by
7
// the Free Software Foundation, either version 3 of the License, or
8
// (at your option) any later version.
9
10
// This program is distributed in the hope that it will be useful,
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
// GNU General Public License for more details.
14
15
// You should have received a copy of the GNU General Public License
16
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
//! List of requests and how to answer them.
19
20
use super::parse;
21
use crate::{header, identity::ss58};
22
23
use alloc::{
24
    borrow::Cow,
25
    boxed::Box,
26
    format,
27
    string::{String, ToString as _},
28
    vec,
29
    vec::Vec,
30
};
31
use core::fmt;
32
use hashbrown::HashMap;
33
34
/// Parses a JSON call (usually sent from a JSON-RPC client and received by a JSON-RPC server).
35
///
36
/// On success, returns a JSON-encoded identifier for that request that must be passed back when
37
/// emitting the response.
38
96
pub fn parse_jsonrpc_client_to_server(
39
96
    message: &str,
40
96
) -> Result<(&str, MethodCall), ParseClientToServerError> {
41
96
    let 
call_def95
= parse::parse_request(message).map_err(ParseClientToServerError::JsonRpcParse)
?1
;
42
43
    // No notification is supported by this server. If the `id` field is missing in the request,
44
    // assuming that this is a notification and return an appropriate error.
45
95
    let request_id = match call_def.id_json {
46
95
        Some(id) => id,
47
        None => {
48
0
            return Err(ParseClientToServerError::UnknownNotification(
49
0
                call_def.method,
50
0
            ))
51
        }
52
    };
53
54
95
    let 
call93
= match MethodCall::from_defs(call_def.method, call_def.params_json) {
55
93
        Ok(c) => c,
56
2
        Err(error) => return Err(ParseClientToServerError::Method { request_id, error }),
57
    };
58
59
93
    Ok((request_id, call))
60
96
}
_RNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methods30parse_jsonrpc_client_to_server
Line
Count
Source
38
2
pub fn parse_jsonrpc_client_to_server(
39
2
    message: &str,
40
2
) -> Result<(&str, MethodCall), ParseClientToServerError> {
41
2
    let call_def = parse::parse_request(message).map_err(ParseClientToServerError::JsonRpcParse)
?0
;
42
43
    // No notification is supported by this server. If the `id` field is missing in the request,
44
    // assuming that this is a notification and return an appropriate error.
45
2
    let request_id = match call_def.id_json {
46
2
        Some(id) => id,
47
        None => {
48
0
            return Err(ParseClientToServerError::UnknownNotification(
49
0
                call_def.method,
50
0
            ))
51
        }
52
    };
53
54
2
    let 
call1
= match MethodCall::from_defs(call_def.method, call_def.params_json) {
55
1
        Ok(c) => c,
56
1
        Err(error) => return Err(ParseClientToServerError::Method { request_id, error }),
57
    };
58
59
1
    Ok((request_id, call))
60
2
}
_RNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods30parse_jsonrpc_client_to_server
Line
Count
Source
38
94
pub fn parse_jsonrpc_client_to_server(
39
94
    message: &str,
40
94
) -> Result<(&str, MethodCall), ParseClientToServerError> {
41
94
    let 
call_def93
= parse::parse_request(message).map_err(ParseClientToServerError::JsonRpcParse)
?1
;
42
43
    // No notification is supported by this server. If the `id` field is missing in the request,
44
    // assuming that this is a notification and return an appropriate error.
45
93
    let request_id = match call_def.id_json {
46
93
        Some(id) => id,
47
        None => {
48
0
            return Err(ParseClientToServerError::UnknownNotification(
49
0
                call_def.method,
50
0
            ))
51
        }
52
    };
53
54
93
    let 
call92
= match MethodCall::from_defs(call_def.method, call_def.params_json) {
55
92
        Ok(c) => c,
56
1
        Err(error) => return Err(ParseClientToServerError::Method { request_id, error }),
57
    };
58
59
92
    Ok((request_id, call))
60
94
}
61
62
/// Error produced by [`parse_jsonrpc_client_to_server`].
63
0
#[derive(Debug, derive_more::Display)]
Unexecuted instantiation: _RNvXsf_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_24ParseClientToServerErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
Unexecuted instantiation: _RNvXsf_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_24ParseClientToServerErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
64
pub enum ParseClientToServerError<'a> {
65
    /// Could not parse the body of the message as a valid JSON-RPC message.
66
    JsonRpcParse(parse::ParseError),
67
    /// Call concerns a notification that isn't recognized.
68
    UnknownNotification(&'a str),
69
    /// JSON-RPC request is valid, but there is a problem related to the method being called.
70
    #[display(fmt = "{error}")]
71
    Method {
72
        /// Identifier of the request sent by the user.
73
        request_id: &'a str,
74
        /// Problem that happens.
75
        error: MethodError<'a>,
76
    },
77
}
78
79
/// Parses a JSON notification.
80
0
pub fn parse_notification(message: &str) -> Result<ServerToClient, ParseNotificationError> {
81
0
    let call_def = parse::parse_request(message).map_err(ParseNotificationError::JsonRpcParse)?;
82
0
    let call = ServerToClient::from_defs(call_def.method, call_def.params_json)
83
0
        .map_err(ParseNotificationError::Method)?;
84
0
    Ok(call)
85
0
}
Unexecuted instantiation: _RNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methods18parse_notification
Unexecuted instantiation: _RNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods18parse_notification
86
87
/// Error produced by [`parse_notification`].
88
0
#[derive(Debug, derive_more::Display)]
Unexecuted instantiation: _RNvXsh_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_22ParseNotificationErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
Unexecuted instantiation: _RNvXsh_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_22ParseNotificationErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
89
pub enum ParseNotificationError<'a> {
90
    /// Could not parse the body of the message as a valid JSON-RPC message.
91
    #[display(fmt = "{_0}")]
92
    JsonRpcParse(parse::ParseError),
93
    /// JSON-RPC request is valid, but there is a problem related to the method being called.
94
    #[display(fmt = "{_0}")]
95
    Method(MethodError<'a>),
96
}
97
98
/// Builds a JSON call, to send it to a JSON-RPC server.
99
///
100
/// # Panic
101
///
102
/// Panics if the `id_json` isn't valid JSON.
103
///
104
0
pub fn build_json_call_object_parameters(id_json: Option<&str>, method: MethodCall) -> String {
105
0
    method.to_json_request_object_parameters(id_json)
106
0
}
Unexecuted instantiation: _RNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methods33build_json_call_object_parameters
Unexecuted instantiation: _RNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods33build_json_call_object_parameters
107
108
/// See [`ParseClientToServerError::Method`] or [`ParseNotificationError::Method`].
109
0
#[derive(Debug, derive_more::Display)]
Unexecuted instantiation: _RNvXsj_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_11MethodErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
Unexecuted instantiation: _RNvXsj_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_11MethodErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
110
pub enum MethodError<'a> {
111
    /// Call concerns a method that isn't recognized.
112
    UnknownMethod(&'a str),
113
    /// Format the parameters is plain invalid.
114
    #[display(fmt = "Invalid parameters format when calling {rpc_method}")]
115
    InvalidParametersFormat {
116
        /// Name of the JSON-RPC method that was attempted to be called.
117
        rpc_method: &'static str,
118
    },
119
    /// Too many parameters have been passed to the function.
120
    #[display(fmt = "{rpc_method} expects {expected} parameters, but got {actual}")]
121
    TooManyParameters {
122
        /// Name of the JSON-RPC method that was attempted to be called.
123
        rpc_method: &'static str,
124
        /// Number of parameters that are expected to be received.
125
        expected: usize,
126
        /// Number of parameters actually received.
127
        actual: usize,
128
    },
129
    /// One of the parameters of the function call is invalid.
130
    #[display(
131
        fmt = "Parameter of index {parameter_index} is invalid when calling {rpc_method}: {error}"
132
    )]
133
    InvalidParameter {
134
        /// Name of the JSON-RPC method that was attempted to be called.
135
        rpc_method: &'static str,
136
        /// 0-based index of the parameter whose format is invalid.
137
        parameter_index: usize,
138
        /// Reason why it failed.
139
        error: InvalidParameterError,
140
    },
141
    /// The parameters of the function call are missing.
142
    MissingParameters {
143
        /// Name of the JSON-RPC method that was attempted to be called.
144
        rpc_method: &'static str,
145
    },
146
}
147
148
impl<'a> MethodError<'a> {
149
    /// Turns the error into a JSON string representing the error response to send back.
150
    ///
151
    /// `id_json` must be a valid JSON-formatted request identifier, the same the user
152
    /// passed in the request.
153
    ///
154
    /// # Panic
155
    ///
156
    /// Panics if `id_json` isn't valid JSON.
157
    ///
158
1
    pub fn to_json_error(&self, id_json: &str) -> String {
159
1
        parse::build_error_response(
160
1
            id_json,
161
1
            match self {
162
1
                MethodError::UnknownMethod(_) => parse::ErrorResponse::MethodNotFound,
163
                MethodError::InvalidParametersFormat { .. }
164
                | MethodError::TooManyParameters { .. }
165
                | MethodError::InvalidParameter { .. }
166
0
                | MethodError::MissingParameters { .. } => parse::ErrorResponse::InvalidParams,
167
            },
168
1
            None,
169
1
        )
170
1
    }
Unexecuted instantiation: _RNvMNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB2_11MethodError13to_json_error
_RNvMNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB2_11MethodError13to_json_error
Line
Count
Source
158
1
    pub fn to_json_error(&self, id_json: &str) -> String {
159
1
        parse::build_error_response(
160
1
            id_json,
161
1
            match self {
162
1
                MethodError::UnknownMethod(_) => parse::ErrorResponse::MethodNotFound,
163
                MethodError::InvalidParametersFormat { .. }
164
                | MethodError::TooManyParameters { .. }
165
                | MethodError::InvalidParameter { .. }
166
0
                | MethodError::MissingParameters { .. } => parse::ErrorResponse::InvalidParams,
167
            },
168
1
            None,
169
1
        )
170
1
    }
171
}
172
173
/// The parameter of a function call is invalid.
174
0
#[derive(Debug, derive_more::Display)]
Unexecuted instantiation: _RNvXsl_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_21InvalidParameterErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
Unexecuted instantiation: _RNvXsl_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_21InvalidParameterErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
175
pub struct InvalidParameterError(serde_json::Error);
176
177
/// Generates two enums, one for requests and one for responses, based on the list of supported
178
/// requests.
179
macro_rules! define_methods {
180
    ($rq_name:ident, $rp_name:ident $(<$l:lifetime>)*, $(
181
        $(#[$attrs:meta])*
182
        $name:ident ($($(#[rename = $p_rpc_name:expr])* $p_name:ident: $p_ty:ty),*) -> $ret_ty:ty
183
            $([$($alias:ident),*])*
184
        ,
185
    )*) => {
186
        #[allow(non_camel_case_types, non_snake_case)]
187
        #[derive(Debug, Clone)]
188
        pub enum $rq_name<'a> {
189
            $(
190
                $(#[$attrs])*
191
                $name {
192
                    $($p_name: $p_ty),*
193
                },
194
            )*
195
        }
196
197
        impl<'a> $rq_name<'a> {
198
            /// Returns a list of RPC method names of all the methods in the enum.
199
0
            pub fn method_names() -> impl ExactSizeIterator<Item = &'static str> {
200
0
                [$(stringify!($name)),*].iter().copied()
201
0
            }
Unexecuted instantiation: _RNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_10MethodCall12method_names
Unexecuted instantiation: _RNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_14ServerToClient12method_names
Unexecuted instantiation: _RNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_10MethodCall12method_names
Unexecuted instantiation: _RNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_14ServerToClient12method_names
202
203
            /// Returns the name of the method.
204
0
            pub fn name(&self) -> &'static str {
205
0
                match self {
206
0
                    $($rq_name::$name { .. } => stringify!($name),)*
207
                }
208
0
            }
Unexecuted instantiation: _RNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_10MethodCall4name
Unexecuted instantiation: _RNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_14ServerToClient4name
Unexecuted instantiation: _RNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_10MethodCall4name
Unexecuted instantiation: _RNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_14ServerToClient4name
209
210
            /// Returns an JSON object containing the list of the parameters of the method.
211
0
            pub fn params_to_json_object(&self) -> String {
212
0
                match self {
213
0
                    $($rq_name::$name { $($p_name),* } => {
214
                        #[derive(serde::Serialize)]
215
                        struct Params<'a> {
216
                            $(
217
                                $(#[serde(rename = $p_rpc_name)])*
218
                                $p_name: &'a $p_ty,
219
                            )*
220
221
                            // This `_dummy` field is necessary to not have an "unused lifetime"
222
                            // error if the parameters don't have a lifetime.
223
                            #[serde(skip)]
224
                            _dummy: core::marker::PhantomData<&'a ()>,
225
                        }
226
227
                        serde_json::to_string(&Params {
228
                            $($p_name,)*
229
0
                            _dummy: core::marker::PhantomData
230
0
                        }).unwrap()
231
                    },)*
232
                }
233
0
            }
Unexecuted instantiation: _RNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_10MethodCall21params_to_json_object
Unexecuted instantiation: _RNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_14ServerToClient21params_to_json_object
Unexecuted instantiation: _RNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_10MethodCall21params_to_json_object
Unexecuted instantiation: _RNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_14ServerToClient21params_to_json_object
234
235
            /// Builds a JSON request, to send it to a JSON-RPC server.
236
            ///
237
            /// # Panic
238
            ///
239
            /// Panics if the `id_json` isn't valid JSON.
240
            ///
241
0
            pub fn to_json_request_object_parameters(&self, id_json: Option<&str>) -> String {
242
0
                parse::build_request(&parse::Request {
243
0
                    id_json,
244
0
                    method: self.name(),
245
0
                    // Note that we never skip the `params` field, even if empty. This is an
246
0
                    // arbitrary choice.
247
0
                    params_json: Some(&self.params_to_json_object()),
248
0
                })
249
0
            }
Unexecuted instantiation: _RNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_10MethodCall33to_json_request_object_parameters
Unexecuted instantiation: _RNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_14ServerToClient33to_json_request_object_parameters
Unexecuted instantiation: _RNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_10MethodCall33to_json_request_object_parameters
Unexecuted instantiation: _RNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_14ServerToClient33to_json_request_object_parameters
250
251
95
            fn from_defs(name: &'a str, params: Option<&'a str>) -> Result<Self, MethodError<'a>> {
252
                #![allow(unused, unused_mut)]
253
254
                $(
255
95
                    if 
name1
== stringify!($name) $($(||
name35
==
stringify!($alias)87
)*)* {
256
                        // First, if parameters are missing (i.e. the `params` field isn't there),
257
                        // accept the call provided there is no parameter.
258
94
                        if params.is_none() {
259
                            // TODO: use `count(p_name) when stable; https://rust-lang.github.io/rfcs/3086-macro-metavar-expr.html
260
0
                            if !has_params!($($p_name),*) {
261
                                return Ok($rq_name::$name {
262
                                    // This code can't be reached if there is any parameter, thus
263
                                    // `unreachable!()` is never called.
264
0
                                    $($p_name: unreachable!(),)*
265
                                })
266
                            } else {
267
1
                                return Err(MethodError::MissingParameters {
268
1
                                    rpc_method: stringify!($name),
269
1
                                });
270
                            }
271
92
                        }
272
273
                        // Then, try parse parameters as if they were passed by name in a map.
274
                        // For example, a method `my_method(foo: i32, bar: &str)` accepts
275
                        // parameters formatted as `{"foo":5, "bar":"hello"}`.
276
52
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1C_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defs1__NtBa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1C_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB33_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defs1__NtBb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1F_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3d_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defs1__NtBb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1F_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3d_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1G_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss_1__NtBa_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1G_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB37_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss_1__NtBb_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1J_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3h_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss_1__NtBb_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1J_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3h_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss0_1__NtBa_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss0_1__NtBb_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss0_1__NtBb_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1_1__NtBa_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1_1__NtBb_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1_1__NtBb_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss2_1__NtBa_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss2_1__NtBb_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss2_1__NtBb_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss3_1__NtBa_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss3_1__NtBb_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss3_1__NtBb_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss4_1__NtBa_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss4_1__NtBb_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss4_1__NtBb_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss5_1__NtBa_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss5_1__NtBb_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss5_1__NtBb_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss6_1__NtBa_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss6_1__NtBb_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss6_1__NtBb_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss7_1__NtBa_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss7_1__NtBb_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss7_1__NtBb_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss8_1__NtB8_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss8_1__NtBa_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss8_1__NtBb_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss8_1__NtBb_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss9_1__NtBa_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss9_1__NtBb_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss9_1__NtBb_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssa_1__NtBa_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssa_1__NtBb_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssa_1__NtBb_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssb_1__NtB8_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssb_1__NtBa_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssb_1__NtBb_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssb_1__NtBb_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssc_1__NtBa_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssc_1__NtBb_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssc_1__NtBb_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssd_1__NtB8_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssd_1__NtBa_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssd_1__NtBb_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssd_1__NtBb_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsse_1__NtB8_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsse_1__NtBa_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsse_1__NtBb_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsse_1__NtBb_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssf_1__NtB8_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssf_1__NtBa_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssf_1__NtBb_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssf_1__NtBb_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssg_1__NtBa_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssg_1__NtBb_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssg_1__NtBb_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssh_1__NtBa_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssh_1__NtBb_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssh_1__NtBb_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssi_1__NtBa_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssi_1__NtBb_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssi_1__NtBb_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssj_1__NtB8_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssj_1__NtBa_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssj_1__NtBb_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssj_1__NtBb_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssk_1__NtB8_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssk_1__NtBa_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssk_1__NtBb_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssk_1__NtBb_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssl_1__NtB8_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssl_1__NtBa_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssl_1__NtBb_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssl_1__NtBb_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssm_1__NtB8_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssm_1__NtBa_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssm_1__NtBb_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssm_1__NtBb_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssn_1__NtB8_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssn_1__NtBa_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssn_1__NtBb_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssn_1__NtBb_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsso_1__NtB8_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsso_1__NtBa_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsso_1__NtBb_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsso_1__NtBb_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssp_1__NtB8_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssp_1__NtBa_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssp_1__NtBb_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssp_1__NtBb_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssq_1__NtBa_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssq_1__NtBb_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssq_1__NtBb_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssr_1__NtB8_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssr_1__NtBa_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssr_1__NtBb_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssr_1__NtBb_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsss_1__NtBa_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsss_1__NtBb_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsss_1__NtBb_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsst_1__NtBa_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsst_1__NtBb_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsst_1__NtBb_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssu_1__NtBa_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssu_1__NtBb_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssu_1__NtBb_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssv_1__NtBa_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssv_1__NtBb_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssv_1__NtBb_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssw_1__NtB8_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssw_1__NtBa_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssw_1__NtBb_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssw_1__NtBb_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssx_1__NtB8_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssx_1__NtBa_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssx_1__NtBb_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssx_1__NtBb_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssy_1__NtBa_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssy_1__NtBb_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssy_1__NtBb_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssz_1__NtBa_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssz_1__NtBb_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssz_1__NtBb_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssA_1__NtB8_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssA_1__NtBa_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssA_1__NtBb_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssA_1__NtBb_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssB_1__NtB8_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssB_1__NtBa_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssB_1__NtBb_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssB_1__NtBb_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssC_1__NtB8_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssC_1__NtBa_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssC_1__NtBb_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssC_1__NtBb_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssD_1__NtBa_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssD_1__NtBb_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssD_1__NtBb_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssE_1__NtB8_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssE_1__NtBa_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssE_1__NtBb_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssE_1__NtBb_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssF_1__NtBa_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssF_1__NtBb_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssF_1__NtBb_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssG_1__NtBa_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssG_1__NtBb_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssG_1__NtBb_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssH_1__NtBa_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssH_1__NtBb_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssH_1__NtBb_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssI_1__NtBa_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssI_1__NtBb_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssI_1__NtBb_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssJ_1__NtB8_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssJ_1__NtBa_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssJ_1__NtBb_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssJ_1__NtBb_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssK_1__NtB8_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssK_1__NtBa_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssK_1__NtBb_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssK_1__NtBb_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssL_1__NtB8_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssL_1__NtBa_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssL_1__NtBb_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssL_1__NtBb_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssM_1__NtB8_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssM_1__NtBa_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssM_1__NtBb_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssM_1__NtBb_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssN_1__NtB8_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssN_1__NtBa_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssN_1__NtBb_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssN_1__NtBb_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssO_1__NtB8_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssO_1__NtBa_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssO_1__NtBb_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssO_1__NtBb_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssP_1__NtB8_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssP_1__NtBa_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssP_1__NtBb_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssP_1__NtBb_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssQ_1__NtB8_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssQ_1__NtBa_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssQ_1__NtBb_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssQ_1__NtBb_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssR_1__NtB8_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssR_1__NtBa_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssR_1__NtBb_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssR_1__NtBb_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssS_1__NtB8_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssS_1__NtBa_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssS_1__NtBb_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssS_1__NtBb_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssT_1__NtB8_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssT_1__NtBa_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssT_1__NtBb_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssT_1__NtBb_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssU_1__NtB8_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssU_1__NtBa_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssU_1__NtBb_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssU_1__NtBb_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssV_1__NtB8_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssV_1__NtBa_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssV_1__NtBb_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssV_1__NtBb_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssW_1__NtB8_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssW_1__NtBa_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssW_1__NtBb_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssW_1__NtBb_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssX_1__NtBa_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssX_1__NtBb_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssX_1__NtBb_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssY_1__NtBa_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssY_1__NtBb_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssY_1__NtBb_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssZ_1__NtBa_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1I_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB39_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssZ_1__NtBb_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssZ_1__NtBb_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1L_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3j_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss10_1__NtBa_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss10_1__NtBb_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss10_1__NtBb_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss11_1__NtBa_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss11_1__NtBb_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss11_1__NtBb_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss12_1__NtBa_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss12_1__NtBb_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss12_1__NtBb_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss13_1__NtBa_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss13_1__NtBb_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss13_1__NtBb_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss14_1__NtBa_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss14_1__NtBb_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss14_1__NtBb_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss15_1__NtBa_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss15_1__NtBb_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss15_1__NtBb_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss16_1__NtB8_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss16_1__NtBa_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss16_1__NtBb_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss16_1__NtBb_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss17_1__NtB8_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss17_1__NtBa_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss17_1__NtBb_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss17_1__NtBb_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss18_1__NtB8_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss18_1__NtBa_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss18_1__NtBb_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss18_1__NtBb_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss19_1__NtBa_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss19_1__NtBb_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss19_1__NtBb_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1a_1__NtB8_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1a_1__NtBa_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1a_1__NtBb_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1a_1__NtBb_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1b_1__NtBa_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1b_1__NtBb_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1b_1__NtBb_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1c_1__NtBa_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1c_1__NtBb_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1c_1__NtBb_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1d_1__NtBa_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1d_1__NtBb_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1d_1__NtBb_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1e_1__NtBa_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1e_1__NtBb_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1e_1__NtBb_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1f_1__NtB8_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1f_1__NtBa_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1f_1__NtBb_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1f_1__NtBb_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1g_1__NtBa_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1g_1__NtBb_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1g_1__NtBb_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1h_1__NtBa_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3b_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1h_1__NtBb_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1h_1__NtBb_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3l_4read7StrReadEEBl_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defs1__NtBa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1E_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss_1__NtBa_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss0_1__NtBa_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1_1__NtBa_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss2_1__NtBa_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss3_1__NtBa_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss4_1__NtBa_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss5_1__NtBa_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss6_1__NtBa_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss7_1__NtB8_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss7_1__NtBa_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss8_1__NtBa_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss9_1__NtB8_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss9_1__NtBa_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssa_1__NtB8_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssa_1__NtBa_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssb_1__NtBa_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssc_1__NtB8_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssc_1__NtBa_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssd_1__NtBa_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsse_1__NtBa_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssf_1__NtBa_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssg_1__NtB8_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssg_1__NtBa_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssh_1__NtB8_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssh_1__NtBa_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssi_1__NtB8_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssi_1__NtBa_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssj_1__NtBa_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssk_1__NtBa_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssl_1__NtBa_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssm_1__NtBa_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssn_1__NtBa_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsso_1__NtBa_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssp_1__NtBa_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssq_1__NtB8_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssq_1__NtBa_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssr_1__NtBa_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsss_1__NtB8_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsss_1__NtBa_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsst_1__NtB8_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsst_1__NtBa_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssu_1__NtB8_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssu_1__NtBa_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssv_1__NtB8_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssv_1__NtBa_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssw_1__NtBa_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssx_1__NtBa_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssy_1__NtB8_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssy_1__NtBa_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssz_1__NtB8_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssz_1__NtBa_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssA_1__NtBa_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssB_1__NtBa_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssC_1__NtBa_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssD_1__NtB8_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssD_1__NtBa_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssE_1__NtBa_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssF_1__NtB8_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssF_1__NtBa_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssG_1__NtB8_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssG_1__NtBa_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssH_1__NtB8_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssH_1__NtBa_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssI_1__NtB8_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssI_1__NtBa_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssJ_1__NtBa_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssK_1__NtBa_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssL_1__NtBa_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssM_1__NtBa_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssN_1__NtBa_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssO_1__NtBa_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssP_1__NtBa_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssQ_1__NtBa_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssR_1__NtBa_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssS_1__NtBa_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssT_1__NtBa_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssU_1__NtBa_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssV_1__NtBa_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssW_1__NtBa_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssX_1__NtB8_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssX_1__NtBa_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssY_1__NtB8_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssY_1__NtBa_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssZ_1__NtB8_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssZ_1__NtBa_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss10_1__NtB8_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss10_1__NtBa_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss11_1__NtB8_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss11_1__NtBa_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss12_1__NtB8_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss12_1__NtBa_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss13_1__NtB8_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss13_1__NtBa_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss14_1__NtB8_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss14_1__NtBa_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss15_1__NtB8_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss15_1__NtBa_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss16_1__NtBa_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss17_1__NtBa_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss18_1__NtBa_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss19_1__NtB8_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss19_1__NtBa_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1a_1__NtBa_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1b_1__NtB8_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1b_1__NtBa_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1c_1__NtB8_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1c_1__NtBa_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1d_1__NtB8_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1d_1__NtBa_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1e_1__NtB8_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1e_1__NtBa_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1f_1__NtBa_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1g_1__NtB8_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1g_1__NtBa_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1h_1__NtB8_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1h_1__NtBa_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defs1__NtB7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1B_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1C_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1C_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss_1__NtB7_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1F_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1G_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1G_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss0_1__NtB7_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1_1__NtB7_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss2_1__NtB7_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss3_1__NtB7_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss4_1__NtB7_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss5_1__NtB7_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss6_1__NtB7_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss7_1__NtB7_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss7_1__NtB8_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss7_1__NtB8_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss8_1__NtB7_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss8_1__NtB8_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss8_1__NtB8_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss9_1__NtB7_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss9_1__NtB8_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss9_1__NtB8_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssa_1__NtB7_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssa_1__NtB8_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssa_1__NtB8_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssb_1__NtB7_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssb_1__NtB8_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssb_1__NtB8_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssc_1__NtB7_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssc_1__NtB8_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssc_1__NtB8_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssd_1__NtB7_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssd_1__NtB8_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssd_1__NtB8_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defsse_1__NtB7_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsse_1__NtB8_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsse_1__NtB8_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssf_1__NtB7_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssf_1__NtB8_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssf_1__NtB8_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssg_1__NtB7_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssg_1__NtB8_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssg_1__NtB8_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssh_1__NtB7_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssh_1__NtB8_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssh_1__NtB8_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssi_1__NtB7_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssi_1__NtB8_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssi_1__NtB8_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssj_1__NtB7_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssj_1__NtB8_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssj_1__NtB8_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssk_1__NtB7_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssk_1__NtB8_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssk_1__NtB8_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssl_1__NtB7_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssl_1__NtB8_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssl_1__NtB8_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssm_1__NtB7_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssm_1__NtB8_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssm_1__NtB8_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssn_1__NtB7_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssn_1__NtB8_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssn_1__NtB8_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defsso_1__NtB7_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsso_1__NtB8_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsso_1__NtB8_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssp_1__NtB7_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssp_1__NtB8_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssp_1__NtB8_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssq_1__NtB7_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssq_1__NtB8_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssq_1__NtB8_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssr_1__NtB7_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssr_1__NtB8_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssr_1__NtB8_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defsss_1__NtB7_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsss_1__NtB8_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsss_1__NtB8_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defsst_1__NtB7_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsst_1__NtB8_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsst_1__NtB8_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssu_1__NtB7_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssu_1__NtB8_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssu_1__NtB8_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssv_1__NtB7_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssv_1__NtB8_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssv_1__NtB8_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssw_1__NtB7_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssw_1__NtB8_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssw_1__NtB8_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssx_1__NtB7_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssx_1__NtB8_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssx_1__NtB8_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssy_1__NtB7_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssy_1__NtB8_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssy_1__NtB8_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssz_1__NtB7_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssz_1__NtB8_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssz_1__NtB8_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssA_1__NtB7_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssA_1__NtB8_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssA_1__NtB8_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssB_1__NtB7_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssB_1__NtB8_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssB_1__NtB8_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssC_1__NtB7_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssC_1__NtB8_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssC_1__NtB8_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssD_1__NtB7_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssD_1__NtB8_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssD_1__NtB8_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssE_1__NtB7_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssE_1__NtB8_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssE_1__NtB8_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssF_1__NtB7_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssF_1__NtB8_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssF_1__NtB8_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssG_1__NtB7_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssG_1__NtB8_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssG_1__NtB8_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssH_1__NtB7_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssH_1__NtB8_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssH_1__NtB8_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssI_1__NtB7_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssI_1__NtB8_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssI_1__NtB8_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssJ_1__NtB7_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssJ_1__NtB8_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssJ_1__NtB8_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssK_1__NtB7_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssK_1__NtB8_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssK_1__NtB8_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssL_1__NtB7_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssL_1__NtB8_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssL_1__NtB8_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssM_1__NtB7_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssM_1__NtB8_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssM_1__NtB8_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssN_1__NtB7_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssN_1__NtB8_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssN_1__NtB8_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssO_1__NtB7_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssO_1__NtB8_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssO_1__NtB8_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssP_1__NtB7_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssP_1__NtB8_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssP_1__NtB8_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssQ_1__NtB7_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssQ_1__NtB8_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssQ_1__NtB8_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssR_1__NtB7_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssR_1__NtB8_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssR_1__NtB8_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssS_1__NtB7_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssS_1__NtB8_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssS_1__NtB8_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssT_1__NtB7_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssT_1__NtB8_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssT_1__NtB8_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssU_1__NtB7_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssU_1__NtB8_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssU_1__NtB8_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssV_1__NtB7_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssV_1__NtB8_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssV_1__NtB8_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssW_1__NtB7_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssW_1__NtB8_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssW_1__NtB8_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssX_1__NtB7_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssX_1__NtB8_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssX_1__NtB8_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssY_1__NtB7_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssY_1__NtB8_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssY_1__NtB8_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssZ_1__NtB7_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1H_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssZ_1__NtB8_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssZ_1__NtB8_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1I_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss10_1__NtB7_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss10_1__NtB8_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss10_1__NtB8_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss11_1__NtB7_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss11_1__NtB8_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss11_1__NtB8_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss12_1__NtB7_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss12_1__NtB8_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss12_1__NtB8_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss13_1__NtB7_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss13_1__NtB8_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss13_1__NtB8_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss14_1__NtB7_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss14_1__NtB8_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss14_1__NtB8_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss15_1__NtB7_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss15_1__NtB8_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss15_1__NtB8_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss16_1__NtB7_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss16_1__NtB8_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss16_1__NtB8_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss17_1__NtB7_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss17_1__NtB8_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss17_1__NtB8_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss18_1__NtB7_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss18_1__NtB8_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss18_1__NtB8_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss19_1__NtB7_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss19_1__NtB8_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss19_1__NtB8_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1a_1__NtB7_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1a_1__NtB8_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1a_1__NtB8_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1b_1__NtB7_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1b_1__NtB8_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1b_1__NtB8_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1c_1__NtB7_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1c_1__NtB8_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1c_1__NtB8_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1d_1__NtB7_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1d_1__NtB8_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1d_1__NtB8_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1e_1__NtB7_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1e_1__NtB8_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1e_1__NtB8_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1f_1__NtB7_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1f_1__NtB8_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1f_1__NtB8_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1g_1__NtB7_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1g_1__NtB8_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1g_1__NtB8_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1h_1__NtB7_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1h_1__NtB8_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1h_1__NtB8_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defs1__NtB7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1F_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1G_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1G_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1G_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defs1__NtBa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1G_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defs1__NtBa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defs1__NtBb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1J_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defs1__NtBb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1J_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss_1__NtB7_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1K_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss_1__NtBa_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1K_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss_1__NtBa_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss_1__NtBb_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss_1__NtBb_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1N_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss0_1__NtB7_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss0_1__NtBa_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1M_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss0_1__NtBa_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1O_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss0_1__NtBb_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss0_1__NtBb_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss1_1__NtB7_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss1_1__NtBa_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1M_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss1_1__NtBa_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1O_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss1_1__NtBb_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss1_1__NtBb_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss2_1__NtB7_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss2_1__NtBa_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1M_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss2_1__NtBa_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1O_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss2_1__NtBb_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss2_1__NtBb_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss3_1__NtB7_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss3_1__NtBa_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1M_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss3_1__NtBa_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1O_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss3_1__NtBb_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss3_1__NtBb_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss4_1__NtB7_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss4_1__NtBa_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1M_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss4_1__NtBa_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1O_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss4_1__NtBb_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss4_1__NtBb_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss5_1__NtB7_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss5_1__NtBa_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1M_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss5_1__NtBa_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1O_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss5_1__NtBb_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss5_1__NtBb_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss6_1__NtB7_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor9visit_strpEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1M_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss6_1__NtBa_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1M_11deserializepEBk_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss6_1__NtBa_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1O_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss6_1__NtBb_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_seqpEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss6_1__NtBb_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1P_7Visitor9visit_mappEBl_
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defs1__NtB7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1C_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defs1__NtBa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1F_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss_1__NtB7_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1G_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss_1__NtBa_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss0_1__NtB7_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss0_1__NtBa_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1_1__NtB7_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1_1__NtBa_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss2_1__NtB7_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss2_1__NtBa_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss3_1__NtB7_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss3_1__NtBa_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss4_1__NtB7_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss4_1__NtBa_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss5_1__NtB7_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss5_1__NtBa_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss6_1__NtB7_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss6_1__NtBa_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss7_1__NtB7_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss7_1__NtB8_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss7_1__NtBa_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss8_1__NtB7_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss8_1__NtBa_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss9_1__NtB7_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss9_1__NtB8_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss9_1__NtBa_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssa_1__NtB7_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssa_1__NtB8_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssa_1__NtBa_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssb_1__NtB7_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssb_1__NtBa_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssc_1__NtB7_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssc_1__NtB8_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssc_1__NtBa_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssd_1__NtB7_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssd_1__NtBa_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defsse_1__NtB7_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsse_1__NtBa_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssf_1__NtB7_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssf_1__NtBa_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssg_1__NtB7_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssg_1__NtB8_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssg_1__NtBa_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssh_1__NtB7_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssh_1__NtB8_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssh_1__NtBa_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssi_1__NtB7_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssi_1__NtB8_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssi_1__NtBa_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssj_1__NtB7_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssj_1__NtBa_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssk_1__NtB7_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssk_1__NtBa_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssl_1__NtB7_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssl_1__NtBa_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssm_1__NtB7_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssm_1__NtBa_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssn_1__NtB7_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssn_1__NtBa_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defsso_1__NtB7_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsso_1__NtBa_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssp_1__NtB7_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssp_1__NtBa_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssq_1__NtB7_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssq_1__NtB8_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssq_1__NtBa_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssr_1__NtB7_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssr_1__NtBa_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defsss_1__NtB7_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsss_1__NtB8_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsss_1__NtBa_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defsst_1__NtB7_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsst_1__NtB8_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsst_1__NtBa_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssu_1__NtB7_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssu_1__NtB8_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssu_1__NtBa_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssv_1__NtB7_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssv_1__NtB8_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssv_1__NtBa_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssw_1__NtB7_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssw_1__NtBa_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssx_1__NtB7_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssx_1__NtBa_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssy_1__NtB7_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssy_1__NtB8_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssy_1__NtBa_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssz_1__NtB7_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssz_1__NtB8_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssz_1__NtBa_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssA_1__NtB7_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssA_1__NtBa_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssB_1__NtB7_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssB_1__NtBa_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssC_1__NtB7_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssC_1__NtBa_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssD_1__NtB7_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssD_1__NtB8_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssD_1__NtBa_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssE_1__NtB7_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssE_1__NtBa_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssF_1__NtB7_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssF_1__NtB8_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssF_1__NtBa_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssG_1__NtB7_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssG_1__NtB8_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssG_1__NtBa_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssH_1__NtB7_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssH_1__NtB8_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssH_1__NtBa_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssI_1__NtB7_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssI_1__NtB8_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssI_1__NtBa_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssJ_1__NtB7_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssJ_1__NtBa_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssK_1__NtB7_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssK_1__NtBa_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssL_1__NtB7_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssL_1__NtBa_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssM_1__NtB7_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssM_1__NtBa_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssN_1__NtB7_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssN_1__NtBa_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssO_1__NtB7_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssO_1__NtBa_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssP_1__NtB7_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssP_1__NtBa_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssQ_1__NtB7_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssQ_1__NtBa_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssR_1__NtB7_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssR_1__NtBa_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssS_1__NtB7_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssS_1__NtBa_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssT_1__NtB7_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssT_1__NtBa_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssU_1__NtB7_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssU_1__NtBa_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssV_1__NtB7_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssV_1__NtBa_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssW_1__NtB7_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssW_1__NtBa_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssX_1__NtB7_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssX_1__NtB8_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssX_1__NtBa_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssY_1__NtB7_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssY_1__NtB8_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssY_1__NtBa_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defssZ_1__NtB7_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1I_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssZ_1__NtB8_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssZ_1__NtBa_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1L_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss10_1__NtB7_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss10_1__NtB8_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss10_1__NtBa_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss11_1__NtB7_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss11_1__NtB8_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss11_1__NtBa_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss12_1__NtB7_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss12_1__NtB8_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss12_1__NtBa_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss13_1__NtB7_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss13_1__NtB8_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss13_1__NtBa_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss14_1__NtB7_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss14_1__NtB8_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss14_1__NtBa_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss15_1__NtB7_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss15_1__NtB8_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss15_1__NtBa_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss16_1__NtB7_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss16_1__NtBa_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss17_1__NtB7_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss17_1__NtBa_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss18_1__NtB7_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss18_1__NtBa_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss19_1__NtB7_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss19_1__NtB8_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss19_1__NtBa_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1a_1__NtB7_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1a_1__NtBa_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1b_1__NtB7_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1b_1__NtB8_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1b_1__NtBa_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1c_1__NtB7_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1c_1__NtB8_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1c_1__NtBa_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1d_1__NtB7_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1d_1__NtB8_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1d_1__NtBa_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1e_1__NtB7_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1e_1__NtB8_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1e_1__NtBa_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1f_1__NtB7_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1f_1__NtBa_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1g_1__NtB7_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1g_1__NtB8_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1g_1__NtBa_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_10MethodCall9from_defss1h_1__NtB7_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1h_1__NtB8_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1h_1__NtBa_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defs1__NtB7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1G_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1H_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defs1__NtBa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1J_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss_1__NtB7_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1K_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss_1__NtBa_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1N_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss0_1__NtB7_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss0_1__NtBa_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1P_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss1_1__NtB7_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss1_1__NtBa_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1P_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss2_1__NtB7_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss2_1__NtBa_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1P_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss3_1__NtB7_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss3_1__NtBa_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1P_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss4_1__NtB7_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss4_1__NtBa_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1P_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss5_1__NtB7_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss5_1__NtBa_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1P_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBd_14ServerToClient9from_defss6_1__NtB7_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1M_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RNvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss6_1__NtBa_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1P_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1D_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1D_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1H_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1H_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss7_1__NtB8_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss7_1__NtB8_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss8_1__NtB8_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss8_1__NtB8_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss9_1__NtB8_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss9_1__NtB8_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssa_1__NtB8_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssa_1__NtB8_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssb_1__NtB8_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssb_1__NtB8_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssc_1__NtB8_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssc_1__NtB8_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssd_1__NtB8_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssd_1__NtB8_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsse_1__NtB8_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsse_1__NtB8_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssf_1__NtB8_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssf_1__NtB8_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssg_1__NtB8_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssg_1__NtB8_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssh_1__NtB8_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssh_1__NtB8_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssi_1__NtB8_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssi_1__NtB8_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssj_1__NtB8_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssj_1__NtB8_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssk_1__NtB8_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssk_1__NtB8_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssl_1__NtB8_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssl_1__NtB8_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssm_1__NtB8_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssm_1__NtB8_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssn_1__NtB8_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssn_1__NtB8_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsso_1__NtB8_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsso_1__NtB8_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssp_1__NtB8_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssp_1__NtB8_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssq_1__NtB8_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssq_1__NtB8_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssr_1__NtB8_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssr_1__NtB8_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsss_1__NtB8_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsss_1__NtB8_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsst_1__NtB8_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsst_1__NtB8_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssu_1__NtB8_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssu_1__NtB8_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssv_1__NtB8_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssv_1__NtB8_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssw_1__NtB8_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssw_1__NtB8_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssx_1__NtB8_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssx_1__NtB8_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssy_1__NtB8_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssy_1__NtB8_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssz_1__NtB8_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssz_1__NtB8_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssA_1__NtB8_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssA_1__NtB8_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssB_1__NtB8_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssB_1__NtB8_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssC_1__NtB8_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssC_1__NtB8_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssD_1__NtB8_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssD_1__NtB8_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssE_1__NtB8_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssE_1__NtB8_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssF_1__NtB8_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssF_1__NtB8_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssG_1__NtB8_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssG_1__NtB8_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssH_1__NtB8_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssH_1__NtB8_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssI_1__NtB8_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssI_1__NtB8_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssJ_1__NtB8_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssJ_1__NtB8_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssK_1__NtB8_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssK_1__NtB8_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssL_1__NtB8_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssL_1__NtB8_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssM_1__NtB8_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssM_1__NtB8_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssN_1__NtB8_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssN_1__NtB8_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssO_1__NtB8_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssO_1__NtB8_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssP_1__NtB8_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssP_1__NtB8_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssQ_1__NtB8_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssQ_1__NtB8_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssR_1__NtB8_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssR_1__NtB8_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssS_1__NtB8_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssS_1__NtB8_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssT_1__NtB8_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssT_1__NtB8_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssU_1__NtB8_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssU_1__NtB8_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssV_1__NtB8_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssV_1__NtB8_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssW_1__NtB8_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssW_1__NtB8_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssX_1__NtB8_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssX_1__NtB8_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssY_1__NtB8_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssY_1__NtB8_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssZ_1__NtB8_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssZ_1__NtB8_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss10_1__NtB8_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss10_1__NtB8_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss11_1__NtB8_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss11_1__NtB8_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss12_1__NtB8_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss12_1__NtB8_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss13_1__NtB8_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss13_1__NtB8_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss14_1__NtB8_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss14_1__NtB8_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss15_1__NtB8_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss15_1__NtB8_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss16_1__NtB8_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss16_1__NtB8_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss17_1__NtB8_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss17_1__NtB8_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss18_1__NtB8_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss18_1__NtB8_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss19_1__NtB8_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss19_1__NtB8_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1a_1__NtB8_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1a_1__NtB8_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1b_1__NtB8_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1b_1__NtB8_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1c_1__NtB8_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1c_1__NtB8_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1d_1__NtB8_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1d_1__NtB8_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1e_1__NtB8_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1e_1__NtB8_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1f_1__NtB8_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1f_1__NtB8_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1g_1__NtB8_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1g_1__NtB8_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1h_1__NtB8_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1h_1__NtB8_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1H_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1H_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss5_1__NtB8_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor9visit_u64pEBi_
Unexecuted instantiation: _RINvXNvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_14ServerToClient9from_defss6_1__NtB8_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1N_7Visitor11visit_bytespEBi_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defs1__NtB8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1D_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defs1__NtBa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1D_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB34_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defs1__NtBb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1G_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3e_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defs1__NtBb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1G_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3e_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss_1__NtB8_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1H_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss_1__NtBa_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1H_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB38_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss_1__NtBb_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1K_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3i_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss_1__NtBb_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1K_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3i_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss0_1__NtB8_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss0_1__NtBa_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss0_1__NtBb_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss0_1__NtBb_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1_1__NtB8_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1_1__NtBa_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1_1__NtBb_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1_1__NtBb_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss2_1__NtB8_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss2_1__NtBa_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss2_1__NtBb_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss2_1__NtBb_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss3_1__NtB8_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss3_1__NtBa_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss3_1__NtBb_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss3_1__NtBb_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss4_1__NtB8_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss4_1__NtBa_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss4_1__NtBb_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss4_1__NtBb_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss5_1__NtBa_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss5_1__NtBb_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss5_1__NtBb_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss6_1__NtBa_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss6_1__NtBb_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss6_1__NtBb_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss7_1__NtBa_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss7_1__NtBb_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss7_1__NtBb_s7_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss8_1__NtB8_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss8_1__NtBa_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss8_1__NtBb_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss8_1__NtBb_s8_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss9_1__NtBa_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss9_1__NtBb_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss9_1__NtBb_s9_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssa_1__NtBa_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssa_1__NtBb_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
8
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssa_1__NtBb_sa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssb_1__NtB8_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssb_1__NtBa_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssb_1__NtBb_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssb_1__NtBb_sb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssc_1__NtBa_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssc_1__NtBb_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
12
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssc_1__NtBb_sc_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssd_1__NtB8_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssd_1__NtBa_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssd_1__NtBb_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssd_1__NtBb_sd_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsse_1__NtB8_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsse_1__NtBa_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsse_1__NtBb_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsse_1__NtBb_se_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssf_1__NtB8_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssf_1__NtBa_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssf_1__NtBb_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssf_1__NtBb_sf_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssg_1__NtBa_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssg_1__NtBb_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssg_1__NtBb_sg_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssh_1__NtBa_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssh_1__NtBb_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssh_1__NtBb_sh_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssi_1__NtBa_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssi_1__NtBb_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssi_1__NtBb_si_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssj_1__NtB8_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssj_1__NtBa_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssj_1__NtBb_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssj_1__NtBb_sj_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssk_1__NtB8_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssk_1__NtBa_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssk_1__NtBb_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssk_1__NtBb_sk_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssl_1__NtB8_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssl_1__NtBa_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssl_1__NtBb_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssl_1__NtBb_sl_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssm_1__NtB8_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssm_1__NtBa_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssm_1__NtBb_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssm_1__NtBb_sm_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssn_1__NtB8_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssn_1__NtBa_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssn_1__NtBb_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssn_1__NtBb_sn_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defsso_1__NtB8_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsso_1__NtBa_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsso_1__NtBb_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsso_1__NtBb_so_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssp_1__NtB8_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssp_1__NtBa_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssp_1__NtBb_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssp_1__NtBb_sp_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssq_1__NtBa_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssq_1__NtBb_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssq_1__NtBb_sq_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssr_1__NtB8_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssr_1__NtBa_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssr_1__NtBb_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssr_1__NtBb_sr_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsss_1__NtBa_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsss_1__NtBb_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsss_1__NtBb_ss_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defsst_1__NtBa_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsst_1__NtBb_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defsst_1__NtBb_st_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssu_1__NtBa_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssu_1__NtBb_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
24
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssu_1__NtBb_su_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssv_1__NtBa_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssv_1__NtBb_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssv_1__NtBb_sv_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssw_1__NtB8_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssw_1__NtBa_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssw_1__NtBb_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssw_1__NtBb_sw_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssx_1__NtB8_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssx_1__NtBa_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssx_1__NtBb_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssx_1__NtBb_sx_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssy_1__NtBa_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssy_1__NtBb_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssy_1__NtBb_sy_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssz_1__NtBa_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssz_1__NtBb_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssz_1__NtBb_sz_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssA_1__NtB8_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssA_1__NtBa_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssA_1__NtBb_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssA_1__NtBb_sA_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssB_1__NtB8_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssB_1__NtBa_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssB_1__NtBb_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssB_1__NtBb_sB_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssC_1__NtB8_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssC_1__NtBa_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssC_1__NtBb_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssC_1__NtBb_sC_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssD_1__NtBa_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssD_1__NtBb_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssD_1__NtBb_sD_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssE_1__NtB8_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssE_1__NtBa_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssE_1__NtBb_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssE_1__NtBb_sE_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssF_1__NtBa_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssF_1__NtBb_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssF_1__NtBb_sF_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssG_1__NtBa_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssG_1__NtBb_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssG_1__NtBb_sG_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssH_1__NtBa_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssH_1__NtBb_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssH_1__NtBb_sH_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssI_1__NtBa_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssI_1__NtBb_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssI_1__NtBb_sI_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssJ_1__NtB8_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssJ_1__NtBa_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssJ_1__NtBb_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssJ_1__NtBb_sJ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssK_1__NtB8_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssK_1__NtBa_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssK_1__NtBb_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssK_1__NtBb_sK_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssL_1__NtB8_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssL_1__NtBa_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssL_1__NtBb_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssL_1__NtBb_sL_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssM_1__NtB8_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssM_1__NtBa_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssM_1__NtBb_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssM_1__NtBb_sM_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssN_1__NtB8_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssN_1__NtBa_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssN_1__NtBb_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssN_1__NtBb_sN_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssO_1__NtB8_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssO_1__NtBa_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssO_1__NtBb_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssO_1__NtBb_sO_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssP_1__NtB8_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssP_1__NtBa_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssP_1__NtBb_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssP_1__NtBb_sP_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssQ_1__NtB8_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssQ_1__NtBa_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssQ_1__NtBb_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssQ_1__NtBb_sQ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssR_1__NtB8_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssR_1__NtBa_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssR_1__NtBb_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssR_1__NtBb_sR_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssS_1__NtB8_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssS_1__NtBa_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssS_1__NtBb_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssS_1__NtBb_sS_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssT_1__NtB8_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssT_1__NtBa_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssT_1__NtBb_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssT_1__NtBb_sT_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssU_1__NtB8_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssU_1__NtBa_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssU_1__NtBb_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssU_1__NtBb_sU_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssV_1__NtB8_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssV_1__NtBa_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssV_1__NtBb_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssV_1__NtBb_sV_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defssW_1__NtB8_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1J_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssW_1__NtBa_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssW_1__NtBb_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssW_1__NtBb_sW_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssX_1__NtBa_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssX_1__NtBb_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssX_1__NtBb_sX_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssY_1__NtBa_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssY_1__NtBb_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssY_1__NtBb_sY_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defssZ_1__NtBa_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1J_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3a_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssZ_1__NtBb_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defssZ_1__NtBb_sZ_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1M_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3k_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss10_1__NtBa_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss10_1__NtBb_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss10_1__NtBb_s10_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss11_1__NtBa_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss11_1__NtBb_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss11_1__NtBb_s11_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss12_1__NtBa_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss12_1__NtBb_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss12_1__NtBb_s12_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss13_1__NtBa_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss13_1__NtBb_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss13_1__NtBb_s13_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss14_1__NtBa_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss14_1__NtBb_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss14_1__NtBb_s14_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss15_1__NtBa_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss15_1__NtBb_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss15_1__NtBb_s15_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss16_1__NtB8_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss16_1__NtBa_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss16_1__NtBb_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss16_1__NtBb_s16_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss17_1__NtB8_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss17_1__NtBa_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss17_1__NtBb_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss17_1__NtBb_s17_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss18_1__NtB8_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss18_1__NtBa_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
_RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss18_1__NtBb_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Line
Count
Source
276
4
                        #[derive(serde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss18_1__NtBb_s18_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss19_1__NtBa_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss19_1__NtBb_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss19_1__NtBb_s19_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1a_1__NtB8_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1a_1__NtBa_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1a_1__NtBb_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1a_1__NtBb_s1a_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1b_1__NtBa_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1b_1__NtBb_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1b_1__NtBb_s1b_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1c_1__NtBa_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1c_1__NtBb_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1c_1__NtBb_s1c_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1d_1__NtBa_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1d_1__NtBb_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1d_1__NtBb_s1d_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1e_1__NtBa_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1e_1__NtBb_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1e_1__NtBb_s1e_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXNvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBe_10MethodCall9from_defss1f_1__NtB8_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1L_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBi_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1f_1__NtBa_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1f_1__NtBb_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1f_1__NtBb_s1f_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1g_1__NtBa_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1g_1__NtBb_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1g_1__NtBb_s1g_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_10MethodCall9from_defss1h_1__NtBa_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1h_1__NtBb_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_10MethodCall9from_defss1h_1__NtBb_s1h_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defs1__NtBa_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1H_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB38_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defs1__NtBb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1K_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3i_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defs1__NtBb_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1K_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3i_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss_1__NtBa_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1L_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3c_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss_1__NtBb_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss_1__NtBb_s_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1O_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3m_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss0_1__NtBa_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1N_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3e_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss0_1__NtBb_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss0_1__NtBb_s0_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss1_1__NtBa_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1N_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3e_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss1_1__NtBb_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss1_1__NtBb_s1_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss2_1__NtBa_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1N_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3e_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss2_1__NtBb_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss2_1__NtBb_s2_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss3_1__NtBa_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1N_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3e_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss3_1__NtBb_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss3_1__NtBb_s3_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss4_1__NtBa_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1N_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3e_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss4_1__NtBb_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss4_1__NtBb_s4_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss5_1__NtBa_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1N_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3e_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss5_1__NtBb_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss5_1__NtBb_s5_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBg_14ServerToClient9from_defss6_1__NtBa_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1N_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB3e_4read7StrReadEEBk_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss6_1__NtBb_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB3o_4read7StrReadEEBl_
Unexecuted instantiation: _RINvXs0_NvXNvNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBh_14ServerToClient9from_defss6_1__NtBb_s6_6ParamsNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1Q_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB3o_4read7StrReadEEBl_
277
                        struct Params<'a> {
278
                            $(
279
                                $(#[serde(rename = $p_rpc_name)])*
280
                                $p_name: $p_ty,
281
                            )*
282
283
                            // This `_dummy` field is necessary to not have an "unused lifetime"
284
                            // error if the parameters don't have a lifetime.
285
                            #[serde(borrow, skip)]
286
                            _dummy: core::marker::PhantomData<&'a ()>,
287
                        }
288
92
                        if let Some(Ok(
params68
)) = params.as_ref().map(|p| serde_json::from_str(p)) {
289
68
                            let Params { _dummy: _, $(
$p_name28
),* } = params;
290
68
                            return Ok($rq_name::$name {
291
68
                                $($p_name,)*
292
68
                            })
293
24
                        }
294
295
                        // Otherwise, try parse parameters as if they were passed by array.
296
                        // For example, a method `my_method(foo: i32, bar: &str)` also accepts
297
                        // parameters formatted as `[5, "hello"]`.
298
                        // To make things more complex, optional parameters can be omitted.
299
                        //
300
                        // The code below allocates a `Vec`, but at the time of writing there is
301
                        // no way to ask `serde_json` to parse an array without doing so.
302
24
                        if let Some(Ok(params)) = params.as_ref().map(|p| serde_json::from_str::<Vec<&'a serde_json::value::RawValue>>(p)) {
303
24
                            let mut n = 0;
304
                            $(
305
                                // Missing parameters are implicitly equal to null.
306
0
                                let $p_name = match params.get(n)
307
0
                                    .map(|val| serde_json::from_str(val.get()))
308
0
                                    .unwrap_or_else(|| serde_json::from_str("null"))
309
                                {
310
0
                                    Ok(v) => v,
311
0
                                    Err(err) => return Err(MethodError::InvalidParameter {
312
                                        rpc_method: stringify!($name),
313
0
                                        parameter_index: n,
314
0
                                        error: InvalidParameterError(err),
315
                                    })
316
                                };
317
0
                                n += 1;
318
0
                            )*
319
24
                            if params.get(n).is_some() {
320
                                return Err(MethodError::TooManyParameters {
321
                                    rpc_method: stringify!($name),
322
0
                                    expected: n,
323
0
                                    actual: params.len(),
324
                                })
325
24
                            }
326
24
                            return Ok($rq_name::$name {
327
24
                                $($p_name,)*
328
24
                            })
329
0
                        }
330
0
331
0
                        return Err(MethodError::InvalidParametersFormat {
332
0
                            rpc_method: stringify!($name),
333
0
                        });
334
3.86k
                    }
335
1
                )*
336
1
337
1
                Err(MethodError::UnknownMethod(name))
338
95
            }
_RNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_10MethodCall9from_defs
Line
Count
Source
251
2
            fn from_defs(name: &'a str, params: Option<&'a str>) -> Result<Self, MethodError<'a>> {
252
                #![allow(unused, unused_mut)]
253
254
                $(
255
2
                    if 
name0
== stringify!($name) $($(|| name == stringify!($alias))*)* {
256
                        // First, if parameters are missing (i.e. the `params` field isn't there),
257
                        // accept the call provided there is no parameter.
258
2
                        if params.is_none() {
259
                            // TODO: use `count(p_name) when stable; https://rust-lang.github.io/rfcs/3086-macro-metavar-expr.html
260
0
                            if !has_params!($($p_name),*) {
261
                                return Ok($rq_name::$name {
262
                                    // This code can't be reached if there is any parameter, thus
263
                                    // `unreachable!()` is never called.
264
0
                                    $($p_name: unreachable!(),)*
265
                                })
266
                            } else {
267
1
                                return Err(MethodError::MissingParameters {
268
1
                                    rpc_method: stringify!($name),
269
1
                                });
270
                            }
271
0
                        }
272
273
                        // Then, try parse parameters as if they were passed by name in a map.
274
                        // For example, a method `my_method(foo: i32, bar: &str)` accepts
275
                        // parameters formatted as `{"foo":5, "bar":"hello"}`.
276
                        #[derive(serde::Deserialize)]
277
                        struct Params<'a> {
278
                            $(
279
                                $(#[serde(rename = $p_rpc_name)])*
280
                                $p_name: $p_ty,
281
                            )*
282
283
                            // This `_dummy` field is necessary to not have an "unused lifetime"
284
                            // error if the parameters don't have a lifetime.
285
                            #[serde(borrow, skip)]
286
                            _dummy: core::marker::PhantomData<&'a ()>,
287
                        }
288
0
                        if let Some(Ok(params)) = params.as_ref().map(|p| serde_json::from_str(p)) {
289
0
                            let Params { _dummy: _, $($p_name),* } = params;
290
0
                            return Ok($rq_name::$name {
291
0
                                $($p_name,)*
292
0
                            })
293
0
                        }
294
295
                        // Otherwise, try parse parameters as if they were passed by array.
296
                        // For example, a method `my_method(foo: i32, bar: &str)` also accepts
297
                        // parameters formatted as `[5, "hello"]`.
298
                        // To make things more complex, optional parameters can be omitted.
299
                        //
300
                        // The code below allocates a `Vec`, but at the time of writing there is
301
                        // no way to ask `serde_json` to parse an array without doing so.
302
0
                        if let Some(Ok(params)) = params.as_ref().map(|p| serde_json::from_str::<Vec<&'a serde_json::value::RawValue>>(p)) {
303
0
                            let mut n = 0;
304
                            $(
305
                                // Missing parameters are implicitly equal to null.
306
0
                                let $p_name = match params.get(n)
307
0
                                    .map(|val| serde_json::from_str(val.get()))
308
0
                                    .unwrap_or_else(|| serde_json::from_str("null"))
309
                                {
310
0
                                    Ok(v) => v,
311
0
                                    Err(err) => return Err(MethodError::InvalidParameter {
312
                                        rpc_method: stringify!($name),
313
0
                                        parameter_index: n,
314
0
                                        error: InvalidParameterError(err),
315
                                    })
316
                                };
317
0
                                n += 1;
318
                            )*
319
0
                            if params.get(n).is_some() {
320
                                return Err(MethodError::TooManyParameters {
321
                                    rpc_method: stringify!($name),
322
0
                                    expected: n,
323
0
                                    actual: params.len(),
324
                                })
325
0
                            }
326
0
                            return Ok($rq_name::$name {
327
0
                                $($p_name,)*
328
0
                            })
329
0
                        }
330
0
331
0
                        return Err(MethodError::InvalidParametersFormat {
332
0
                            rpc_method: stringify!($name),
333
0
                        });
334
133
                    }
335
0
                )*
336
0
337
0
                Err(MethodError::UnknownMethod(name))
338
2
            }
Unexecuted instantiation: _RNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_14ServerToClient9from_defs
_RNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_10MethodCall9from_defs
Line
Count
Source
251
93
            fn from_defs(name: &'a str, params: Option<&'a str>) -> Result<Self, MethodError<'a>> {
252
                #![allow(unused, unused_mut)]
253
254
                $(
255
93
                    if 
name1
== stringify!($name) $($(||
name33
==
stringify!($alias)85
)*)* {
256
                        // First, if parameters are missing (i.e. the `params` field isn't there),
257
                        // accept the call provided there is no parameter.
258
92
                        if params.is_none() {
259
                            // TODO: use `count(p_name) when stable; https://rust-lang.github.io/rfcs/3086-macro-metavar-expr.html
260
0
                            if !has_params!($($p_name),*) {
261
                                return Ok($rq_name::$name {
262
                                    // This code can't be reached if there is any parameter, thus
263
                                    // `unreachable!()` is never called.
264
0
                                    $($p_name: unreachable!(),)*
265
                                })
266
                            } else {
267
0
                                return Err(MethodError::MissingParameters {
268
0
                                    rpc_method: stringify!($name),
269
0
                                });
270
                            }
271
92
                        }
272
273
                        // Then, try parse parameters as if they were passed by name in a map.
274
                        // For example, a method `my_method(foo: i32, bar: &str)` accepts
275
                        // parameters formatted as `{"foo":5, "bar":"hello"}`.
276
                        #[derive(serde::Deserialize)]
277
                        struct Params<'a> {
278
                            $(
279
                                $(#[serde(rename = $p_rpc_name)])*
280
                                $p_name: $p_ty,
281
                            )*
282
283
                            // This `_dummy` field is necessary to not have an "unused lifetime"
284
                            // error if the parameters don't have a lifetime.
285
                            #[serde(borrow, skip)]
286
                            _dummy: core::marker::PhantomData<&'a ()>,
287
                        }
288
92
                        if let Some(Ok(
params68
)) = params.as_ref().map(|p| serde_json::from_str(p)) {
289
68
                            let Params { _dummy: _, $(
$p_name28
),* } = params;
290
68
                            return Ok($rq_name::$name {
291
68
                                $($p_name,)*
292
68
                            })
293
24
                        }
294
295
                        // Otherwise, try parse parameters as if they were passed by array.
296
                        // For example, a method `my_method(foo: i32, bar: &str)` also accepts
297
                        // parameters formatted as `[5, "hello"]`.
298
                        // To make things more complex, optional parameters can be omitted.
299
                        //
300
                        // The code below allocates a `Vec`, but at the time of writing there is
301
                        // no way to ask `serde_json` to parse an array without doing so.
302
24
                        if let Some(Ok(params)) = params.as_ref().map(|p| serde_json::from_str::<Vec<&'a serde_json::value::RawValue>>(p)) {
303
24
                            let mut n = 0;
304
                            $(
305
                                // Missing parameters are implicitly equal to null.
306
0
                                let $p_name = match params.get(n)
307
0
                                    .map(|val| serde_json::from_str(val.get()))
308
0
                                    .unwrap_or_else(|| serde_json::from_str("null"))
309
                                {
310
0
                                    Ok(v) => v,
311
0
                                    Err(err) => return Err(MethodError::InvalidParameter {
312
                                        rpc_method: stringify!($name),
313
0
                                        parameter_index: n,
314
0
                                        error: InvalidParameterError(err),
315
                                    })
316
                                };
317
0
                                n += 1;
318
                            )*
319
24
                            if params.get(n).is_some() {
320
                                return Err(MethodError::TooManyParameters {
321
                                    rpc_method: stringify!($name),
322
0
                                    expected: n,
323
0
                                    actual: params.len(),
324
                                })
325
24
                            }
326
24
                            return Ok($rq_name::$name {
327
24
                                $($p_name,)*
328
24
                            })
329
0
                        }
330
0
331
0
                        return Err(MethodError::InvalidParametersFormat {
332
0
                            rpc_method: stringify!($name),
333
0
                        });
334
3.73k
                    }
335
1
                )*
336
1
337
1
                Err(MethodError::UnknownMethod(name))
338
93
            }
Unexecuted instantiation: _RNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_14ServerToClient9from_defs
339
        }
340
341
        #[allow(non_camel_case_types)]
342
        #[derive(Debug, Clone)]
343
        pub enum $rp_name $(<$l>)* {
344
            $(
345
                $name($ret_ty),
346
            )*
347
        }
348
349
        impl$(<$l>)* $rp_name$(<$l>)* {
350
            /// Serializes the response into a JSON string.
351
            ///
352
            /// `id_json` must be a valid JSON-formatted request identifier, the same the user
353
            /// passed in the request.
354
            ///
355
            /// # Panic
356
            ///
357
            /// Panics if `id_json` isn't valid JSON.
358
            ///
359
19
            pub fn to_json_response(&self, id_json: &str) -> String {
360
19
                match self {
361
                    $(
362
19
                        $rp_name::$name(out) => {
363
19
                            let result_json = serde_json::to_string(&out).unwrap();
364
19
                            parse::build_success_response(id_json, &result_json)
365
                        },
366
                    )*
367
                }
368
19
            }
Unexecuted instantiation: _RNvMsn_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_8Response16to_json_response
Unexecuted instantiation: _RNvMst_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_22ServerToClientResponse16to_json_response
_RNvMsn_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_8Response16to_json_response
Line
Count
Source
359
19
            pub fn to_json_response(&self, id_json: &str) -> String {
360
19
                match self {
361
                    $(
362
19
                        $rp_name::$name(out) => {
363
19
                            let result_json = serde_json::to_string(&out).unwrap();
364
19
                            parse::build_success_response(id_json, &result_json)
365
                        },
366
                    )*
367
                }
368
19
            }
Unexecuted instantiation: _RNvMst_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_22ServerToClientResponse16to_json_response
369
        }
370
    };
371
}
372
373
macro_rules! has_params {
374
    () => {
375
        false
376
    };
377
    ($p1:ident $(, $p:ident)*) => {
378
        true
379
    };
380
}
381
382
// Note: `&str` shouldn't be used, because of https://github.com/serde-rs/json/issues/742
383
// TODO: change everything to take parameters by ref when possible
384
// TODO: change everything to return values by ref when possible
385
200
define_methods! {
386
200
    MethodCall,
387
200
    Response<'a>,
388
200
    account_nextIndex() -> (), // TODO:
389
200
    author_hasKey() -> (), // TODO:
390
200
    author_hasSessionKeys() -> (), // TODO:
391
200
    author_insertKey() -> (), // TODO:
392
200
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
200
    author_removeExtrinsic() -> (), // TODO:
394
200
    author_rotateKeys() -> HexString,
395
200
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
200
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
200
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
200
    babe_epochAuthorship() -> (), // TODO:
399
200
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
200
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
200
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
200
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
200
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
200
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
200
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
200
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
200
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
200
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
200
    childstate_getKeys() -> (), // TODO:
410
200
    childstate_getStorage() -> (), // TODO:
411
200
    childstate_getStorageHash() -> (), // TODO:
412
200
    childstate_getStorageSize() -> (), // TODO:
413
200
    grandpa_roundState() -> (), // TODO:
414
200
    offchain_localStorageGet() -> (), // TODO:
415
200
    offchain_localStorageSet() -> (), // TODO:
416
200
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
200
    /// Returns a list of all JSON-RPC methods that are available.
418
200
    rpc_methods() -> RpcMethods,
419
200
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
200
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
200
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
200
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
200
    state_getPairs() -> (), // TODO:
424
200
    state_getReadProof() -> (), // TODO:
425
200
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
200
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
200
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
200
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
200
    state_queryStorage() -> (), // TODO:
430
200
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
200
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
200
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
200
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
200
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
200
    system_accountNextIndex(account: AccountId) -> u64,
436
200
    system_addReservedPeer() -> (), // TODO:
437
200
    system_chain() -> Cow<'a, str>,
438
200
    system_chainType() -> Cow<'a, str>,
439
200
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
200
    system_health() -> SystemHealth,
441
200
    system_localListenAddresses() -> Vec<String>,
442
200
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
200
    system_localPeerId() -> Cow<'a, str>,
444
200
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
200
    system_name() -> Cow<'a, str>,
446
200
    system_networkState() -> (), // TODO:
447
200
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
200
    system_peers() -> Vec<SystemPeer>,
449
200
    system_properties() -> Box<serde_json::value::RawValue>,
450
200
    system_removeReservedPeer() -> (), // TODO:
451
200
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
200
    system_version() -> Cow<'a, str>,
453
200
454
200
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
200
    chainHead_v1_body(
456
200
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
200
        hash: HashHexString
458
200
    ) -> ChainHeadBodyCallReturn<'a>,
459
200
    chainHead_v1_call(
460
200
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
200
        hash: HashHexString,
462
200
        function: Cow<'a, str>,
463
200
        #[rename = "callParameters"] call_parameters: HexString
464
200
    ) -> ChainHeadBodyCallReturn<'a>,
465
200
    chainHead_v1_follow(
466
200
        #[rename = "withRuntime"] with_runtime: bool
467
200
    ) -> Cow<'a, str>,
468
200
    chainHead_v1_header(
469
200
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
200
        hash: HashHexString
471
200
    ) -> Option<HexString>,
472
200
    chainHead_v1_stopOperation(
473
200
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
200
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
200
    ) -> (),
476
200
    chainHead_v1_storage(
477
200
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
200
        hash: HashHexString,
479
200
        items: Vec<ChainHeadStorageRequestItem>,
480
200
        #[rename = "childTrie"] child_trie: Option<HexString>
481
200
    ) -> ChainHeadStorageReturn<'a>,
482
200
    chainHead_v1_continue(
483
200
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
200
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
200
    ) -> (),
486
200
    chainHead_v1_unfollow(
487
200
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
200
    ) -> (),
489
200
    chainHead_v1_unpin(
490
200
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
200
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
200
    ) -> (),
493
200
494
200
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
200
    chainSpec_v1_genesisHash() -> HashHexString,
496
200
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
200
498
200
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
200
    sudo_unstable_version() -> Cow<'a, str>,
500
200
501
200
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
200
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
200
504
200
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
200
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
200
507
200
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
200
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
200
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
200
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
200
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
200
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
200
}
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4o_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4p_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4r_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4k_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4l_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4m_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4n_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4i_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4j_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4e_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4f_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4g_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4h_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4a_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4b_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4c_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4d_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss46_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss47_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss48_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss49_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss42_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss43_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss44_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss45_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss40_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss41_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3W_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3X_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3Y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3Z_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3U_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3V_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3S_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3T_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3Q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3R_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3K_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3L_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3M_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3N_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3O_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3P_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3G_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3H_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3I_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3J_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3A_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3B_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3C_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3D_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3E_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3F_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3r_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3s_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3t_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3u_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3v_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3w_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3x_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3z_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3k_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3l_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3m_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3n_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3o_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3p_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3e_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3f_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3g_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3h_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3i_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3j_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3a_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3b_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3c_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3d_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss30_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss31_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss32_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss33_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss34_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss35_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss36_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss37_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss38_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss39_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2U_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2V_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2W_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2X_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2Y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2Z_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2S_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2T_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2Q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2R_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2O_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2P_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2M_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2N_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2K_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2L_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2I_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2J_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2G_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2H_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2E_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2F_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2C_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2D_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2A_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2B_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2z_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2w_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2x_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2u_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2v_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2s_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2t_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2o_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2p_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2r_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2k_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2l_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2m_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2n_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2g_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2h_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2i_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2j_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2c_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2d_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2e_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2f_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2a_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2b_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss24_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss25_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss26_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss27_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss28_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss29_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss22_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss23_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss20_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss21_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1Y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1Z_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1S_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1T_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1U_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1V_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1W_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1X_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1O_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1P_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1Q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1R_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1M_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1N_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1K_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1L_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1G_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1H_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1I_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1J_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1w_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1x_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1z_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1A_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1B_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1C_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1D_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1E_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1F_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1r_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1s_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1t_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1u_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1v_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1i_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1j_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1k_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1l_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1m_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1n_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1o_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1p_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1g_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1h_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1a_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1b_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1c_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1d_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1e_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1f_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss18_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss19_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss16_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss17_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss14_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss15_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss12_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss13_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss10_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss11_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssY_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssZ_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssW_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssX_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssS_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssT_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssU_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssV_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssO_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssP_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssQ_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssR_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssK_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssL_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssM_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssN_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssI_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssJ_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssG_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssH_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssE_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssF_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssA_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssB_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssC_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssD_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssy_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssz_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssu_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssv_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssw_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssx_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssq_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssr_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defsss_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defsst_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defsso_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssp_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssk_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssl_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssm_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssn_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssg_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssh_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssi_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssj_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssc_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssd_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defsse_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssf_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssa_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssb_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss8_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss9_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss6_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss7_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss5_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss0_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defs0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4o_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4p_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4r_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4k_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4l_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4m_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4n_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4i_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4j_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4e_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4f_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4g_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4h_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4a_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4b_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4c_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4d_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss46_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss47_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss48_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss49_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss42_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss43_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss44_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss45_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss40_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss41_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3W_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3X_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3Y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3Z_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3U_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3V_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3S_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3T_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3Q_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3R_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3K_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3L_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3M_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3N_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3O_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3P_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3G_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3H_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3I_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3J_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3A_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3B_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3C_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3D_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3E_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3F_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3r_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3s_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3t_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3u_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3v_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3w_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3x_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3z_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3k_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3l_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3m_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3n_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3o_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3p_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3e_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3f_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3g_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3h_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3i_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3j_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3a_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3b_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3c_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3d_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss30_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss31_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss32_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss33_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss34_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss35_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss36_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss37_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss38_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss39_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2U_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2V_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2W_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2X_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2Y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2Z_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2S_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2T_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2Q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2R_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2O_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2P_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2M_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2N_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2K_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2L_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2I_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2J_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2G_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2H_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2E_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2F_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2C_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2D_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2A_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2B_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2z_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2w_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2x_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2u_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2v_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2s_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2t_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2o_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2p_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2r_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2k_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2l_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2m_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2n_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2g_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2h_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2i_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2j_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2c_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2d_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2e_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2f_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2a_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2b_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss24_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss25_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss26_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss27_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss28_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss29_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss22_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss23_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss20_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss21_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1Y_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1Z_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1S_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1T_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1U_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1V_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1W_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1X_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1O_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1P_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1Q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1R_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1M_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1N_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1K_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1L_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1G_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1H_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1I_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1J_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1w_0Bb_
Line
Count
Source
385
24
define_methods! {
386
24
    MethodCall,
387
24
    Response<'a>,
388
24
    account_nextIndex() -> (), // TODO:
389
24
    author_hasKey() -> (), // TODO:
390
24
    author_hasSessionKeys() -> (), // TODO:
391
24
    author_insertKey() -> (), // TODO:
392
24
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
24
    author_removeExtrinsic() -> (), // TODO:
394
24
    author_rotateKeys() -> HexString,
395
24
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
24
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
24
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
24
    babe_epochAuthorship() -> (), // TODO:
399
24
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
24
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
24
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
24
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
24
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
24
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
24
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
24
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
24
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
24
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
24
    childstate_getKeys() -> (), // TODO:
410
24
    childstate_getStorage() -> (), // TODO:
411
24
    childstate_getStorageHash() -> (), // TODO:
412
24
    childstate_getStorageSize() -> (), // TODO:
413
24
    grandpa_roundState() -> (), // TODO:
414
24
    offchain_localStorageGet() -> (), // TODO:
415
24
    offchain_localStorageSet() -> (), // TODO:
416
24
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
24
    /// Returns a list of all JSON-RPC methods that are available.
418
24
    rpc_methods() -> RpcMethods,
419
24
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
24
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
24
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
24
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
24
    state_getPairs() -> (), // TODO:
424
24
    state_getReadProof() -> (), // TODO:
425
24
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
24
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
24
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
24
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
24
    state_queryStorage() -> (), // TODO:
430
24
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
24
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
24
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
24
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
24
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
24
    system_accountNextIndex(account: AccountId) -> u64,
436
24
    system_addReservedPeer() -> (), // TODO:
437
24
    system_chain() -> Cow<'a, str>,
438
24
    system_chainType() -> Cow<'a, str>,
439
24
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
24
    system_health() -> SystemHealth,
441
24
    system_localListenAddresses() -> Vec<String>,
442
24
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
24
    system_localPeerId() -> Cow<'a, str>,
444
24
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
24
    system_name() -> Cow<'a, str>,
446
24
    system_networkState() -> (), // TODO:
447
24
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
24
    system_peers() -> Vec<SystemPeer>,
449
24
    system_properties() -> Box<serde_json::value::RawValue>,
450
24
    system_removeReservedPeer() -> (), // TODO:
451
24
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
24
    system_version() -> Cow<'a, str>,
453
24
454
24
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
24
    chainHead_v1_body(
456
24
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
24
        hash: HashHexString
458
24
    ) -> ChainHeadBodyCallReturn<'a>,
459
24
    chainHead_v1_call(
460
24
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
24
        hash: HashHexString,
462
24
        function: Cow<'a, str>,
463
24
        #[rename = "callParameters"] call_parameters: HexString
464
24
    ) -> ChainHeadBodyCallReturn<'a>,
465
24
    chainHead_v1_follow(
466
24
        #[rename = "withRuntime"] with_runtime: bool
467
24
    ) -> Cow<'a, str>,
468
24
    chainHead_v1_header(
469
24
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
24
        hash: HashHexString
471
24
    ) -> Option<HexString>,
472
24
    chainHead_v1_stopOperation(
473
24
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
24
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
24
    ) -> (),
476
24
    chainHead_v1_storage(
477
24
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
24
        hash: HashHexString,
479
24
        items: Vec<ChainHeadStorageRequestItem>,
480
24
        #[rename = "childTrie"] child_trie: Option<HexString>
481
24
    ) -> ChainHeadStorageReturn<'a>,
482
24
    chainHead_v1_continue(
483
24
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
24
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
24
    ) -> (),
486
24
    chainHead_v1_unfollow(
487
24
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
24
    ) -> (),
489
24
    chainHead_v1_unpin(
490
24
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
24
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
24
    ) -> (),
493
24
494
24
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
24
    chainSpec_v1_genesisHash() -> HashHexString,
496
24
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
24
498
24
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
24
    sudo_unstable_version() -> Cow<'a, str>,
500
24
501
24
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
24
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
24
504
24
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
24
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
24
507
24
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
24
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
24
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
24
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
24
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
24
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
24
}
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1x_0Bb_
Line
Count
Source
385
20
define_methods! {
386
20
    MethodCall,
387
20
    Response<'a>,
388
20
    account_nextIndex() -> (), // TODO:
389
20
    author_hasKey() -> (), // TODO:
390
20
    author_hasSessionKeys() -> (), // TODO:
391
20
    author_insertKey() -> (), // TODO:
392
20
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
20
    author_removeExtrinsic() -> (), // TODO:
394
20
    author_rotateKeys() -> HexString,
395
20
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
20
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
20
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
20
    babe_epochAuthorship() -> (), // TODO:
399
20
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
20
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
20
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
20
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
20
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
20
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
20
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
20
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
20
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
20
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
20
    childstate_getKeys() -> (), // TODO:
410
20
    childstate_getStorage() -> (), // TODO:
411
20
    childstate_getStorageHash() -> (), // TODO:
412
20
    childstate_getStorageSize() -> (), // TODO:
413
20
    grandpa_roundState() -> (), // TODO:
414
20
    offchain_localStorageGet() -> (), // TODO:
415
20
    offchain_localStorageSet() -> (), // TODO:
416
20
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
20
    /// Returns a list of all JSON-RPC methods that are available.
418
20
    rpc_methods() -> RpcMethods,
419
20
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
20
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
20
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
20
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
20
    state_getPairs() -> (), // TODO:
424
20
    state_getReadProof() -> (), // TODO:
425
20
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
20
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
20
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
20
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
20
    state_queryStorage() -> (), // TODO:
430
20
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
20
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
20
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
20
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
20
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
20
    system_accountNextIndex(account: AccountId) -> u64,
436
20
    system_addReservedPeer() -> (), // TODO:
437
20
    system_chain() -> Cow<'a, str>,
438
20
    system_chainType() -> Cow<'a, str>,
439
20
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
20
    system_health() -> SystemHealth,
441
20
    system_localListenAddresses() -> Vec<String>,
442
20
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
20
    system_localPeerId() -> Cow<'a, str>,
444
20
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
20
    system_name() -> Cow<'a, str>,
446
20
    system_networkState() -> (), // TODO:
447
20
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
20
    system_peers() -> Vec<SystemPeer>,
449
20
    system_properties() -> Box<serde_json::value::RawValue>,
450
20
    system_removeReservedPeer() -> (), // TODO:
451
20
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
20
    system_version() -> Cow<'a, str>,
453
20
454
20
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
20
    chainHead_v1_body(
456
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
20
        hash: HashHexString
458
20
    ) -> ChainHeadBodyCallReturn<'a>,
459
20
    chainHead_v1_call(
460
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
20
        hash: HashHexString,
462
20
        function: Cow<'a, str>,
463
20
        #[rename = "callParameters"] call_parameters: HexString
464
20
    ) -> ChainHeadBodyCallReturn<'a>,
465
20
    chainHead_v1_follow(
466
20
        #[rename = "withRuntime"] with_runtime: bool
467
20
    ) -> Cow<'a, str>,
468
20
    chainHead_v1_header(
469
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
20
        hash: HashHexString
471
20
    ) -> Option<HexString>,
472
20
    chainHead_v1_stopOperation(
473
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
20
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
20
    ) -> (),
476
20
    chainHead_v1_storage(
477
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
20
        hash: HashHexString,
479
20
        items: Vec<ChainHeadStorageRequestItem>,
480
20
        #[rename = "childTrie"] child_trie: Option<HexString>
481
20
    ) -> ChainHeadStorageReturn<'a>,
482
20
    chainHead_v1_continue(
483
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
20
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
20
    ) -> (),
486
20
    chainHead_v1_unfollow(
487
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
20
    ) -> (),
489
20
    chainHead_v1_unpin(
490
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
20
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
20
    ) -> (),
493
20
494
20
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
20
    chainSpec_v1_genesisHash() -> HashHexString,
496
20
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
20
498
20
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
20
    sudo_unstable_version() -> Cow<'a, str>,
500
20
501
20
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
20
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
20
504
20
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
20
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
20
507
20
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
20
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
20
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
20
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
20
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
20
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
20
}
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1y_0Bb_
Line
Count
Source
385
20
define_methods! {
386
20
    MethodCall,
387
20
    Response<'a>,
388
20
    account_nextIndex() -> (), // TODO:
389
20
    author_hasKey() -> (), // TODO:
390
20
    author_hasSessionKeys() -> (), // TODO:
391
20
    author_insertKey() -> (), // TODO:
392
20
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
20
    author_removeExtrinsic() -> (), // TODO:
394
20
    author_rotateKeys() -> HexString,
395
20
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
20
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
20
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
20
    babe_epochAuthorship() -> (), // TODO:
399
20
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
20
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
20
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
20
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
20
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
20
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
20
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
20
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
20
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
20
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
20
    childstate_getKeys() -> (), // TODO:
410
20
    childstate_getStorage() -> (), // TODO:
411
20
    childstate_getStorageHash() -> (), // TODO:
412
20
    childstate_getStorageSize() -> (), // TODO:
413
20
    grandpa_roundState() -> (), // TODO:
414
20
    offchain_localStorageGet() -> (), // TODO:
415
20
    offchain_localStorageSet() -> (), // TODO:
416
20
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
20
    /// Returns a list of all JSON-RPC methods that are available.
418
20
    rpc_methods() -> RpcMethods,
419
20
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
20
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
20
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
20
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
20
    state_getPairs() -> (), // TODO:
424
20
    state_getReadProof() -> (), // TODO:
425
20
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
20
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
20
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
20
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
20
    state_queryStorage() -> (), // TODO:
430
20
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
20
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
20
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
20
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
20
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
20
    system_accountNextIndex(account: AccountId) -> u64,
436
20
    system_addReservedPeer() -> (), // TODO:
437
20
    system_chain() -> Cow<'a, str>,
438
20
    system_chainType() -> Cow<'a, str>,
439
20
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
20
    system_health() -> SystemHealth,
441
20
    system_localListenAddresses() -> Vec<String>,
442
20
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
20
    system_localPeerId() -> Cow<'a, str>,
444
20
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
20
    system_name() -> Cow<'a, str>,
446
20
    system_networkState() -> (), // TODO:
447
20
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
20
    system_peers() -> Vec<SystemPeer>,
449
20
    system_properties() -> Box<serde_json::value::RawValue>,
450
20
    system_removeReservedPeer() -> (), // TODO:
451
20
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
20
    system_version() -> Cow<'a, str>,
453
20
454
20
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
20
    chainHead_v1_body(
456
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
20
        hash: HashHexString
458
20
    ) -> ChainHeadBodyCallReturn<'a>,
459
20
    chainHead_v1_call(
460
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
20
        hash: HashHexString,
462
20
        function: Cow<'a, str>,
463
20
        #[rename = "callParameters"] call_parameters: HexString
464
20
    ) -> ChainHeadBodyCallReturn<'a>,
465
20
    chainHead_v1_follow(
466
20
        #[rename = "withRuntime"] with_runtime: bool
467
20
    ) -> Cow<'a, str>,
468
20
    chainHead_v1_header(
469
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
20
        hash: HashHexString
471
20
    ) -> Option<HexString>,
472
20
    chainHead_v1_stopOperation(
473
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
20
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
20
    ) -> (),
476
20
    chainHead_v1_storage(
477
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
20
        hash: HashHexString,
479
20
        items: Vec<ChainHeadStorageRequestItem>,
480
20
        #[rename = "childTrie"] child_trie: Option<HexString>
481
20
    ) -> ChainHeadStorageReturn<'a>,
482
20
    chainHead_v1_continue(
483
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
20
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
20
    ) -> (),
486
20
    chainHead_v1_unfollow(
487
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
20
    ) -> (),
489
20
    chainHead_v1_unpin(
490
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
20
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
20
    ) -> (),
493
20
494
20
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
20
    chainSpec_v1_genesisHash() -> HashHexString,
496
20
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
20
498
20
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
20
    sudo_unstable_version() -> Cow<'a, str>,
500
20
501
20
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
20
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
20
504
20
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
20
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
20
507
20
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
20
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
20
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
20
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
20
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
20
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
20
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1z_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1A_0Bb_
Line
Count
Source
385
20
define_methods! {
386
20
    MethodCall,
387
20
    Response<'a>,
388
20
    account_nextIndex() -> (), // TODO:
389
20
    author_hasKey() -> (), // TODO:
390
20
    author_hasSessionKeys() -> (), // TODO:
391
20
    author_insertKey() -> (), // TODO:
392
20
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
20
    author_removeExtrinsic() -> (), // TODO:
394
20
    author_rotateKeys() -> HexString,
395
20
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
20
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
20
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
20
    babe_epochAuthorship() -> (), // TODO:
399
20
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
20
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
20
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
20
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
20
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
20
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
20
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
20
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
20
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
20
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
20
    childstate_getKeys() -> (), // TODO:
410
20
    childstate_getStorage() -> (), // TODO:
411
20
    childstate_getStorageHash() -> (), // TODO:
412
20
    childstate_getStorageSize() -> (), // TODO:
413
20
    grandpa_roundState() -> (), // TODO:
414
20
    offchain_localStorageGet() -> (), // TODO:
415
20
    offchain_localStorageSet() -> (), // TODO:
416
20
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
20
    /// Returns a list of all JSON-RPC methods that are available.
418
20
    rpc_methods() -> RpcMethods,
419
20
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
20
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
20
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
20
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
20
    state_getPairs() -> (), // TODO:
424
20
    state_getReadProof() -> (), // TODO:
425
20
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
20
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
20
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
20
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
20
    state_queryStorage() -> (), // TODO:
430
20
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
20
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
20
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
20
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
20
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
20
    system_accountNextIndex(account: AccountId) -> u64,
436
20
    system_addReservedPeer() -> (), // TODO:
437
20
    system_chain() -> Cow<'a, str>,
438
20
    system_chainType() -> Cow<'a, str>,
439
20
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
20
    system_health() -> SystemHealth,
441
20
    system_localListenAddresses() -> Vec<String>,
442
20
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
20
    system_localPeerId() -> Cow<'a, str>,
444
20
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
20
    system_name() -> Cow<'a, str>,
446
20
    system_networkState() -> (), // TODO:
447
20
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
20
    system_peers() -> Vec<SystemPeer>,
449
20
    system_properties() -> Box<serde_json::value::RawValue>,
450
20
    system_removeReservedPeer() -> (), // TODO:
451
20
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
20
    system_version() -> Cow<'a, str>,
453
20
454
20
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
20
    chainHead_v1_body(
456
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
20
        hash: HashHexString
458
20
    ) -> ChainHeadBodyCallReturn<'a>,
459
20
    chainHead_v1_call(
460
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
20
        hash: HashHexString,
462
20
        function: Cow<'a, str>,
463
20
        #[rename = "callParameters"] call_parameters: HexString
464
20
    ) -> ChainHeadBodyCallReturn<'a>,
465
20
    chainHead_v1_follow(
466
20
        #[rename = "withRuntime"] with_runtime: bool
467
20
    ) -> Cow<'a, str>,
468
20
    chainHead_v1_header(
469
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
20
        hash: HashHexString
471
20
    ) -> Option<HexString>,
472
20
    chainHead_v1_stopOperation(
473
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
20
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
20
    ) -> (),
476
20
    chainHead_v1_storage(
477
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
20
        hash: HashHexString,
479
20
        items: Vec<ChainHeadStorageRequestItem>,
480
20
        #[rename = "childTrie"] child_trie: Option<HexString>
481
20
    ) -> ChainHeadStorageReturn<'a>,
482
20
    chainHead_v1_continue(
483
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
20
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
20
    ) -> (),
486
20
    chainHead_v1_unfollow(
487
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
20
    ) -> (),
489
20
    chainHead_v1_unpin(
490
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
20
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
20
    ) -> (),
493
20
494
20
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
20
    chainSpec_v1_genesisHash() -> HashHexString,
496
20
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
20
498
20
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
20
    sudo_unstable_version() -> Cow<'a, str>,
500
20
501
20
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
20
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
20
504
20
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
20
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
20
507
20
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
20
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
20
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
20
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
20
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
20
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
20
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1B_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1C_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1D_0Bb_
Line
Count
Source
385
16
define_methods! {
386
16
    MethodCall,
387
16
    Response<'a>,
388
16
    account_nextIndex() -> (), // TODO:
389
16
    author_hasKey() -> (), // TODO:
390
16
    author_hasSessionKeys() -> (), // TODO:
391
16
    author_insertKey() -> (), // TODO:
392
16
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
16
    author_removeExtrinsic() -> (), // TODO:
394
16
    author_rotateKeys() -> HexString,
395
16
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
16
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
16
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
16
    babe_epochAuthorship() -> (), // TODO:
399
16
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
16
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
16
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
16
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
16
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
16
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
16
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
16
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
16
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
16
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
16
    childstate_getKeys() -> (), // TODO:
410
16
    childstate_getStorage() -> (), // TODO:
411
16
    childstate_getStorageHash() -> (), // TODO:
412
16
    childstate_getStorageSize() -> (), // TODO:
413
16
    grandpa_roundState() -> (), // TODO:
414
16
    offchain_localStorageGet() -> (), // TODO:
415
16
    offchain_localStorageSet() -> (), // TODO:
416
16
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
16
    /// Returns a list of all JSON-RPC methods that are available.
418
16
    rpc_methods() -> RpcMethods,
419
16
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
16
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
16
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
16
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
16
    state_getPairs() -> (), // TODO:
424
16
    state_getReadProof() -> (), // TODO:
425
16
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
16
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
16
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
16
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
16
    state_queryStorage() -> (), // TODO:
430
16
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
16
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
16
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
16
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
16
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
16
    system_accountNextIndex(account: AccountId) -> u64,
436
16
    system_addReservedPeer() -> (), // TODO:
437
16
    system_chain() -> Cow<'a, str>,
438
16
    system_chainType() -> Cow<'a, str>,
439
16
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
16
    system_health() -> SystemHealth,
441
16
    system_localListenAddresses() -> Vec<String>,
442
16
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
16
    system_localPeerId() -> Cow<'a, str>,
444
16
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
16
    system_name() -> Cow<'a, str>,
446
16
    system_networkState() -> (), // TODO:
447
16
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
16
    system_peers() -> Vec<SystemPeer>,
449
16
    system_properties() -> Box<serde_json::value::RawValue>,
450
16
    system_removeReservedPeer() -> (), // TODO:
451
16
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
16
    system_version() -> Cow<'a, str>,
453
16
454
16
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
16
    chainHead_v1_body(
456
16
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
16
        hash: HashHexString
458
16
    ) -> ChainHeadBodyCallReturn<'a>,
459
16
    chainHead_v1_call(
460
16
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
16
        hash: HashHexString,
462
16
        function: Cow<'a, str>,
463
16
        #[rename = "callParameters"] call_parameters: HexString
464
16
    ) -> ChainHeadBodyCallReturn<'a>,
465
16
    chainHead_v1_follow(
466
16
        #[rename = "withRuntime"] with_runtime: bool
467
16
    ) -> Cow<'a, str>,
468
16
    chainHead_v1_header(
469
16
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
16
        hash: HashHexString
471
16
    ) -> Option<HexString>,
472
16
    chainHead_v1_stopOperation(
473
16
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
16
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
16
    ) -> (),
476
16
    chainHead_v1_storage(
477
16
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
16
        hash: HashHexString,
479
16
        items: Vec<ChainHeadStorageRequestItem>,
480
16
        #[rename = "childTrie"] child_trie: Option<HexString>
481
16
    ) -> ChainHeadStorageReturn<'a>,
482
16
    chainHead_v1_continue(
483
16
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
16
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
16
    ) -> (),
486
16
    chainHead_v1_unfollow(
487
16
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
16
    ) -> (),
489
16
    chainHead_v1_unpin(
490
16
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
16
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
16
    ) -> (),
493
16
494
16
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
16
    chainSpec_v1_genesisHash() -> HashHexString,
496
16
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
16
498
16
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
16
    sudo_unstable_version() -> Cow<'a, str>,
500
16
501
16
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
16
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
16
504
16
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
16
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
16
507
16
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
16
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
16
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
16
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
16
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
16
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
16
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1E_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1F_0Bb_
Line
Count
Source
385
20
define_methods! {
386
20
    MethodCall,
387
20
    Response<'a>,
388
20
    account_nextIndex() -> (), // TODO:
389
20
    author_hasKey() -> (), // TODO:
390
20
    author_hasSessionKeys() -> (), // TODO:
391
20
    author_insertKey() -> (), // TODO:
392
20
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
20
    author_removeExtrinsic() -> (), // TODO:
394
20
    author_rotateKeys() -> HexString,
395
20
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
20
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
20
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
20
    babe_epochAuthorship() -> (), // TODO:
399
20
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
20
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
20
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
20
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
20
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
20
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
20
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
20
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
20
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
20
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
20
    childstate_getKeys() -> (), // TODO:
410
20
    childstate_getStorage() -> (), // TODO:
411
20
    childstate_getStorageHash() -> (), // TODO:
412
20
    childstate_getStorageSize() -> (), // TODO:
413
20
    grandpa_roundState() -> (), // TODO:
414
20
    offchain_localStorageGet() -> (), // TODO:
415
20
    offchain_localStorageSet() -> (), // TODO:
416
20
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
20
    /// Returns a list of all JSON-RPC methods that are available.
418
20
    rpc_methods() -> RpcMethods,
419
20
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
20
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
20
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
20
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
20
    state_getPairs() -> (), // TODO:
424
20
    state_getReadProof() -> (), // TODO:
425
20
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
20
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
20
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
20
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
20
    state_queryStorage() -> (), // TODO:
430
20
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
20
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
20
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
20
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
20
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
20
    system_accountNextIndex(account: AccountId) -> u64,
436
20
    system_addReservedPeer() -> (), // TODO:
437
20
    system_chain() -> Cow<'a, str>,
438
20
    system_chainType() -> Cow<'a, str>,
439
20
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
20
    system_health() -> SystemHealth,
441
20
    system_localListenAddresses() -> Vec<String>,
442
20
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
20
    system_localPeerId() -> Cow<'a, str>,
444
20
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
20
    system_name() -> Cow<'a, str>,
446
20
    system_networkState() -> (), // TODO:
447
20
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
20
    system_peers() -> Vec<SystemPeer>,
449
20
    system_properties() -> Box<serde_json::value::RawValue>,
450
20
    system_removeReservedPeer() -> (), // TODO:
451
20
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
20
    system_version() -> Cow<'a, str>,
453
20
454
20
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
20
    chainHead_v1_body(
456
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
20
        hash: HashHexString
458
20
    ) -> ChainHeadBodyCallReturn<'a>,
459
20
    chainHead_v1_call(
460
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
20
        hash: HashHexString,
462
20
        function: Cow<'a, str>,
463
20
        #[rename = "callParameters"] call_parameters: HexString
464
20
    ) -> ChainHeadBodyCallReturn<'a>,
465
20
    chainHead_v1_follow(
466
20
        #[rename = "withRuntime"] with_runtime: bool
467
20
    ) -> Cow<'a, str>,
468
20
    chainHead_v1_header(
469
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
20
        hash: HashHexString
471
20
    ) -> Option<HexString>,
472
20
    chainHead_v1_stopOperation(
473
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
20
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
20
    ) -> (),
476
20
    chainHead_v1_storage(
477
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
20
        hash: HashHexString,
479
20
        items: Vec<ChainHeadStorageRequestItem>,
480
20
        #[rename = "childTrie"] child_trie: Option<HexString>
481
20
    ) -> ChainHeadStorageReturn<'a>,
482
20
    chainHead_v1_continue(
483
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
20
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
20
    ) -> (),
486
20
    chainHead_v1_unfollow(
487
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
20
    ) -> (),
489
20
    chainHead_v1_unpin(
490
20
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
20
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
20
    ) -> (),
493
20
494
20
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
20
    chainSpec_v1_genesisHash() -> HashHexString,
496
20
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
20
498
20
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
20
    sudo_unstable_version() -> Cow<'a, str>,
500
20
501
20
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
20
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
20
504
20
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
20
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
20
507
20
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
20
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
20
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
20
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
20
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
20
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
20
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1q_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1r_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1s_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1t_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1u_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1v_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1i_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1j_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1k_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1l_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1m_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1n_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1o_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1p_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1g_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1h_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1a_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1b_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1c_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1d_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1e_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1f_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss18_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss19_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss16_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss17_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss14_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss15_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss12_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss13_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss10_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss11_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssY_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssZ_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssW_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssX_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssS_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssT_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssU_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssV_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssO_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssP_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssQ_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssR_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssK_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssL_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssM_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssN_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssI_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssJ_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssG_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssH_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssE_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssF_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssA_0Bb_
Line
Count
Source
385
12
define_methods! {
386
12
    MethodCall,
387
12
    Response<'a>,
388
12
    account_nextIndex() -> (), // TODO:
389
12
    author_hasKey() -> (), // TODO:
390
12
    author_hasSessionKeys() -> (), // TODO:
391
12
    author_insertKey() -> (), // TODO:
392
12
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
12
    author_removeExtrinsic() -> (), // TODO:
394
12
    author_rotateKeys() -> HexString,
395
12
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
12
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
12
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
12
    babe_epochAuthorship() -> (), // TODO:
399
12
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
12
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
12
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
12
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
12
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
12
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
12
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
12
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
12
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
12
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
12
    childstate_getKeys() -> (), // TODO:
410
12
    childstate_getStorage() -> (), // TODO:
411
12
    childstate_getStorageHash() -> (), // TODO:
412
12
    childstate_getStorageSize() -> (), // TODO:
413
12
    grandpa_roundState() -> (), // TODO:
414
12
    offchain_localStorageGet() -> (), // TODO:
415
12
    offchain_localStorageSet() -> (), // TODO:
416
12
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
12
    /// Returns a list of all JSON-RPC methods that are available.
418
12
    rpc_methods() -> RpcMethods,
419
12
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
12
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
12
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
12
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
12
    state_getPairs() -> (), // TODO:
424
12
    state_getReadProof() -> (), // TODO:
425
12
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
12
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
12
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
12
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
12
    state_queryStorage() -> (), // TODO:
430
12
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
12
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
12
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
12
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
12
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
12
    system_accountNextIndex(account: AccountId) -> u64,
436
12
    system_addReservedPeer() -> (), // TODO:
437
12
    system_chain() -> Cow<'a, str>,
438
12
    system_chainType() -> Cow<'a, str>,
439
12
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
12
    system_health() -> SystemHealth,
441
12
    system_localListenAddresses() -> Vec<String>,
442
12
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
12
    system_localPeerId() -> Cow<'a, str>,
444
12
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
12
    system_name() -> Cow<'a, str>,
446
12
    system_networkState() -> (), // TODO:
447
12
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
12
    system_peers() -> Vec<SystemPeer>,
449
12
    system_properties() -> Box<serde_json::value::RawValue>,
450
12
    system_removeReservedPeer() -> (), // TODO:
451
12
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
12
    system_version() -> Cow<'a, str>,
453
12
454
12
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
12
    chainHead_v1_body(
456
12
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
12
        hash: HashHexString
458
12
    ) -> ChainHeadBodyCallReturn<'a>,
459
12
    chainHead_v1_call(
460
12
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
12
        hash: HashHexString,
462
12
        function: Cow<'a, str>,
463
12
        #[rename = "callParameters"] call_parameters: HexString
464
12
    ) -> ChainHeadBodyCallReturn<'a>,
465
12
    chainHead_v1_follow(
466
12
        #[rename = "withRuntime"] with_runtime: bool
467
12
    ) -> Cow<'a, str>,
468
12
    chainHead_v1_header(
469
12
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
12
        hash: HashHexString
471
12
    ) -> Option<HexString>,
472
12
    chainHead_v1_stopOperation(
473
12
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
12
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
12
    ) -> (),
476
12
    chainHead_v1_storage(
477
12
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
12
        hash: HashHexString,
479
12
        items: Vec<ChainHeadStorageRequestItem>,
480
12
        #[rename = "childTrie"] child_trie: Option<HexString>
481
12
    ) -> ChainHeadStorageReturn<'a>,
482
12
    chainHead_v1_continue(
483
12
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
12
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
12
    ) -> (),
486
12
    chainHead_v1_unfollow(
487
12
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
12
    ) -> (),
489
12
    chainHead_v1_unpin(
490
12
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
12
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
12
    ) -> (),
493
12
494
12
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
12
    chainSpec_v1_genesisHash() -> HashHexString,
496
12
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
12
498
12
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
12
    sudo_unstable_version() -> Cow<'a, str>,
500
12
501
12
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
12
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
12
504
12
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
12
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
12
507
12
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
12
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
12
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
12
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
12
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
12
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
12
}
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssB_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssC_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssD_0Bb_
Line
Count
Source
385
4
define_methods! {
386
4
    MethodCall,
387
4
    Response<'a>,
388
4
    account_nextIndex() -> (), // TODO:
389
4
    author_hasKey() -> (), // TODO:
390
4
    author_hasSessionKeys() -> (), // TODO:
391
4
    author_insertKey() -> (), // TODO:
392
4
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
4
    author_removeExtrinsic() -> (), // TODO:
394
4
    author_rotateKeys() -> HexString,
395
4
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
4
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
4
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
4
    babe_epochAuthorship() -> (), // TODO:
399
4
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
4
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
4
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
4
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
4
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
4
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
4
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
4
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
4
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
4
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
4
    childstate_getKeys() -> (), // TODO:
410
4
    childstate_getStorage() -> (), // TODO:
411
4
    childstate_getStorageHash() -> (), // TODO:
412
4
    childstate_getStorageSize() -> (), // TODO:
413
4
    grandpa_roundState() -> (), // TODO:
414
4
    offchain_localStorageGet() -> (), // TODO:
415
4
    offchain_localStorageSet() -> (), // TODO:
416
4
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
4
    /// Returns a list of all JSON-RPC methods that are available.
418
4
    rpc_methods() -> RpcMethods,
419
4
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
4
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
4
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
4
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
4
    state_getPairs() -> (), // TODO:
424
4
    state_getReadProof() -> (), // TODO:
425
4
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
4
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
4
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
4
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
4
    state_queryStorage() -> (), // TODO:
430
4
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
4
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
4
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
4
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
4
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
4
    system_accountNextIndex(account: AccountId) -> u64,
436
4
    system_addReservedPeer() -> (), // TODO:
437
4
    system_chain() -> Cow<'a, str>,
438
4
    system_chainType() -> Cow<'a, str>,
439
4
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
4
    system_health() -> SystemHealth,
441
4
    system_localListenAddresses() -> Vec<String>,
442
4
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
4
    system_localPeerId() -> Cow<'a, str>,
444
4
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
4
    system_name() -> Cow<'a, str>,
446
4
    system_networkState() -> (), // TODO:
447
4
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
4
    system_peers() -> Vec<SystemPeer>,
449
4
    system_properties() -> Box<serde_json::value::RawValue>,
450
4
    system_removeReservedPeer() -> (), // TODO:
451
4
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
4
    system_version() -> Cow<'a, str>,
453
4
454
4
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
4
    chainHead_v1_body(
456
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
4
        hash: HashHexString
458
4
    ) -> ChainHeadBodyCallReturn<'a>,
459
4
    chainHead_v1_call(
460
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
4
        hash: HashHexString,
462
4
        function: Cow<'a, str>,
463
4
        #[rename = "callParameters"] call_parameters: HexString
464
4
    ) -> ChainHeadBodyCallReturn<'a>,
465
4
    chainHead_v1_follow(
466
4
        #[rename = "withRuntime"] with_runtime: bool
467
4
    ) -> Cow<'a, str>,
468
4
    chainHead_v1_header(
469
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
4
        hash: HashHexString
471
4
    ) -> Option<HexString>,
472
4
    chainHead_v1_stopOperation(
473
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
4
    ) -> (),
476
4
    chainHead_v1_storage(
477
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
4
        hash: HashHexString,
479
4
        items: Vec<ChainHeadStorageRequestItem>,
480
4
        #[rename = "childTrie"] child_trie: Option<HexString>
481
4
    ) -> ChainHeadStorageReturn<'a>,
482
4
    chainHead_v1_continue(
483
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
4
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
4
    ) -> (),
486
4
    chainHead_v1_unfollow(
487
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
4
    ) -> (),
489
4
    chainHead_v1_unpin(
490
4
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
4
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
4
    ) -> (),
493
4
494
4
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
4
    chainSpec_v1_genesisHash() -> HashHexString,
496
4
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
4
498
4
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
4
    sudo_unstable_version() -> Cow<'a, str>,
500
4
501
4
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
4
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
4
504
4
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
4
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
4
507
4
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
4
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
4
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
4
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
4
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
4
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
4
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssy_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssz_0Bb_
_RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssu_0Bb_
Line
Count
Source
385
8
define_methods! {
386
8
    MethodCall,
387
8
    Response<'a>,
388
8
    account_nextIndex() -> (), // TODO:
389
8
    author_hasKey() -> (), // TODO:
390
8
    author_hasSessionKeys() -> (), // TODO:
391
8
    author_insertKey() -> (), // TODO:
392
8
    author_pendingExtrinsics() -> Vec<HexString>,  // TODO: what does the returned value mean?
393
8
    author_removeExtrinsic() -> (), // TODO:
394
8
    author_rotateKeys() -> HexString,
395
8
    author_submitAndWatchExtrinsic(transaction: HexString) -> Cow<'a, str>,
396
8
    author_submitExtrinsic(transaction: HexString) -> HashHexString,
397
8
    author_unwatchExtrinsic(subscription: Cow<'a, str>) -> bool,
398
8
    babe_epochAuthorship() -> (), // TODO:
399
8
    chain_getBlock(hash: Option<HashHexString>) -> Block,
400
8
    chain_getBlockHash(height: Option<u64>) -> HashHexString [chain_getHead],
401
8
    chain_getFinalizedHead() -> HashHexString [chain_getFinalisedHead],
402
8
    chain_getHeader(hash: Option<HashHexString>) -> Header, // TODO: return type is guessed
403
8
    chain_subscribeAllHeads() -> Cow<'a, str>,
404
8
    chain_subscribeFinalizedHeads() -> Cow<'a, str> [chain_subscribeFinalisedHeads],
405
8
    chain_subscribeNewHeads() -> Cow<'a, str> [subscribe_newHead, chain_subscribeNewHead],
406
8
    chain_unsubscribeAllHeads(subscription: String) -> bool,
407
8
    chain_unsubscribeFinalizedHeads(subscription: String) -> bool [chain_unsubscribeFinalisedHeads],
408
8
    chain_unsubscribeNewHeads(subscription: String) -> bool [unsubscribe_newHead, chain_unsubscribeNewHead],
409
8
    childstate_getKeys() -> (), // TODO:
410
8
    childstate_getStorage() -> (), // TODO:
411
8
    childstate_getStorageHash() -> (), // TODO:
412
8
    childstate_getStorageSize() -> (), // TODO:
413
8
    grandpa_roundState() -> (), // TODO:
414
8
    offchain_localStorageGet() -> (), // TODO:
415
8
    offchain_localStorageSet() -> (), // TODO:
416
8
    payment_queryInfo(extrinsic: HexString, hash: Option<HashHexString>) -> RuntimeDispatchInfo,
417
8
    /// Returns a list of all JSON-RPC methods that are available.
418
8
    rpc_methods() -> RpcMethods,
419
8
    state_call(name: Cow<'a, str>, parameters: HexString, hash: Option<HashHexString>) -> HexString [state_callAt],
420
8
    state_getKeys(prefix: HexString, hash: Option<HashHexString>) -> Vec<HexString>,
421
8
    state_getKeysPaged(prefix: Option<HexString>, count: u32, start_key: Option<HexString>, hash: Option<HashHexString>) -> Vec<HexString> [state_getKeysPagedAt],
422
8
    state_getMetadata(hash: Option<HashHexString>) -> HexString,
423
8
    state_getPairs() -> (), // TODO:
424
8
    state_getReadProof() -> (), // TODO:
425
8
    state_getRuntimeVersion(at: Option<HashHexString>) -> RuntimeVersion<'a> [chain_getRuntimeVersion],
426
8
    state_getStorage(key: HexString, hash: Option<HashHexString>) -> HexString [state_getStorageAt],
427
8
    state_getStorageHash() -> () [state_getStorageHashAt], // TODO:
428
8
    state_getStorageSize() -> () [state_getStorageSizeAt], // TODO:
429
8
    state_queryStorage() -> (), // TODO:
430
8
    state_queryStorageAt(keys: Vec<HexString>, at: Option<HashHexString>) -> Vec<StorageChangeSet>, // TODO:
431
8
    state_subscribeRuntimeVersion() -> Cow<'a, str> [chain_subscribeRuntimeVersion],
432
8
    state_subscribeStorage(list: Vec<HexString>) -> Cow<'a, str>,
433
8
    state_unsubscribeRuntimeVersion(subscription: Cow<'a, str>) -> bool [chain_unsubscribeRuntimeVersion],
434
8
    state_unsubscribeStorage(subscription: Cow<'a, str>) -> bool,
435
8
    system_accountNextIndex(account: AccountId) -> u64,
436
8
    system_addReservedPeer() -> (), // TODO:
437
8
    system_chain() -> Cow<'a, str>,
438
8
    system_chainType() -> Cow<'a, str>,
439
8
    system_dryRun() -> () [system_dryRunAt], // TODO:
440
8
    system_health() -> SystemHealth,
441
8
    system_localListenAddresses() -> Vec<String>,
442
8
    /// Returns the Base58 encoding of the network identity of the node on the peer-to-peer network.
443
8
    system_localPeerId() -> Cow<'a, str>,
444
8
    /// Returns, as an opaque string, the name of the client serving these JSON-RPC requests.
445
8
    system_name() -> Cow<'a, str>,
446
8
    system_networkState() -> (), // TODO:
447
8
    system_nodeRoles() -> Cow<'a, [NodeRole]>,
448
8
    system_peers() -> Vec<SystemPeer>,
449
8
    system_properties() -> Box<serde_json::value::RawValue>,
450
8
    system_removeReservedPeer() -> (), // TODO:
451
8
    /// Returns, as an opaque string, the version of the client serving these JSON-RPC requests.
452
8
    system_version() -> Cow<'a, str>,
453
8
454
8
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
455
8
    chainHead_v1_body(
456
8
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
457
8
        hash: HashHexString
458
8
    ) -> ChainHeadBodyCallReturn<'a>,
459
8
    chainHead_v1_call(
460
8
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
461
8
        hash: HashHexString,
462
8
        function: Cow<'a, str>,
463
8
        #[rename = "callParameters"] call_parameters: HexString
464
8
    ) -> ChainHeadBodyCallReturn<'a>,
465
8
    chainHead_v1_follow(
466
8
        #[rename = "withRuntime"] with_runtime: bool
467
8
    ) -> Cow<'a, str>,
468
8
    chainHead_v1_header(
469
8
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
470
8
        hash: HashHexString
471
8
    ) -> Option<HexString>,
472
8
    chainHead_v1_stopOperation(
473
8
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
474
8
        #[rename = "operationId"] operation_id: Cow<'a, str>
475
8
    ) -> (),
476
8
    chainHead_v1_storage(
477
8
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
478
8
        hash: HashHexString,
479
8
        items: Vec<ChainHeadStorageRequestItem>,
480
8
        #[rename = "childTrie"] child_trie: Option<HexString>
481
8
    ) -> ChainHeadStorageReturn<'a>,
482
8
    chainHead_v1_continue(
483
8
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
484
8
        #[rename = "operationId"] operation_id: Cow<'a, str>
485
8
    ) -> (),
486
8
    chainHead_v1_unfollow(
487
8
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>
488
8
    ) -> (),
489
8
    chainHead_v1_unpin(
490
8
        #[rename = "followSubscription"] follow_subscription: Cow<'a, str>,
491
8
        #[rename = "hashOrHashes"] hash_or_hashes: HashHexStringSingleOrArray
492
8
    ) -> (),
493
8
494
8
    chainSpec_v1_chainName() -> Cow<'a, str>,
495
8
    chainSpec_v1_genesisHash() -> HashHexString,
496
8
    chainSpec_v1_properties() -> Box<serde_json::value::RawValue>,
497
8
498
8
    sudo_unstable_p2pDiscover(multiaddr: Cow<'a, str>) -> (),
499
8
    sudo_unstable_version() -> Cow<'a, str>,
500
8
501
8
    transaction_v1_broadcast(transaction: HexString) -> Cow<'a, str>,
502
8
    transaction_v1_stop(#[rename = "operationId"] operation_id: Cow<'a, str>) -> (),
503
8
504
8
    transactionWatch_v1_submitAndWatch(transaction: HexString) -> Cow<'a, str>,
505
8
    transactionWatch_v1_unwatch(subscription: Cow<'a, str>) -> (),
506
8
507
8
    // These functions are a custom addition in smoldot. As of the writing of this comment, there
508
8
    // is no plan to standardize them. See <https://github.com/paritytech/smoldot/issues/2245> and
509
8
    // <https://github.com/paritytech/smoldot/issues/2456>.
510
8
    sudo_network_unstable_watch() -> Cow<'a, str>,
511
8
    sudo_network_unstable_unwatch(subscription: Cow<'a, str>) -> (),
512
8
    chainHead_unstable_finalizedDatabase(#[rename = "maxSizeBytes"] max_size_bytes: Option<u64>) -> Cow<'a, str>,
513
8
}
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssv_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssw_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssx_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssq_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssr_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defsss_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defsst_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defsso_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssp_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssk_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssl_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssm_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssn_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssg_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssh_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssi_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssj_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssc_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssd_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defsse_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssf_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssa_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defssb_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss8_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss9_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss6_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss7_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss4_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss5_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss2_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss3_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss0_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss1_0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defs0Bb_
Unexecuted instantiation: _RNCNvMsm_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_10MethodCall9from_defss_0Bb_
514
515
0
define_methods! {
516
0
    ServerToClient,
517
0
    ServerToClientResponse, // TODO: unnecessary
518
0
    author_extrinsicUpdate(subscription: Cow<'a, str>, result: TransactionStatus) -> (),
519
0
    chain_finalizedHead(subscription: Cow<'a, str>, result: Header) -> (),
520
0
    chain_newHead(subscription: Cow<'a, str>, result: Header) -> (),
521
0
    chain_allHead(subscription: Cow<'a, str>, result: Header) -> (),
522
0
    state_runtimeVersion(subscription: Cow<'a, str>, result: Option<RuntimeVersion<'a>>) -> (), // TODO: the Option is a custom addition
523
0
    state_storage(subscription: Cow<'a, str>, result: StorageChangeSet) -> (),
524
0
525
0
    // The functions below are experimental and are defined in the document https://github.com/paritytech/json-rpc-interface-spec/
526
0
    chainHead_v1_followEvent(subscription: Cow<'a, str>, result: FollowEvent<'a>) -> (),
527
0
    transactionWatch_v1_watchEvent(subscription: Cow<'a, str>, result: TransactionWatchEvent<'a>) -> (),
528
0
529
0
    // This function is a custom addition in smoldot. As of the writing of this comment, there is
530
0
    // no plan to standardize it. See https://github.com/paritytech/smoldot/issues/2245.
531
0
    sudo_networkState_event(subscription: Cow<'a, str>, result: NetworkEvent) -> (),
532
0
}
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defs0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss0_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss1_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss2_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss3_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss4_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss5_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss6_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss7_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss8_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss9_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssa_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssb_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssc_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssd_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defsse_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssf_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssg_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssh_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssi_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssj_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssk_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssl_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssm_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssn_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defsso_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssp_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssq_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssr_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defsss_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defsst_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssu_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssv_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssw_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssx_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssy_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssz_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssA_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssB_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssC_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssD_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssE_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssF_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssG_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssH_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssI_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssJ_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssK_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssL_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssM_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssN_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssO_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssP_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssK_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssL_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssM_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssN_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssO_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssP_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssE_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssF_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssG_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssH_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssI_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssJ_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssy_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssz_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssA_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssB_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssC_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssD_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defsss_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defsst_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssu_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssv_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssw_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssx_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssm_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssn_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defsso_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssp_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssq_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssr_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssg_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssh_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssi_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssj_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssk_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssl_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssa_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssb_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssc_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssd_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defsse_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defssf_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss4_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss5_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss6_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss7_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss8_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss9_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defs0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss0_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss1_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss2_0Bb_
Unexecuted instantiation: _RNCNvMss_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_14ServerToClient9from_defss3_0Bb_
533
534
#[derive(Clone, PartialEq, Eq, Hash)]
535
pub struct HexString(pub Vec<u8>);
536
537
impl AsRef<[u8]> for HexString {
538
0
    fn as_ref(&self) -> &[u8] {
539
0
        &self.0
540
0
    }
Unexecuted instantiation: _RNvXs_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB4_9HexStringINtNtCsaYZPK01V26L_4core7convert5AsRefShE6as_ref
Unexecuted instantiation: _RNvXs_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB4_9HexStringINtNtCsaYZPK01V26L_4core7convert5AsRefShE6as_ref
541
}
542
543
// TODO: not great for type in public API
544
impl<'a> serde::Deserialize<'a> for HexString {
545
80
    fn deserialize<D>(deserializer: D) -> Result<HexString, D::Error>
546
80
    where
547
80
        D: serde::Deserializer<'a>,
548
80
    {
549
80
        let string = String::deserialize(deserializer)
?0
;
550
551
80
        if string.is_empty() {
552
0
            return Ok(HexString(Vec::new()));
553
80
        }
554
80
555
80
        if !string.starts_with("0x") {
556
0
            return Err(serde::de::Error::custom(
557
0
                "hexadecimal string doesn't start with 0x",
558
0
            ));
559
80
        }
560
561
80
        let bytes = hex::decode(&string[2..]).map_err(serde::de::Error::custom)
?0
;
562
80
        Ok(HexString(bytes))
563
80
    }
Unexecuted instantiation: _RINvXs0_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNvNtNtB15_9___private2de13missing_field24MissingFieldDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
Unexecuted instantiation: _RINvXs0_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB1Y_4read7StrReadEEBa_
Unexecuted instantiation: _RINvXs0_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNtNtNtB16_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
Unexecuted instantiation: _RINvXs0_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNvNtNtB16_9___private2de13missing_field24MissingFieldDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
_RINvXs0_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB1Z_4read7StrReadEEBa_
Line
Count
Source
545
56
    fn deserialize<D>(deserializer: D) -> Result<HexString, D::Error>
546
56
    where
547
56
        D: serde::Deserializer<'a>,
548
56
    {
549
56
        let string = String::deserialize(deserializer)
?0
;
550
551
56
        if string.is_empty() {
552
0
            return Ok(HexString(Vec::new()));
553
56
        }
554
56
555
56
        if !string.starts_with("0x") {
556
0
            return Err(serde::de::Error::custom(
557
0
                "hexadecimal string doesn't start with 0x",
558
0
            ));
559
56
        }
560
561
56
        let bytes = hex::decode(&string[2..]).map_err(serde::de::Error::custom)
?0
;
562
56
        Ok(HexString(bytes))
563
56
    }
_RINvXs0_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB1Z_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
545
24
    fn deserialize<D>(deserializer: D) -> Result<HexString, D::Error>
546
24
    where
547
24
        D: serde::Deserializer<'a>,
548
24
    {
549
24
        let string = String::deserialize(deserializer)
?0
;
550
551
24
        if string.is_empty() {
552
0
            return Ok(HexString(Vec::new()));
553
24
        }
554
24
555
24
        if !string.starts_with("0x") {
556
0
            return Err(serde::de::Error::custom(
557
0
                "hexadecimal string doesn't start with 0x",
558
0
            ));
559
24
        }
560
561
24
        let bytes = hex::decode(&string[2..]).map_err(serde::de::Error::custom)
?0
;
562
24
        Ok(HexString(bytes))
563
24
    }
564
}
565
566
impl fmt::Debug for HexString {
567
0
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
568
0
        write!(f, "0x{}", hex::encode(&self.0))
569
0
    }
Unexecuted instantiation: _RNvXs1_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_9HexStringNtNtCsaYZPK01V26L_4core3fmt5Debug3fmt
Unexecuted instantiation: _RNvXs1_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_9HexStringNtNtCsaYZPK01V26L_4core3fmt5Debug3fmt
570
}
571
572
#[derive(Debug, Clone)]
573
pub struct HashHexString(pub [u8; 32]);
574
575
// TODO: not great for type in public API
576
impl<'a> serde::Deserialize<'a> for HashHexString {
577
26
    fn deserialize<D>(deserializer: D) -> Result<HashHexString, D::Error>
578
26
    where
579
26
        D: serde::Deserializer<'a>,
580
26
    {
581
26
        let string = String::deserialize(deserializer)
?0
;
582
583
26
        if !string.starts_with("0x") {
584
0
            return Err(serde::de::Error::custom("hash doesn't start with 0x"));
585
26
        }
586
587
26
        let bytes = hex::decode(&string[2..]).map_err(serde::de::Error::custom)
?0
;
588
26
        if bytes.len() != 32 {
589
0
            return Err(serde::de::Error::invalid_length(
590
0
                bytes.len(),
591
0
                &"a 32 bytes hash",
592
0
            ));
593
26
        }
594
26
595
26
        let mut out = [0; 32];
596
26
        out.copy_from_slice(&bytes);
597
26
        Ok(HashHexString(out))
598
26
    }
Unexecuted instantiation: _RINvXs2_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNtNtNtB1a_9___private2de7content22ContentRefDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
Unexecuted instantiation: _RINvXs2_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNvNtNtB1a_9___private2de13missing_field24MissingFieldDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
Unexecuted instantiation: _RINvXs2_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB23_4read7StrReadEEBa_
Unexecuted instantiation: _RINvXs2_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNtNtNtB1b_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
Unexecuted instantiation: _RINvXs2_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNtNtNtB1b_9___private2de7content22ContentRefDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
Unexecuted instantiation: _RINvXs2_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNvNtNtB1b_9___private2de13missing_field24MissingFieldDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
_RINvXs2_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB24_4read7StrReadEEBa_
Line
Count
Source
577
20
    fn deserialize<D>(deserializer: D) -> Result<HashHexString, D::Error>
578
20
    where
579
20
        D: serde::Deserializer<'a>,
580
20
    {
581
20
        let string = String::deserialize(deserializer)
?0
;
582
583
20
        if !string.starts_with("0x") {
584
0
            return Err(serde::de::Error::custom("hash doesn't start with 0x"));
585
20
        }
586
587
20
        let bytes = hex::decode(&string[2..]).map_err(serde::de::Error::custom)
?0
;
588
20
        if bytes.len() != 32 {
589
0
            return Err(serde::de::Error::invalid_length(
590
0
                bytes.len(),
591
0
                &"a 32 bytes hash",
592
0
            ));
593
20
        }
594
20
595
20
        let mut out = [0; 32];
596
20
        out.copy_from_slice(&bytes);
597
20
        Ok(HashHexString(out))
598
20
    }
Unexecuted instantiation: _RINvXs2_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNvNtNtB1b_9___private2de13missing_field24MissingFieldDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEECsibGXYHQB8Ea_25json_rpc_general_requests
_RINvXs2_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB24_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
577
6
    fn deserialize<D>(deserializer: D) -> Result<HashHexString, D::Error>
578
6
    where
579
6
        D: serde::Deserializer<'a>,
580
6
    {
581
6
        let string = String::deserialize(deserializer)
?0
;
582
583
6
        if !string.starts_with("0x") {
584
0
            return Err(serde::de::Error::custom("hash doesn't start with 0x"));
585
6
        }
586
587
6
        let bytes = hex::decode(&string[2..]).map_err(serde::de::Error::custom)
?0
;
588
6
        if bytes.len() != 32 {
589
0
            return Err(serde::de::Error::invalid_length(
590
0
                bytes.len(),
591
0
                &"a 32 bytes hash",
592
0
            ));
593
6
        }
594
6
595
6
        let mut out = [0; 32];
596
6
        out.copy_from_slice(&bytes);
597
6
        Ok(HashHexString(out))
598
6
    }
599
}
600
601
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
602
#[serde(untagged)]
603
pub enum HashHexStringSingleOrArray {
604
    Single(HashHexString),
605
    Array(Vec<HashHexString>),
606
}
607
608
/// Removes the length prefix at the beginning of `metadata`. Used for the `Metadata_metadata`
609
/// JSON-RPC request. Returns an error if there is no valid length prefix.
610
1
pub fn remove_metadata_length_prefix(
611
1
    metadata: &[u8],
612
1
) -> Result<&[u8], RemoveMetadataLengthPrefixError> {
613
1
    let (after_prefix, length) = crate::util::nom_scale_compact_usize(metadata).map_err(
614
1
        |_: nom::Err<nom::error::Error<&[u8]>>| {
615
0
            RemoveMetadataLengthPrefixError::InvalidLengthPrefix
616
1
        },
Unexecuted instantiation: _RNCNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methods29remove_metadata_length_prefix0B7_
Unexecuted instantiation: _RNCNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods29remove_metadata_length_prefix0B7_
617
1
    )
?0
;
618
619
    // Verify that the length prefix indeed matches the metadata's length.
620
1
    if length != after_prefix.len() {
621
0
        return Err(RemoveMetadataLengthPrefixError::LengthMismatch);
622
1
    }
623
1
624
1
    Ok(after_prefix)
625
1
}
Unexecuted instantiation: _RNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methods29remove_metadata_length_prefix
_RNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods29remove_metadata_length_prefix
Line
Count
Source
610
1
pub fn remove_metadata_length_prefix(
611
1
    metadata: &[u8],
612
1
) -> Result<&[u8], RemoveMetadataLengthPrefixError> {
613
1
    let (after_prefix, length) = crate::util::nom_scale_compact_usize(metadata).map_err(
614
1
        |_: nom::Err<nom::error::Error<&[u8]>>| {
615
            RemoveMetadataLengthPrefixError::InvalidLengthPrefix
616
1
        },
617
1
    )
?0
;
618
619
    // Verify that the length prefix indeed matches the metadata's length.
620
1
    if length != after_prefix.len() {
621
0
        return Err(RemoveMetadataLengthPrefixError::LengthMismatch);
622
1
    }
623
1
624
1
    Ok(after_prefix)
625
1
}
626
627
/// Error potentially returned by [`remove_metadata_length_prefix`].
628
0
#[derive(Debug, Clone, derive_more::Display)]
Unexecuted instantiation: _RNvXsJ_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_31RemoveMetadataLengthPrefixErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
Unexecuted instantiation: _RNvXsJ_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_31RemoveMetadataLengthPrefixErrorNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
629
pub enum RemoveMetadataLengthPrefixError {
630
    /// The length prefix at the beginning of the metadata is invalid.
631
    InvalidLengthPrefix,
632
    /// Length indicated by the length prefix doesn't match the size of the metadata.
633
    LengthMismatch,
634
}
635
636
/// Contains the public key of an account.
637
///
638
/// The deserialization involves decoding an SS58 address into this public key.
639
#[derive(Debug, Clone)]
640
pub struct AccountId(pub Vec<u8>);
641
642
impl serde::Serialize for AccountId {
643
0
    fn serialize<S>(&self, _: S) -> Result<S::Ok, S::Error>
644
0
    where
645
0
        S: serde::Serializer,
646
0
    {
647
0
        todo!() // TODO: /!\
Unexecuted instantiation: _RINvXs3_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_9AccountIdNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepEBa_
Unexecuted instantiation: _RINvXs3_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9AccountIdNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeINtNtCscu7pqq74Vb8_10serde_json3ser18RawValueStrEmitterQINtNtCsdZExvAaxgia_5alloc3vec3VechENtB1R_16CompactFormatterEEBa_
Unexecuted instantiation: _RINvXs3_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9AccountIdNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEBa_
648
    }
649
}
650
651
// TODO: not great for type in public API
652
impl<'a> serde::Deserialize<'a> for AccountId {
653
0
    fn deserialize<D>(deserializer: D) -> Result<AccountId, D::Error>
654
0
    where
655
0
        D: serde::Deserializer<'a>,
656
0
    {
657
0
        let string = <&str>::deserialize(deserializer)?;
658
0
        let decoded = match ss58::decode(string) {
659
0
            Ok(d) => d,
660
0
            Err(err) => return Err(serde::de::Error::custom(err.to_string())),
661
        };
662
663
        // TODO: check the prefix against the one of the current chain?
664
665
0
        Ok(AccountId(decoded.public_key.as_ref().to_vec()))
666
0
    }
Unexecuted instantiation: _RINvXs4_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_9AccountIdNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNvNtNtB15_9___private2de13missing_field24MissingFieldDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
Unexecuted instantiation: _RINvXs4_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_9AccountIdNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB1Y_4read7StrReadEEBa_
Unexecuted instantiation: _RINvXs4_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9AccountIdNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeINtNvNtNtB16_9___private2de13missing_field24MissingFieldDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBa_
Unexecuted instantiation: _RINvXs4_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9AccountIdNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB1Z_4read7StrReadEEBa_
667
}
668
669
#[derive(Debug, Clone)]
670
pub struct Block {
671
    pub extrinsics: Vec<HexString>,
672
    pub header: Header,
673
    /// List of justifications. Each justification is made of a consensus engine id and of the
674
    /// actual SCALE-encoded justification.
675
    pub justifications: Option<Vec<([u8; 4], Vec<u8>)>>,
676
}
677
678
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtB7_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1d_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtB8_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1e_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtB8_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1e_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtB8_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1e_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1e_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs6_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s1_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs7_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXs8_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXs8_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs8_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs9_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s2_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsa_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXsb_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s1_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsb_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsb_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsc_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s3_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsd_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXse_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s2_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXse_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXse_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsf_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s4_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsg_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXsh_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s3_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsh_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsh_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsi_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s5_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsj_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXsk_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s4_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsk_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsk_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsl_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s6_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsl_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsl_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsl_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsm_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXsn_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s5_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsn_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsn_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXso_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s7_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXso_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXso_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXso_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsp_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXsq_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s6_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsq_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsq_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsr_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s8_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsr_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsr_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsr_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXss_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXst_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s7_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXst_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXst_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsu_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s9_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsu_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s9_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsu_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s9_14___FieldVisitorNtB1h_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsu_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s9_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsv_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s9_7___FieldB1f_11deserializepEBf_
Unexecuted instantiation: _RNvXsw_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s8_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXsw_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsw_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtB7_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1e_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtB8_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXs6_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s1_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs8_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXs9_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s2_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsb_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s1_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXsc_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s3_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXse_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s2_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXsf_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s4_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsh_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s3_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXsi_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s5_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsk_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s4_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXsl_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s6_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXsl_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsl_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsl_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsn_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s5_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXso_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s7_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXso_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXso_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXso_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsq_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s6_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXsr_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s8_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXsr_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsr_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsr_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXst_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s7_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RNvXsu_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s9_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXsu_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s9_14___FieldVisitorNtB1i_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsu_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s9_14___FieldVisitorNtB1i_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsw_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s8_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs7_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsa_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsd_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsg_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsj_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsm_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsp_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXss_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsv_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s9_7___FieldB1g_11deserializeINtNtNtNtB1k_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtB8_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtB8_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4W_INtB4W_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6d_EEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4V_EENCINvB4X_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6d_EEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Y_INtB4Y_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6f_EEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4X_EENCINvB4Z_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6f_EEBf_
Unexecuted instantiation: _RINvXs8_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXs8_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXsb_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXsb_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXse_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXse_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXsh_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXsh_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXsk_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXsk_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXsn_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXsn_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXsq_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXsq_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s6_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXst_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXst_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s7_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXsu_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s9_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsw_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXsw_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBb_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s8_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss1_1__NtBa_11FollowEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1f_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB2H_4read7StrReadEEBe_
679
#[serde(tag = "event")]
680
pub enum FollowEvent<'a> {
681
    #[serde(rename = "initialized")]
682
    Initialized {
683
        #[serde(rename = "finalizedBlockHashes")]
684
        finalized_block_hashes: Vec<HashHexString>,
685
        #[serde(
686
            rename = "finalizedBlockRuntime",
687
            skip_serializing_if = "Option::is_none"
688
        )]
689
        finalized_block_runtime: Option<MaybeRuntimeSpec<'a>>,
690
    },
691
    #[serde(rename = "newBlock")]
692
    NewBlock {
693
        #[serde(rename = "blockHash")]
694
        block_hash: HashHexString,
695
        #[serde(rename = "parentBlockHash")]
696
        parent_block_hash: HashHexString,
697
        #[serde(rename = "newRuntime")]
698
        // TODO: must not be present if with_runtime: false
699
        new_runtime: Option<MaybeRuntimeSpec<'a>>,
700
    },
701
    #[serde(rename = "bestBlockChanged")]
702
    BestBlockChanged {
703
        #[serde(rename = "bestBlockHash")]
704
        best_block_hash: HashHexString,
705
    },
706
    #[serde(rename = "finalized")]
707
    Finalized {
708
        #[serde(rename = "finalizedBlockHashes")]
709
        finalized_blocks_hashes: Vec<HashHexString>,
710
        #[serde(rename = "prunedBlockHashes")]
711
        pruned_blocks_hashes: Vec<HashHexString>,
712
    },
713
    #[serde(rename = "operationBodyDone")]
714
    OperationBodyDone {
715
        #[serde(rename = "operationId")]
716
        operation_id: Cow<'a, str>,
717
        value: Vec<HexString>,
718
    },
719
    #[serde(rename = "operationCallDone")]
720
    OperationCallDone {
721
        #[serde(rename = "operationId")]
722
        operation_id: Cow<'a, str>,
723
        output: HexString,
724
    },
725
    #[serde(rename = "operationInaccessible")]
726
    OperationInaccessible {
727
        #[serde(rename = "operationId")]
728
        operation_id: Cow<'a, str>,
729
    },
730
    #[serde(rename = "operationStorageItems")]
731
    OperationStorageItems {
732
        #[serde(rename = "operationId")]
733
        operation_id: Cow<'a, str>,
734
        items: Vec<ChainHeadStorageResponseItem>,
735
    },
736
    #[serde(rename = "operationStorageDone")]
737
    OperationStorageDone {
738
        #[serde(rename = "operationId")]
739
        operation_id: Cow<'a, str>,
740
    },
741
    #[serde(rename = "operationWaitingForContinue")]
742
    OperationWaitingForContinue,
743
    #[serde(rename = "operationError")]
744
    OperationError {
745
        #[serde(rename = "operationId")]
746
        operation_id: Cow<'a, str>,
747
        error: Cow<'a, str>,
748
    },
749
    #[serde(rename = "stop")]
750
    Stop {},
751
}
752
753
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtB7_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1p_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtB8_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1q_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtB8_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1q_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtB8_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1q_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1q_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1t_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1t_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1t_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1r_11deserializepEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1t_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1t_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1t_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1t_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1t_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1r_11deserializepEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1t_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1t_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtB7_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1t_7Visitor9expecting
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1t_7Visitor9expecting
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1t_7Visitor9expecting
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1t_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtB8_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1r_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtB8_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1r_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtB8_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1r_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBa_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1r_11deserializepEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1u_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1u_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1u_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1s_11deserializepEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1u_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1u_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1u_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1u_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1u_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1s_11deserializepEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1u_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss3_1__NtBb_23ChainHeadBodyCallReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1u_7Visitor9visit_mappEBf_
754
#[serde(tag = "result")]
755
pub enum ChainHeadBodyCallReturn<'a> {
756
    #[serde(rename = "started")]
757
    Started {
758
        #[serde(rename = "operationId")]
759
        operation_id: Cow<'a, str>,
760
    },
761
    #[serde(rename = "limitReached")]
762
    LimitReached {},
763
}
764
765
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtB7_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1o_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtB8_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtB8_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtB8_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1p_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1s_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1s_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1s_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1q_11deserializepEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1s_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1s_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1s_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1s_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1s_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1q_11deserializepEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1s_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1s_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtB7_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1p_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtB8_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1q_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtB8_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1q_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtB8_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1q_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBa_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1q_11deserializepEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1t_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1t_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1t_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1r_11deserializepEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1t_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1t_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1t_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1t_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1t_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1r_11deserializepEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1t_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss5_1__NtBb_22ChainHeadStorageReturnNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1t_7Visitor9visit_mappEBf_
766
#[serde(tag = "result")]
767
pub enum ChainHeadStorageReturn<'a> {
768
    #[serde(rename = "started")]
769
    Started {
770
        #[serde(rename = "operationId")]
771
        operation_id: Cow<'a, str>,
772
        #[serde(rename = "discardedItems")]
773
        discarded_items: usize,
774
    },
775
    #[serde(rename = "limitReached")]
776
    LimitReached {},
777
}
778
779
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss7_1__NtBa_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1u_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2V_4read7StrReadEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss7_1__NtBb_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1x_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB35_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss7_1__NtBb_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1x_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB35_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss7_1__NtB8_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1u_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss7_1__NtBa_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1w_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss7_1__NtB7_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1t_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss7_1__NtB8_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1u_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss7_1__NtB8_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1u_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss7_1__NtB7_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1u_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss7_1__NtB8_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1v_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss7_1__NtBa_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1x_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss7_1__NtB8_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1v_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss7_1__NtB8_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1v_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss7_1__NtBa_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1v_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2W_4read7StrReadEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss7_1__NtBb_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1y_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB36_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss7_1__NtBb_27ChainHeadStorageRequestItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1y_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB36_4read7StrReadEEBf_
780
pub struct ChainHeadStorageRequestItem {
781
    pub key: HexString,
782
    #[serde(rename = "type")]
783
    pub ty: ChainHeadStorageType,
784
}
785
786
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss9_1__NtB7_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1u_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss9_1__NtB8_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1v_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss9_1__NtB8_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1v_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss9_1__NtB8_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1v_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss9_1__NtBa_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1v_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss9_1__NtBa_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1x_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss9_1__NtBb_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1y_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodss9_1__NtBb_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1y_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss9_1__NtB7_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1v_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss9_1__NtB8_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1w_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss9_1__NtB8_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1w_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss9_1__NtB8_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1w_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss9_1__NtBa_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1y_7Visitor9expecting
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss9_1__NtBa_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1w_11deserializeINtNtNtNtB1A_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss9_1__NtBb_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1z_7Visitor9visit_seqQINtNtB1z_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1B_9___private2de7content7ContentENvMse_B5d_INtB5d_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6u_EEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodss9_1__NtBb_28ChainHeadStorageResponseItemNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1z_7Visitor9visit_mapQINtNtB1z_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1B_9___private2de7content7ContentB5c_EENCINvB5e_17visit_content_mapB2o_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6u_EEBf_
787
pub struct ChainHeadStorageResponseItem {
788
    pub key: HexString,
789
    #[serde(skip_serializing_if = "Option::is_none")]
790
    pub value: Option<HexString>,
791
    #[serde(skip_serializing_if = "Option::is_none")]
792
    pub hash: Option<HexString>,
793
    #[serde(
794
        rename = "closestDescendantMerkleValue",
795
        skip_serializing_if = "Option::is_none"
796
    )]
797
    pub closest_descendant_merkle_value: Option<HexString>,
798
}
799
800
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssb_1__NtBa_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1n_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB2P_4read7StrReadEEBe_
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssb_1__NtB7_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1m_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssb_1__NtB8_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1n_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssb_1__NtBb_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1q_7Visitor10visit_enumINtNtCscu7pqq74Vb8_10serde_json2de13VariantAccessNtNtB30_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssb_1__NtBb_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1q_7Visitor10visit_enumINtNtCscu7pqq74Vb8_10serde_json2de17UnitVariantAccessNtNtB30_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssb_1__NtB8_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1n_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssb_1__NtB8_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1n_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssb_1__NtBa_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1p_7Visitor9expecting
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssb_1__NtB7_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1n_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssb_1__NtB8_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssb_1__NtBa_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssb_1__NtBb_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1r_7Visitor10visit_enumINtNtCscu7pqq74Vb8_10serde_json2de13VariantAccessNtNtB31_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssb_1__NtBb_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1r_7Visitor10visit_enumINtNtCscu7pqq74Vb8_10serde_json2de17UnitVariantAccessNtNtB31_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssb_1__NtB8_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssb_1__NtB8_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssb_1__NtBa_20ChainHeadStorageTypeNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1o_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB2Q_4read7StrReadEEBe_
801
pub enum ChainHeadStorageType {
802
    #[serde(rename = "value")]
803
    Value,
804
    #[serde(rename = "hash")]
805
    Hash,
806
    #[serde(rename = "closestDescendantMerkleValue")]
807
    ClosestDescendantMerkleValue,
808
    #[serde(rename = "descendantsValues")]
809
    DescendantsValues,
810
    #[serde(rename = "descendantsHashes")]
811
    DescendantsHashes,
812
}
813
814
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtB7_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1n_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtB8_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtB8_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtB8_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1o_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1r_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1r_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1r_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1p_11deserializepEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1r_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1r_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1r_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1r_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1r_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1p_11deserializepEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1r_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1r_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs6_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s1_14___FieldVisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1r_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1r_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1r_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs7_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_7___FieldB1p_11deserializepEBf_
Unexecuted instantiation: _RNvXs8_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs8_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_9___VisitorNtB1r_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs8_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_9___VisitorNtB1r_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs9_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s2_14___FieldVisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1r_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1r_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1r_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsa_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_7___FieldB1p_11deserializepEBf_
Unexecuted instantiation: _RNvXsb_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s1_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXsb_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_9___VisitorNtB1r_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsb_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_9___VisitorNtB1r_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsc_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s3_14___FieldVisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1r_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1r_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1r_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsd_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_7___FieldB1p_11deserializepEBf_
Unexecuted instantiation: _RNvXse_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s2_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXse_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_9___VisitorNtB1r_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXse_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_9___VisitorNtB1r_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsf_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s4_14___FieldVisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1r_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1r_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1r_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsg_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_7___FieldB1p_11deserializepEBf_
Unexecuted instantiation: _RNvXsh_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s3_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXsh_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_9___VisitorNtB1r_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsh_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_9___VisitorNtB1r_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXsi_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s5_14___FieldVisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1r_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1r_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1r_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXsj_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_7___FieldB1p_11deserializepEBf_
Unexecuted instantiation: _RNvXsk_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s4_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXsk_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_9___VisitorNtB1r_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXsk_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_9___VisitorNtB1r_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtB7_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1o_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtB8_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1s_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1s_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1s_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1s_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1s_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RNvXs6_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s1_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1s_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1s_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs6_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_14___FieldVisitorNtB1s_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs8_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RNvXs9_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s2_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1s_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1s_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs9_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_14___FieldVisitorNtB1s_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsb_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s1_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RNvXsc_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s3_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1s_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1s_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsc_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_14___FieldVisitorNtB1s_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXse_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s2_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RNvXsf_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s4_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1s_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1s_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsf_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_14___FieldVisitorNtB1s_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsh_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s3_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RNvXsi_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s5_14___FieldVisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1s_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1s_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXsi_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_14___FieldVisitorNtB1s_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXsk_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s4_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1q_11deserializeINtNtNtNtB1u_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1q_11deserializeINtNtNtNtB1u_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs7_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_7___FieldB1q_11deserializeINtNtNtNtB1u_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsa_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_7___FieldB1q_11deserializeINtNtNtNtB1u_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsd_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_7___FieldB1q_11deserializeINtNtNtNtB1u_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsg_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_7___FieldB1q_11deserializeINtNtNtNtB1u_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXsj_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s5_7___FieldB1q_11deserializeINtNtNtNtB1u_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtB8_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtB8_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1s_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1s_7Visitor9visit_seqQINtNtB1s_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1u_9___private2de7content7ContentENvMse_B56_INtB56_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6n_EEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1s_7Visitor9visit_mapQINtNtB1s_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1u_9___private2de7content7ContentB55_EENCINvB57_17visit_content_mapB2h_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6n_EEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1s_7Visitor9visit_seqQINtNtB1s_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1u_9___private2de7content7ContentENvMse_B58_INtB58_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6p_EEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1s_7Visitor9visit_mapQINtNtB1s_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1u_9___private2de7content7ContentB57_EENCINvB59_17visit_content_mapB2h_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6p_EEBf_
Unexecuted instantiation: _RINvXs8_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_9___VisitorNtB1s_7Visitor9visit_seqQINtNtB1s_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1u_9___private2de7content7ContentENvMse_B59_INtB59_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6q_EEBf_
Unexecuted instantiation: _RINvXs8_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_9___VisitorNtB1s_7Visitor9visit_mapQINtNtB1s_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1u_9___private2de7content7ContentB58_EENCINvB5a_17visit_content_mapB2h_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6q_EEBf_
Unexecuted instantiation: _RINvXsb_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_9___VisitorNtB1s_7Visitor9visit_seqQINtNtB1s_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1u_9___private2de7content7ContentENvMse_B59_INtB59_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6q_EEBf_
Unexecuted instantiation: _RINvXsb_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s1_9___VisitorNtB1s_7Visitor9visit_mapQINtNtB1s_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1u_9___private2de7content7ContentB58_EENCINvB5a_17visit_content_mapB2h_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6q_EEBf_
Unexecuted instantiation: _RINvXse_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_9___VisitorNtB1s_7Visitor9visit_seqQINtNtB1s_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1u_9___private2de7content7ContentENvMse_B59_INtB59_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6q_EEBf_
Unexecuted instantiation: _RINvXse_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s2_9___VisitorNtB1s_7Visitor9visit_mapQINtNtB1s_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1u_9___private2de7content7ContentB58_EENCINvB5a_17visit_content_mapB2h_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6q_EEBf_
Unexecuted instantiation: _RINvXsh_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_9___VisitorNtB1s_7Visitor9visit_seqQINtNtB1s_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1u_9___private2de7content7ContentENvMse_B59_INtB59_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6q_EEBf_
Unexecuted instantiation: _RINvXsh_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s3_9___VisitorNtB1s_7Visitor9visit_mapQINtNtB1s_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1u_9___private2de7content7ContentB58_EENCINvB5a_17visit_content_mapB2h_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6q_EEBf_
Unexecuted instantiation: _RINvXsk_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_9___VisitorNtB1s_7Visitor9visit_seqQINtNtB1s_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1u_9___private2de7content7ContentENvMse_B59_INtB59_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6q_EEBf_
Unexecuted instantiation: _RINvXsk_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBb_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s4_9___VisitorNtB1s_7Visitor9visit_mapQINtNtB1s_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1u_9___private2de7content7ContentB58_EENCINvB5a_17visit_content_mapB2h_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6q_EEBf_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssd_1__NtBa_21TransactionWatchEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1p_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB2R_4read7StrReadEEBe_
815
#[serde(tag = "event")]
816
pub enum TransactionWatchEvent<'a> {
817
    #[serde(rename = "validated")]
818
    Validated {},
819
    #[serde(rename = "broadcasted")]
820
    Broadcasted {
821
        #[serde(rename = "numPeers")]
822
        num_peers: u32,
823
    },
824
    #[serde(rename = "bestChainBlockIncluded")]
825
    BestChainBlockIncluded {
826
        #[serde(rename = "block")]
827
        block: Option<TransactionWatchEventBlock>,
828
    },
829
    #[serde(rename = "finalized")]
830
    Finalized {
831
        #[serde(rename = "block")]
832
        block: TransactionWatchEventBlock,
833
    },
834
    #[serde(rename = "error")]
835
    Error { error: Cow<'a, str> },
836
    #[serde(rename = "invalid")]
837
    Invalid { error: Cow<'a, str> },
838
    #[serde(rename = "dropped")]
839
    Dropped {
840
        broadcasted: bool,
841
        error: Cow<'a, str>,
842
    },
843
}
844
845
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssf_1__NtB7_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1s_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssf_1__NtB8_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1t_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssf_1__NtB8_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1t_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssf_1__NtB8_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1t_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssf_1__NtBa_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1t_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssf_1__NtBa_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1v_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssf_1__NtBb_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1w_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssf_1__NtBb_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1w_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssf_1__NtB7_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1t_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssf_1__NtB8_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1u_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssf_1__NtB8_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1u_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssf_1__NtB8_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1u_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssf_1__NtBa_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1w_7Visitor9expecting
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssf_1__NtBa_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1u_11deserializeINtNtNtNtB1y_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssf_1__NtBb_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1x_7Visitor9visit_seqQINtNtB1x_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1z_9___private2de7content7ContentENvMse_B5b_INtB5b_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6s_EEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssf_1__NtBb_26TransactionWatchEventBlockNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1x_7Visitor9visit_mapQINtNtB1x_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1z_9___private2de7content7ContentB5a_EENCINvB5c_17visit_content_mapB2m_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6s_EEBf_
846
pub struct TransactionWatchEventBlock {
847
    pub hash: HashHexString,
848
    pub index: u32,
849
}
850
851
/// Unstable event.
852
/// See <https://github.com/paritytech/smoldot/issues/2245>.
853
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtB7_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1e_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtB8_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtB8_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtB8_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1f_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1i_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1i_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1i_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1g_11deserializepEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1i_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1i_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1i_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1i_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1i_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1g_11deserializepEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1i_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1i_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtB7_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1f_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtB8_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1g_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1i_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1j_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1j_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1j_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1i_7Visitor9expecting
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1i_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1j_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1j_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1j_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1i_7Visitor9expecting
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1h_11deserializeINtNtNtNtB1l_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1h_11deserializeINtNtNtNtB1l_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtB8_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1g_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtB8_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1g_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1j_7Visitor9visit_seqQINtNtB1j_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1l_9___private2de7content7ContentENvMse_B4X_INtB4X_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6e_EEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1j_7Visitor9visit_mapQINtNtB1j_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1l_9___private2de7content7ContentB4W_EENCINvB4Y_17visit_content_mapB28_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6e_EEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1j_7Visitor9visit_seqQINtNtB1j_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1l_9___private2de7content7ContentENvMse_B4Z_INtB4Z_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6g_EEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBb_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1j_7Visitor9visit_mapQINtNtB1j_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1l_9___private2de7content7ContentB4Y_EENCINvB50_17visit_content_mapB28_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6g_EEBf_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssh_1__NtBa_12NetworkEventNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1g_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB2I_4read7StrReadEEBe_
854
#[serde(tag = "event")]
855
pub enum NetworkEvent {
856
    #[serde(rename = "connectionState")]
857
    ConnectionState {
858
        #[serde(rename = "connectionId")]
859
        connection_id: u32,
860
        #[serde(rename = "targetPeerId", skip_serializing_if = "Option::is_none")]
861
        target_peer_id: Option<String>,
862
        #[serde(rename = "targetMultiaddr")]
863
        target_multiaddr: String,
864
        status: NetworkEventStatus,
865
        direction: NetworkEventDirection,
866
        when: u64,
867
    },
868
    #[serde(rename = "substreamState")]
869
    SubstreamState {
870
        #[serde(rename = "connectionId")]
871
        connection_id: u32,
872
        #[serde(rename = "substreamId")]
873
        substream_id: u32,
874
        status: NetworkEventStatus,
875
        #[serde(rename = "protocolName")]
876
        protocol_name: String,
877
        direction: NetworkEventDirection,
878
        when: u64,
879
    },
880
}
881
882
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssj_1__NtB7_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1k_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssj_1__NtB8_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssj_1__NtB8_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssj_1__NtB8_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssj_1__NtBa_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1l_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssj_1__NtBa_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1n_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssj_1__NtBb_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1o_7Visitor10visit_enumpEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssj_1__NtB7_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1l_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssj_1__NtB8_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1m_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssj_1__NtB8_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1m_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssj_1__NtB8_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1m_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssj_1__NtBa_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1o_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssj_1__NtBb_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1p_7Visitor10visit_enumINtNtNtNtB1r_9___private2de7content16EnumDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssj_1__NtBa_18NetworkEventStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1m_11deserializeINtNtNtNtB1q_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBe_
883
pub enum NetworkEventStatus {
884
    #[serde(rename = "connecting")]
885
    Connecting,
886
    #[serde(rename = "open")]
887
    Open,
888
    #[serde(rename = "closed")]
889
    Close,
890
}
891
892
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssl_1__NtB7_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1n_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssl_1__NtB8_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssl_1__NtB8_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssl_1__NtB8_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1o_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssl_1__NtBa_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1o_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssl_1__NtBa_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1q_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssl_1__NtBb_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1r_7Visitor10visit_enumpEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssl_1__NtB7_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1o_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssl_1__NtB8_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssl_1__NtB8_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssl_1__NtB8_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1p_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssl_1__NtBa_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1r_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssl_1__NtBb_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1s_7Visitor10visit_enumINtNtNtNtB1u_9___private2de7content16EnumDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssl_1__NtBa_21NetworkEventDirectionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1p_11deserializeINtNtNtNtB1t_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBe_
893
pub enum NetworkEventDirection {
894
    #[serde(rename = "in")]
895
    In,
896
    #[serde(rename = "out")]
897
    Out,
898
}
899
900
24
#[derive(Debug, Clone, 
serde::Serialize2
,
s14
erde::Deserialize)]
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssm_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeNtB3_15___SerializeWithB16_9serializepEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssm_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeNtB3_15___SerializeWithB17_9serializeINtNtCscu7pqq74Vb8_10serde_json3ser18RawValueStrEmitterQINtNtCsdZExvAaxgia_5alloc3vec3VechENtB2x_16CompactFormatterEEBc_
_RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssm_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeNtB3_15___SerializeWithB17_9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEBc_
Line
Count
Source
900
2
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtB7_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB17_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB18_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB18_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB18_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtBa_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB18_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtBa_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1a_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtBb_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1b_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtBe_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB9_9___VisitorNtB1e_7Visitor9visit_seqNtB3_17___DeserializeWithB1c_11deserializepEBi_
Unexecuted instantiation: _RNCINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtBd_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB8_9___VisitorNtB1d_7Visitor9visit_seqpE0Bh_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtBb_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1b_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RINvXNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssn_1__NtBe_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB9_9___VisitorNtB1e_7Visitor9visit_mapNtB3_17___DeserializeWithB1c_11deserializepEBi_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtB7_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB18_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB19_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBa_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1b_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBe_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB9_9___VisitorNtB1f_7Visitor9visit_seqNtB3_17___DeserializeWithB1d_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB3u_4read7StrReadEEBi_
Unexecuted instantiation: _RINvXNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBe_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB9_9___VisitorNtB1f_7Visitor9visit_mapNtB3_17___DeserializeWithB1d_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB3u_4read7StrReadEEBi_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB19_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB19_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBa_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB19_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2A_4read7StrReadEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBb_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1c_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2K_4read7StrReadEEBf_
Unexecuted instantiation: _RNCINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBd_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB8_9___VisitorNtB1e_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2M_4read7StrReadEE0Bh_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBb_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1c_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB2K_4read7StrReadEEBf_
_RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtB8_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB19_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
900
10
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
_RINvXNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBe_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB9_9___VisitorNtB1f_7Visitor9visit_mapNtB3_17___DeserializeWithB1d_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB3u_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
900
2
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RINvXNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBe_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB9_9___VisitorNtB1f_7Visitor9visit_seqNtB3_17___DeserializeWithB1d_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB3u_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
_RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBb_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1c_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB2K_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
900
12
#[derive(Debug, Clone, serde::Serialize, 
s2
erde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBb_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1c_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2K_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Unexecuted instantiation: _RNCINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBd_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB8_9___VisitorNtB1e_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2M_4read7StrReadEE0CsibGXYHQB8Ea_25json_rpc_general_requests
_RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssn_1__NtBa_6HeaderNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB19_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2A_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
900
10
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
901
pub struct Header {
902
    #[serde(rename = "parentHash")]
903
    pub parent_hash: HashHexString,
904
    #[serde(rename = "extrinsicsRoot")]
905
    pub extrinsics_root: HashHexString,
906
    #[serde(rename = "stateRoot")]
907
    pub state_root: HashHexString,
908
    #[serde(
909
        serialize_with = "hex_num_serialize",
910
        deserialize_with = "hex_num_deserialize"
911
    )]
912
    pub number: u64,
913
    pub digest: HeaderDigest,
914
}
915
916
impl Header {
917
    /// Creates a [`Header`] from a SCALE-encoded header.
918
    ///
919
    /// Returns an error if the encoding is incorrect.
920
2
    pub fn from_scale_encoded_header(
921
2
        header: &[u8],
922
2
        block_number_bytes: usize,
923
2
    ) -> Result<Header, header::Error> {
924
2
        let header = header::decode(header, block_number_bytes)
?0
;
925
2
        Ok(Header {
926
2
            parent_hash: HashHexString(*header.parent_hash),
927
2
            extrinsics_root: HashHexString(*header.extrinsics_root),
928
2
            state_root: HashHexString(*header.state_root),
929
2
            number: header.number,
930
2
            digest: HeaderDigest {
931
2
                logs: header
932
2
                    .digest
933
2
                    .logs()
934
2
                    .map(|log| {
935
0
                        HexString(log.scale_encoding(block_number_bytes).fold(
936
0
                            Vec::new(),
937
0
                            |mut a, b| {
938
0
                                a.extend_from_slice(b.as_ref());
939
0
                                a
940
0
                            },
Unexecuted instantiation: _RNCNCNvMs5_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB9_6Header25from_scale_encoded_header00Bd_
Unexecuted instantiation: _RNCNCNvMs5_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB9_6Header25from_scale_encoded_header00Bd_
941
0
                        ))
942
2
                    })
Unexecuted instantiation: _RNCNvMs5_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB7_6Header25from_scale_encoded_header0Bb_
Unexecuted instantiation: _RNCNvMs5_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB7_6Header25from_scale_encoded_header0Bb_
943
2
                    .collect(),
944
2
            },
945
2
        })
946
2
    }
Unexecuted instantiation: _RNvMs5_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_6Header25from_scale_encoded_header
_RNvMs5_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_6Header25from_scale_encoded_header
Line
Count
Source
920
2
    pub fn from_scale_encoded_header(
921
2
        header: &[u8],
922
2
        block_number_bytes: usize,
923
2
    ) -> Result<Header, header::Error> {
924
2
        let header = header::decode(header, block_number_bytes)
?0
;
925
2
        Ok(Header {
926
2
            parent_hash: HashHexString(*header.parent_hash),
927
2
            extrinsics_root: HashHexString(*header.extrinsics_root),
928
2
            state_root: HashHexString(*header.state_root),
929
2
            number: header.number,
930
2
            digest: HeaderDigest {
931
2
                logs: header
932
2
                    .digest
933
2
                    .logs()
934
2
                    .map(|log| {
935
                        HexString(log.scale_encoding(block_number_bytes).fold(
936
                            Vec::new(),
937
                            |mut a, b| {
938
                                a.extend_from_slice(b.as_ref());
939
                                a
940
                            },
941
                        ))
942
2
                    })
943
2
                    .collect(),
944
2
            },
945
2
        })
946
2
    }
947
}
948
949
6
#[derive(Debug, Clone, serde::Serialize, 
s4
erde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssp_1__NtB7_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1e_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssp_1__NtB8_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssp_1__NtB8_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssp_1__NtB8_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssp_1__NtBa_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1f_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssp_1__NtBa_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssp_1__NtBb_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1i_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssp_1__NtBb_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1i_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtB7_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1f_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtB8_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1g_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtBa_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1i_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtB8_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1g_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtB8_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1g_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtBa_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1g_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2H_4read7StrReadEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtBb_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1j_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2R_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtBb_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1j_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB2R_4read7StrReadEEBf_
_RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtB8_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1g_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
949
2
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
_RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtBb_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1j_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB2R_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
949
4
#[derive(Debug, Clone, serde::Serialize, 
s2
erde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtBb_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1j_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2R_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
_RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssp_1__NtBa_12HeaderDigestNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1g_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2H_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
949
2
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
950
pub struct HeaderDigest {
951
    pub logs: Vec<HexString>,
952
}
953
954
#[derive(Debug, Clone)]
955
pub struct RpcMethods {
956
    pub methods: Vec<String>,
957
}
958
959
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtB7_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1i_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtB8_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1j_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtB8_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1j_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtB8_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1j_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1j_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1l_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1m_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1m_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1m_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1k_11deserializepEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1l_7Visitor9expecting
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1m_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1m_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1l_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1m_7Visitor9visit_u64pEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1m_7Visitor9visit_strpEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1m_7Visitor11visit_bytespEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1k_11deserializepEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1l_7Visitor9expecting
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1m_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1m_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtB7_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1j_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtB8_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtB8_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtB8_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_14___FieldVisitorNtB1m_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1n_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1n_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_14___FieldVisitorNtB1n_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1m_7Visitor9expecting
Unexecuted instantiation: _RNvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s0_14___FieldVisitorNtB1m_7Visitor9expecting
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1n_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1n_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RINvXs3_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_14___FieldVisitorNtB1n_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBf_
Unexecuted instantiation: _RNvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_s_9___VisitorNtB1m_7Visitor9expecting
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBa_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1k_11deserializeINtNtNtNtB1o_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBe_
Unexecuted instantiation: _RINvXs1_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_7___FieldB1l_11deserializeINtNtNtNtB1p_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs4_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s0_7___FieldB1l_11deserializeINtNtNtNtB1p_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1n_7Visitor9visit_seqQINtNtB1n_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1p_9___private2de7content7ContentENvMse_B51_INtB51_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6i_EEBf_
Unexecuted instantiation: _RINvXs2_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1n_7Visitor9visit_mapQINtNtB1n_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1p_9___private2de7content7ContentB50_EENCINvB52_17visit_content_mapB2c_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6i_EEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1n_7Visitor9visit_seqQINtNtB1n_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1p_9___private2de7content7ContentENvMse_B53_INtB53_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6k_EEBf_
Unexecuted instantiation: _RINvXs5_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssr_1__NtBb_16MaybeRuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_s_9___VisitorNtB1n_7Visitor9visit_mapQINtNtB1n_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1p_9___private2de7content7ContentB52_EENCINvB54_17visit_content_mapB2c_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6k_EEBf_
960
#[serde(tag = "type")]
961
pub enum MaybeRuntimeSpec<'a> {
962
    #[serde(rename = "valid")]
963
    Valid { spec: RuntimeSpec<'a> },
964
    #[serde(rename = "invalid")]
965
    Invalid { error: String }, // TODO: String because it's more convenient; improve
966
}
967
968
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsst_1__NtB7_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB19_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsst_1__NtB8_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1a_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsst_1__NtB8_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1a_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsst_1__NtB8_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1a_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsst_1__NtBa_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1a_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsst_1__NtBa_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1c_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsst_1__NtBb_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1d_7Visitor10visit_enumpEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsst_1__NtB7_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1a_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsst_1__NtBa_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1d_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsst_1__NtB8_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1b_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsst_1__NtB8_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1b_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsst_1__NtB8_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1b_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsst_1__NtBa_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1b_11deserializepEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsst_1__NtBb_8NodeRoleNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1e_7Visitor10visit_enumpEBf_
969
pub enum NodeRole {
970
    // Note that "Light" isn't in the Substrate source code and is a custom addition.
971
    #[serde(rename = "Light")]
972
    Light,
973
    #[serde(rename = "Full")]
974
    Full,
975
    #[serde(rename = "Authority")]
976
    Authority,
977
}
978
979
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssv_1__NtB7_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1d_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssv_1__NtB8_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1e_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssv_1__NtB8_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1e_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssv_1__NtB8_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1e_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssv_1__NtBa_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1e_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssv_1__NtBa_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssv_1__NtBb_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1h_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssv_1__NtBb_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1h_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssv_1__NtB7_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1e_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssv_1__NtB8_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor9visit_u64NtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssv_1__NtB8_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssv_1__NtB8_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1f_7Visitor11visit_bytesNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssv_1__NtBa_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssv_1__NtBa_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1f_11deserializeINtNtNtNtB1j_9___private2de7content19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssv_1__NtBb_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1i_7Visitor9visit_seqQINtNtB1i_5value15SeqDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterNtNtNtNtB1k_9___private2de7content7ContentENvMse_B4W_INtB4W_19ContentDeserializerNtNtCscu7pqq74Vb8_10serde_json5error5ErrorE3newEB6d_EEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssv_1__NtBb_11RuntimeSpecNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1i_7Visitor9visit_mapQINtNtB1i_5value15MapDeserializerINtNtNtNtCsaYZPK01V26L_4core4iter8adapters3map3MapINtNtNtCsdZExvAaxgia_5alloc3vec9into_iter8IntoIterTNtNtNtNtB1k_9___private2de7content7ContentB4V_EENCINvB4X_17visit_content_mapB27_NtNtCscu7pqq74Vb8_10serde_json5error5ErrorE0EB6d_EEBf_
980
pub struct RuntimeSpec<'a> {
981
    #[serde(rename = "specName")]
982
    pub spec_name: Cow<'a, str>,
983
    #[serde(rename = "implName")]
984
    pub impl_name: Cow<'a, str>,
985
    #[serde(rename = "specVersion")]
986
    pub spec_version: u32,
987
    #[serde(rename = "implVersion")]
988
    pub impl_version: u32,
989
    #[serde(rename = "transactionVersion", skip_serializing_if = "Option::is_none")]
990
    pub transaction_version: Option<u32>,
991
    pub apis: HashMap<HexString, u32, fnv::FnvBuildHasher>,
992
}
993
994
15
#[derive(Debug, Clone, serde::Serialize, 
s8
erde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssx_1__NtB7_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1g_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssx_1__NtB8_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1h_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssx_1__NtB8_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1h_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssx_1__NtB8_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1h_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssx_1__NtBa_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1h_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssx_1__NtBa_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1j_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssx_1__NtBb_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1k_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssx_1__NtBb_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1k_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtB7_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1h_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtB8_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtBa_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1k_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtB8_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1i_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtB8_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1i_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtBa_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1i_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2J_4read7StrReadEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtBb_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1l_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2T_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtBb_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1l_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB2T_4read7StrReadEEBf_
_RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtB8_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1i_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
994
7
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
_RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtBb_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1l_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB2T_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
994
8
#[derive(Debug, Clone, serde::Serialize, 
s1
erde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtBb_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1l_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2T_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
_RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssx_1__NtBa_14RuntimeVersionNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1i_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2J_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
994
7
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
995
pub struct RuntimeVersion<'a> {
996
    #[serde(rename = "specName")]
997
    pub spec_name: Cow<'a, str>,
998
    #[serde(rename = "implName")]
999
    pub impl_name: Cow<'a, str>,
1000
    #[serde(rename = "authoringVersion")]
1001
    pub authoring_version: u64,
1002
    #[serde(rename = "specVersion")]
1003
    pub spec_version: u64,
1004
    #[serde(rename = "implVersion")]
1005
    pub impl_version: u64,
1006
    #[serde(rename = "transactionVersion", skip_serializing_if = "Option::is_none")]
1007
    pub transaction_version: Option<u64>,
1008
    #[serde(rename = "stateVersion", skip_serializing_if = "Option::is_none")]
1009
    pub state_version: Option<u64>,
1010
    // TODO: optimize?
1011
    pub apis: Vec<(HexString, u32)>,
1012
}
1013
1014
#[derive(Debug, Copy, Clone)]
1015
pub struct RuntimeDispatchInfo {
1016
    pub weight: u64,
1017
    pub class: DispatchClass,
1018
    pub partial_fee: u128,
1019
}
1020
1021
#[derive(Debug, Copy, Clone)]
1022
pub enum DispatchClass {
1023
    Normal,
1024
    Operational,
1025
    Mandatory,
1026
}
1027
1028
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssz_1__NtB7_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1i_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssz_1__NtB8_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1j_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssz_1__NtB8_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1j_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssz_1__NtB8_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1j_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssz_1__NtBa_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1j_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssz_1__NtBa_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1l_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssz_1__NtBb_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1m_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssz_1__NtBb_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1m_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssz_1__NtB7_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1j_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssz_1__NtB8_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssz_1__NtBa_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1m_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssz_1__NtB8_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssz_1__NtB8_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssz_1__NtBa_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1k_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2L_4read7StrReadEEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssz_1__NtBb_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1n_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2V_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssz_1__NtBb_16StorageChangeSetNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1n_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB2V_4read7StrReadEEBf_
1029
pub struct StorageChangeSet {
1030
    pub block: HashHexString,
1031
    pub changes: Vec<(HexString, Option<HexString>)>,
1032
}
1033
1034
#[derive(Debug, Clone)]
1035
pub struct SystemHealth {
1036
    pub is_syncing: bool,
1037
    pub peers: u64,
1038
    pub should_have_peers: bool,
1039
}
1040
1041
#[derive(Debug, Clone, serde::Serialize)]
1042
pub struct SystemPeer {
1043
    #[serde(rename = "peerId")]
1044
    pub peer_id: String, // Example: "12D3KooWHEQXbvCzLYvc87obHV6HY4rruHz8BJ9Lw1Gg2csVfR6Z"
1045
    pub roles: SystemPeerRole,
1046
    #[serde(rename = "bestHash")]
1047
    pub best_hash: HashHexString,
1048
    #[serde(rename = "bestNumber")]
1049
    pub best_number: u64,
1050
}
1051
1052
#[derive(Debug, Clone, serde::Serialize)]
1053
pub enum SystemPeerRole {
1054
    #[serde(rename = "AUTHORITY")]
1055
    Authority,
1056
    #[serde(rename = "FULL")]
1057
    Full,
1058
    #[serde(rename = "LIGHT")]
1059
    Light,
1060
}
1061
1062
0
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssD_1__NtB7_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1j_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssD_1__NtB8_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssD_1__NtB8_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssD_1__NtB8_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssD_1__NtBa_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1k_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssD_1__NtBa_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1m_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssD_1__NtBb_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1n_7Visitor10visit_enumpEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssD_1__NtB7_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1k_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssD_1__NtB8_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorEBc_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssD_1__NtBa_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1n_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssD_1__NtBb_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1o_7Visitor10visit_enumINtNtCscu7pqq74Vb8_10serde_json2de13VariantAccessNtNtB2Y_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssD_1__NtBb_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1o_7Visitor10visit_enumINtNtCscu7pqq74Vb8_10serde_json2de17UnitVariantAccessNtNtB2Y_4read7StrReadEEBf_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssD_1__NtB8_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssD_1__NtB8_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssD_1__NtBa_17TransactionStatusNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1l_11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB2N_4read7StrReadEEBe_
1063
pub enum TransactionStatus {
1064
    #[serde(rename = "future")]
1065
    Future,
1066
    #[serde(rename = "ready")]
1067
    Ready,
1068
    #[serde(rename = "broadcast")]
1069
    Broadcast(Vec<String>), // Base58 PeerIds  // TODO: stronger typing
1070
    #[serde(rename = "inBlock")]
1071
    InBlock(HashHexString),
1072
    #[serde(rename = "retracted")]
1073
    Retracted(HashHexString),
1074
    #[serde(rename = "finalityTimeout")]
1075
    FinalityTimeout(HashHexString),
1076
    #[serde(rename = "finalized")]
1077
    Finalized(HashHexString),
1078
    #[serde(rename = "usurped")]
1079
    Usurped(HashHexString),
1080
    #[serde(rename = "dropped")]
1081
    Dropped,
1082
    #[serde(rename = "invalid")]
1083
    Invalid,
1084
}
1085
1086
impl serde::Serialize for HashHexString {
1087
8
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1088
8
    where
1089
8
        S: serde::Serializer,
1090
8
    {
1091
8
        format!("0x{}", hex::encode(&self.0[..])).serialize(serializer)
1092
8
    }
Unexecuted instantiation: _RINvXs6_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepEBa_
Unexecuted instantiation: _RINvXs6_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeINtNtCscu7pqq74Vb8_10serde_json3ser18RawValueStrEmitterQINtNtCsdZExvAaxgia_5alloc3vec3VechENtB1W_16CompactFormatterEEBa_
_RINvXs6_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_13HashHexStringNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEBa_
Line
Count
Source
1087
8
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1088
8
    where
1089
8
        S: serde::Serializer,
1090
8
    {
1091
8
        format!("0x{}", hex::encode(&self.0[..])).serialize(serializer)
1092
8
    }
1093
}
1094
1095
impl fmt::Display for HexString {
1096
60
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1097
60
        write!(f, "0x{}", hex::encode(&self.0[..]))
1098
60
    }
Unexecuted instantiation: _RNvXs7_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB5_9HexStringNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
_RNvXs7_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB5_9HexStringNtNtCsaYZPK01V26L_4core3fmt7Display3fmt
Line
Count
Source
1096
60
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1097
60
        write!(f, "0x{}", hex::encode(&self.0[..]))
1098
60
    }
1099
}
1100
1101
impl serde::Serialize for HexString {
1102
60
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1103
60
    where
1104
60
        S: serde::Serializer,
1105
60
    {
1106
60
        self.to_string().serialize(serializer)
1107
60
    }
Unexecuted instantiation: _RINvXs8_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepEBa_
Unexecuted instantiation: _RINvXs8_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeINtNtCscu7pqq74Vb8_10serde_json3ser16MapKeySerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechENtB1R_16CompactFormatterEEBa_
Unexecuted instantiation: _RINvXs8_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeINtNtCscu7pqq74Vb8_10serde_json3ser18RawValueStrEmitterQINtNtCsdZExvAaxgia_5alloc3vec3VechENtB1R_16CompactFormatterEEBa_
_RINvXs8_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_9HexStringNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEBa_
Line
Count
Source
1102
60
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1103
60
    where
1104
60
        S: serde::Serializer,
1105
60
    {
1106
60
        self.to_string().serialize(serializer)
1107
60
    }
1108
}
1109
1110
impl serde::Serialize for RpcMethods {
1111
0
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1112
0
    where
1113
0
        S: serde::Serializer,
1114
0
    {
1115
0
        #[derive(serde::Serialize)]
1116
0
        struct SerdeRpcMethods<'a> {
1117
0
            methods: &'a [String],
1118
0
        }
1119
0
1120
0
        SerdeRpcMethods {
1121
0
            methods: &self.methods,
1122
0
        }
1123
0
        .serialize(serializer)
1124
0
    }
Unexecuted instantiation: _RINvXs9_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_10RpcMethodsNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepEBa_
Unexecuted instantiation: _RINvXs9_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_10RpcMethodsNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEBa_
1125
}
1126
1127
impl serde::Serialize for Block {
1128
0
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1129
0
    where
1130
0
        S: serde::Serializer,
1131
0
    {
1132
0
        #[derive(serde::Serialize)]
1133
0
        struct SerdeBlock<'a> {
1134
0
            block: SerdeBlockInner<'a>,
1135
0
        }
1136
0
1137
0
        #[derive(serde::Serialize)]
1138
0
        struct SerdeBlockInner<'a> {
1139
0
            extrinsics: &'a [HexString],
1140
0
            header: &'a Header,
1141
0
            justifications: Option<Vec<Vec<Vec<u8>>>>,
1142
0
        }
1143
0
1144
0
        SerdeBlock {
1145
0
            block: SerdeBlockInner {
1146
0
                extrinsics: &self.extrinsics,
1147
0
                header: &self.header,
1148
0
                justifications: self.justifications.as_ref().map(|list| {
1149
0
                    list.iter()
1150
0
                        .map(|(e, j)| vec![e.to_vec(), j.clone()])
Unexecuted instantiation: _RNCNCINvXsa_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtBa_5BlockNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepE00Be_
Unexecuted instantiation: _RNCNCINvXsa_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtBa_5BlockNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEE00Be_
1151
0
                        .collect()
1152
0
                }),
Unexecuted instantiation: _RNCINvXsa_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB8_5BlockNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepE0Bc_
Unexecuted instantiation: _RNCINvXsa_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB8_5BlockNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEE0Bc_
1153
0
            },
1154
0
        }
1155
0
        .serialize(serializer)
1156
0
    }
Unexecuted instantiation: _RINvXsa_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_5BlockNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepEBa_
Unexecuted instantiation: _RINvXsa_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_5BlockNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEBa_
1157
}
1158
1159
impl serde::Serialize for RuntimeDispatchInfo {
1160
0
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1161
0
    where
1162
0
        S: serde::Serializer,
1163
0
    {
1164
0
        #[derive(serde::Serialize)]
1165
0
        struct SerdeRuntimeDispatchInfo {
1166
0
            weight: u64,
1167
0
            class: &'static str,
1168
0
            /// Sent back as a string in order to not accidentally lose precision.
1169
0
            #[serde(rename = "partialFee")]
1170
0
            partial_fee: String,
1171
0
        }
1172
0
1173
0
        SerdeRuntimeDispatchInfo {
1174
0
            weight: self.weight,
1175
0
            class: match self.class {
1176
0
                DispatchClass::Normal => "normal",
1177
0
                DispatchClass::Operational => "operational",
1178
0
                DispatchClass::Mandatory => "mandatory",
1179
            },
1180
0
            partial_fee: self.partial_fee.to_string(),
1181
0
        }
1182
0
        .serialize(serializer)
1183
0
    }
Unexecuted instantiation: _RINvXsb_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_19RuntimeDispatchInfoNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepEBa_
Unexecuted instantiation: _RINvXsb_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_19RuntimeDispatchInfoNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEBa_
1184
}
1185
1186
7
#[derive(serde::Serialize, 
s4
erde::Deserialize)]
Unexecuted instantiation: _RNvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssF_1__NtB7_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1j_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssF_1__NtB8_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssF_1__NtB8_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssF_1__NtB8_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1k_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssF_1__NtBa_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1k_11deserializepEBe_
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssF_1__NtBa_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1m_7Visitor9expecting
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssF_1__NtBb_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1n_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodssF_1__NtBb_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1n_7Visitor9visit_mappEBf_
Unexecuted instantiation: _RNvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtB7_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB2_14___FieldVisitorNtB1k_7Visitor9expecting
Unexecuted instantiation: _RNvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtBa_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_9___VisitorNtB1n_7Visitor9expecting
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtB8_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor9visit_u64pEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtB8_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor9visit_strpEBc_
Unexecuted instantiation: _RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtB8_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor11visit_bytespEBc_
Unexecuted instantiation: _RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtBa_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1l_11deserializepEBe_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtBb_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1o_7Visitor9visit_seqpEBf_
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtBb_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1o_7Visitor9visit_mappEBf_
_RINvXNvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtB8_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB3_14___FieldVisitorNtB1l_7Visitor9visit_strNtNtCscu7pqq74Vb8_10serde_json5error5ErrorECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
1186
3
#[derive(serde::Serialize, serde::Deserialize)]
_RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtBb_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1o_7Visitor9visit_mapINtNtCscu7pqq74Vb8_10serde_json2de9MapAccessNtNtB2W_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
1186
4
#[derive(serde::Serialize, 
s1
erde::Deserialize)]
Unexecuted instantiation: _RINvXs0_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtBb_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB6_9___VisitorNtB1o_7Visitor9visit_seqINtNtCscu7pqq74Vb8_10serde_json2de9SeqAccessNtNtB2W_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
_RINvXs_NvXNvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methodssF_1__NtBa_17SerdeSystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeNtB5_7___FieldB1l_11deserializeINtNtCscu7pqq74Vb8_10serde_json2de6MapKeyNtNtB2M_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
1186
3
#[derive(serde::Serialize, serde::Deserialize)]
1187
struct SerdeSystemHealth {
1188
    #[serde(rename = "isSyncing")]
1189
    is_syncing: bool,
1190
    peers: u64,
1191
    #[serde(rename = "shouldHavePeers")]
1192
    should_have_peers: bool,
1193
}
1194
1195
impl serde::Serialize for SystemHealth {
1196
1
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1197
1
    where
1198
1
        S: serde::Serializer,
1199
1
    {
1200
1
        SerdeSystemHealth {
1201
1
            is_syncing: self.is_syncing,
1202
1
            peers: self.peers,
1203
1
            should_have_peers: self.should_have_peers,
1204
1
        }
1205
1
        .serialize(serializer)
1206
1
    }
Unexecuted instantiation: _RINvXsc_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_12SystemHealthNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializepEBa_
_RINvXsc_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_12SystemHealthNtNtCsf0yC2YK6bpM_5serde3ser9Serialize9serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEBa_
Line
Count
Source
1196
1
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
1197
1
    where
1198
1
        S: serde::Serializer,
1199
1
    {
1200
1
        SerdeSystemHealth {
1201
1
            is_syncing: self.is_syncing,
1202
1
            peers: self.peers,
1203
1
            should_have_peers: self.should_have_peers,
1204
1
        }
1205
1
        .serialize(serializer)
1206
1
    }
1207
}
1208
1209
impl<'a> serde::Deserialize<'a> for SystemHealth {
1210
1
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
1211
1
    where
1212
1
        D: serde::Deserializer<'a>,
1213
1
    {
1214
1
        let h: SerdeSystemHealth = serde::Deserialize::deserialize(deserializer)
?0
;
1215
1
        Ok(SystemHealth {
1216
1
            is_syncing: h.is_syncing,
1217
1
            peers: h.peers,
1218
1
            should_have_peers: h.should_have_peers,
1219
1
        })
1220
1
    }
Unexecuted instantiation: _RINvXsd_NtNtCsN16ciHI6Qf_7smoldot8json_rpc7methodsNtB6_12SystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializepEBa_
Unexecuted instantiation: _RINvXsd_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_12SystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializepEBa_
_RINvXsd_NtNtCseuYC0Zibziv_7smoldot8json_rpc7methodsNtB6_12SystemHealthNtNtCsf0yC2YK6bpM_5serde2de11Deserialize11deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB23_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
1210
1
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
1211
1
    where
1212
1
        D: serde::Deserializer<'a>,
1213
1
    {
1214
1
        let h: SerdeSystemHealth = serde::Deserialize::deserialize(deserializer)
?0
;
1215
1
        Ok(SystemHealth {
1216
1
            is_syncing: h.is_syncing,
1217
1
            peers: h.peers,
1218
1
            should_have_peers: h.should_have_peers,
1219
1
        })
1220
1
    }
1221
}
1222
1223
2
fn hex_num_serialize<S>(num: &u64, serializer: S) -> Result<S::Ok, S::Error>
1224
2
where
1225
2
    S: serde::Serializer,
1226
2
{
1227
2
    serde::Serialize::serialize(&format!("0x{:x}", *num), serializer)
1228
2
}
Unexecuted instantiation: _RINvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methods17hex_num_serializepEB6_
Unexecuted instantiation: _RINvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods17hex_num_serializeINtNtCscu7pqq74Vb8_10serde_json3ser18RawValueStrEmitterQINtNtCsdZExvAaxgia_5alloc3vec3VechENtB15_16CompactFormatterEEB6_
_RINvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods17hex_num_serializeQINtNtCscu7pqq74Vb8_10serde_json3ser10SerializerQINtNtCsdZExvAaxgia_5alloc3vec3VechEEEB6_
Line
Count
Source
1223
2
fn hex_num_serialize<S>(num: &u64, serializer: S) -> Result<S::Ok, S::Error>
1224
2
where
1225
2
    S: serde::Serializer,
1226
2
{
1227
2
    serde::Serialize::serialize(&format!("0x{:x}", *num), serializer)
1228
2
}
1229
1230
2
fn hex_num_deserialize<'de, D>(deserializer: D) -> Result<u64, D::Error>
1231
2
where
1232
2
    D: serde::Deserializer<'de>,
1233
2
{
1234
2
    let mut string: String = serde::Deserialize::deserialize(deserializer)
?0
;
1235
2
    if !string.starts_with("0x") {
1236
0
        return Err(serde::de::Error::custom("number doesn't start with 0x"));
1237
2
    }
1238
2
    if string.len() % 2 != 0 {
1239
2
        string.insert(2, '0');
1240
2
    }
0
1241
2
    let decoded = hex::decode(&string[2..]).map_err(serde::de::Error::custom)
?0
;
1242
2
    if decoded.len() > 8 {
1243
0
        return Err(serde::de::Error::custom("number overflow"));
1244
2
    }
1245
2
1246
2
    let mut num = [0u8; 8];
1247
2
    num[..decoded.len()].copy_from_slice(&decoded);
1248
2
    Ok(u64::from_be_bytes(num))
1249
2
}
Unexecuted instantiation: _RINvNtNtCsN16ciHI6Qf_7smoldot8json_rpc7methods19hex_num_deserializepEB6_
Unexecuted instantiation: _RINvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods19hex_num_deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB1a_4read7StrReadEEB6_
_RINvNtNtCseuYC0Zibziv_7smoldot8json_rpc7methods19hex_num_deserializeQINtNtCscu7pqq74Vb8_10serde_json2de12DeserializerNtNtB1a_4read7StrReadEECsibGXYHQB8Ea_25json_rpc_general_requests
Line
Count
Source
1230
2
fn hex_num_deserialize<'de, D>(deserializer: D) -> Result<u64, D::Error>
1231
2
where
1232
2
    D: serde::Deserializer<'de>,
1233
2
{
1234
2
    let mut string: String = serde::Deserialize::deserialize(deserializer)
?0
;
1235
2
    if !string.starts_with("0x") {
1236
0
        return Err(serde::de::Error::custom("number doesn't start with 0x"));
1237
2
    }
1238
2
    if string.len() % 2 != 0 {
1239
2
        string.insert(2, '0');
1240
2
    }
0
1241
2
    let decoded = hex::decode(&string[2..]).map_err(serde::de::Error::custom)
?0
;
1242
2
    if decoded.len() > 8 {
1243
0
        return Err(serde::de::Error::custom("number overflow"));
1244
2
    }
1245
2
1246
2
    let mut num = [0u8; 8];
1247
2
    num[..decoded.len()].copy_from_slice(&decoded);
1248
2
    Ok(u64::from_be_bytes(num))
1249
2
}
1250
1251
#[cfg(test)]
1252
mod tests {
1253
    #[test]
1254
1
    fn no_params_accepted() {
1255
1
        // No `params` field in the request.
1256
1
        let (_, call) = super::parse_jsonrpc_client_to_server(
1257
1
            r#"{"jsonrpc":"2.0","id":2,"method":"chainSpec_v1_chainName"}"#,
1258
1
        )
1259
1
        .unwrap();
1260
1
1261
1
        assert!(
matches!0
(call, super::MethodCall::chainSpec_v1_chainName {}));
1262
1
    }
1263
1264
    #[test]
1265
1
    fn no_params_refused() {
1266
1
        // No `params` field in the request.
1267
1
        let err = super::parse_jsonrpc_client_to_server(
1268
1
            r#"{"jsonrpc":"2.0","id":2,"method":"chainHead_v1_follow"}"#,
1269
1
        );
1270
1
1271
1
        assert!(matches!(
1272
1
            err,
1273
            Err(super::ParseClientToServerError::Method {
1274
1
                request_id: "2",
1275
                error: super::MethodError::MissingParameters {
1276
1
                    rpc_method: "chainHead_v1_follow"
1277
                }
1278
            })
1279
        ));
1280
1
    }
1281
}