Skip to content

Commit

Permalink
Add missing proto files for indexing (#8754)
Browse files Browse the repository at this point in the history
* Bring back old proto

* Changelog
  • Loading branch information
mattverse authored Oct 7, 2024
1 parent b71657a commit db3c52e
Show file tree
Hide file tree
Showing 5 changed files with 750 additions and 115 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### State Compatible

* [#8754](https://github.com/osmosis-labs/osmosis/pull/8754) Add missing proto files for indexing
* [#8563](https://github.com/osmosis-labs/osmosis/pull/8563) Add additional queries in x/gauges
* [#8726](https://github.com/osmosis-labs/osmosis/pull/8726) fix: multiple temp directories on command executions
* [#8731](https://github.com/osmosis-labs/osmosis/pull/8731) fix: in place testnet logs
Expand Down
13 changes: 12 additions & 1 deletion proto/osmosis/lockup/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,15 @@ message MsgSetRewardReceiverAddress {
string reward_receiver = 3
[ (gogoproto.moretags) = "yaml:\"reward_receiver\"" ];
}
message MsgSetRewardReceiverAddressResponse { bool success = 1; }
message MsgSetRewardReceiverAddressResponse { bool success = 1; }

// DEPRECATED
// Following messages are deprecated but kept to support indexing.
message MsgUnlockPeriodLock {
string owner = 1 [ (gogoproto.moretags) = "yaml:\"owner\"" ];
uint64 ID = 2;
}

message MsgUnlockTokens {
string owner = 1 [ (gogoproto.moretags) = "yaml:\"owner\"" ];
}
12 changes: 10 additions & 2 deletions proto/osmosis/protorev/v1beta1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -173,5 +173,13 @@ message MsgSetBaseDenoms {
];
}

// MsgSetBaseDenomsResponse defines the Msg/SetBaseDenoms response type.
message MsgSetBaseDenomsResponse {}
// Deprecated, but must be retained in the file to allow indexers
// to index blocks since genesis
message MsgSetBaseDenomsResponse {}
// MsgSetPoolWeights defines the Msg/SetPoolWeights request type.
message MsgSetPoolWeights {
// admin is the account that is authorized to set the pool weights.
string admin = 1;
// pool_weights is the list of pool weights to set.
PoolWeights pool_weights = 2;
}
Loading

0 comments on commit db3c52e

Please sign in to comment.