Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions src/proto/definition.proto
Original file line number Diff line number Diff line change
Expand Up @@ -320,3 +320,30 @@ message MsgDoubleCheckTx {
FillVEPacket fillPacket = 6;
}
}

message ChainParams {
bytes chainID = 1;
bool allTokensDisabled = 2;
repeated bytes disabledTokens = 3;
}

message UniverseParams {
Universe universe = 1;
bool allChainsDisabled = 2;
repeated ChainParams chainParams = 3;
}

// Params defines the parameters for the module.
message Params {
bool newRFFDisabled = 1;
repeated UniverseParams universeParams = 2;
}

// QueryParamsRequest is request type for the Query/Params RPC method.
message QueryParamsRequest {}

// QueryParamsResponse is response type for the Query/Params RPC method.
message QueryParamsResponse {
// params holds all the parameters of this module.
Params params = 1;
}
Loading