MCPcopy Create free account
hub / github.com/ChainSafe/Delorean-Protocol / echo

Method echo

fendermint/abci/src/application.rs:32–36  ·  view source on GitHub ↗

Echo back the same message as provided in the request.

(&self, request: request::Echo)

Source from the content-addressed store, hash-verified

30pub trait Application {
31 /// Echo back the same message as provided in the request.
32 async fn echo(&self, request: request::Echo) -> AbciResult<response::Echo> {
33 Ok(response::Echo {
34 message: request.message,
35 })
36 }
37
38 /// Provide information about the ABCI application.
39 async fn info(&self, request: request::Info) -> AbciResult<response::Info> {

Callers 1

callMethod · 0.45

Implementers 2

kvstore.rsfendermint/abci/examples/kvstore.rs
app.rsfendermint/app/src/app.rs

Calls

no outgoing calls

Tested by

no test coverage detected