Typeberry by Fluffy Labs - v0.5.0
    Preparing search index...

    Interface FuzzMessageHandler

    Handler interface for v1 fuzzer protocol messages. https://github.com/davxy/jam-conformance/blob/main/fuzz-proto/fuzz-v1.asn

    interface FuzzMessageHandler {
        getPeerInfo(value: PeerInfo): Promise<PeerInfo>;
        getSerializedState(
            value: OpaqueHash & WithOpaque<"HeaderHash">,
        ): Promise<KeyValue[]>;
        importBlock(
            value: ViewOf,
        ): Promise<
            utils.Result<OpaqueHash & WithOpaque<"StateRootHash">, ErrorMessage>,
        >;
        initialize(
            header: Initialize,
        ): Promise<OpaqueHash & WithOpaque<"StateRootHash">>;
    }
    Index

    Methods