Runtime Pallets
Echo
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
api.tx.echo.ping
function ping(
destination: H160
)
api.query.echo.nextSessionId
function nextSessionId(
): u64
api.events.echo.PingReceived
type PingReceived = {
session_id: u64,
source: H160,
data: Bytes
}
api.events.echo.PingSent
type PingSent = {
session_id: u64,
source: H160,
destination: H160,
event_proof_id: u64
}
api.events.echo.PongReceived
type PongReceived = {
session_id: u64,
source: H160,
data: Bytes
}
api.events.echo.PongSent
type PongSent = {
session_id: u64,
source: H160,
destination: H160,
event_proof_id: u64
}
api.errors.echo.InvalidAbiEncoding
api.errors.echo.InvalidParameter
api.errors.echo.NoAvailableIds
api.consts.echo.palletId
type palletId = FrameSupportPalletId
Was this page helpful?