mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-13 03:25:20 +00:00
18 lines
764 B
Protocol Buffer
18 lines
764 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package ibc.applications.fee.v1;
|
||
|
|
||
|
option go_package = "github.com/cosmos/ibc-go/v6/modules/apps/29-fee/types";
|
||
|
|
||
|
import "gogoproto/gogo.proto";
|
||
|
|
||
|
// IncentivizedAcknowledgement is the acknowledgement format to be used by applications wrapped in the fee middleware
|
||
|
message IncentivizedAcknowledgement {
|
||
|
// the underlying app acknowledgement bytes
|
||
|
bytes app_acknowledgement = 1 [(gogoproto.moretags) = "yaml:\"app_acknowledgement\""];
|
||
|
// the relayer address which submits the recv packet message
|
||
|
string forward_relayer_address = 2 [(gogoproto.moretags) = "yaml:\"forward_relayer_address\""];
|
||
|
// success flag of the base application callback
|
||
|
bool underlying_app_success = 3 [(gogoproto.moretags) = "yaml:\"underlying_app_successl\""];
|
||
|
}
|