1 2 3 4 5 6 7 8 9 10
// Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 use jsonrpsee::proc_macros::rpc; #[rpc(client, namespace = "suix")] pub trait DeepBookApi { #[method(name = "ping")] async fn ping(&self) -> RpcResult<String>; }