-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename module to multi_coin_rewards
- Loading branch information
1 parent
0c40975
commit ac2b316
Showing
61 changed files
with
1,109 additions
and
1,094 deletions.
There are no files selected for viewing
142 changes: 73 additions & 69 deletions
142
api/kyve/compliance/module/module.pulsar.go → ...ulti_coin_rewards/module/module.pulsar.go
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
proto/kyve/compliance/module/module.proto → ...ve/multi_coin_rewards/module/module.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
proto/kyve/compliance/v1beta1/events.proto → ...e/multi_coin_rewards/v1beta1/events.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
syntax = "proto3"; | ||
|
||
package kyve.multi_coin_rewards.v1beta1; | ||
|
||
option go_package = "github.com/KYVENetwork/chain/x/multi_coin_rewards/types"; | ||
|
||
// Params defines the multi_coin_rewards module parameters. | ||
message Params { | ||
// multi_coin_distribution_policy_admin_address specifies an address which is allowed to adjust the weights for | ||
// the coin redistribution. This address can now drain coins, but only | ||
string multi_coin_distribution_policy_admin_address = 7; | ||
|
||
// multi_coin_distribution_pending_time ... | ||
uint64 multi_coin_distribution_pending_time = 8; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.