forest-filecoin 0.33.1

Rust Filecoin implementation.
Documentation
1
2
3
4
5
6
7
8
// Copyright 2019-2026 ChainSafe Systems
// SPDX-License-Identifier: Apache-2.0, MIT

use super::*;
use crate::libp2p::rpc::CborRequestResponse;

/// Hello protocol codec to be used within the RPC service.
pub type HelloCodec = CborRequestResponse<&'static str, HelloRequest, HelloResponse>;