Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(x/ecocredit): update core supply and basket field names #1192

Merged
merged 13 commits into from
Jun 23, 2022
Merged
Show file tree
Hide file tree
Changes from 11 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
24 changes: 18 additions & 6 deletions api/regen/ecocredit/basket/v1/query.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

230 changes: 158 additions & 72 deletions api/regen/ecocredit/basket/v1/tx.pulsar.go

Large diffs are not rendered by default.

118 changes: 59 additions & 59 deletions api/regen/ecocredit/v1/query.pulsar.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 15 additions & 10 deletions proto/regen/ecocredit/basket/v1/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ message EventCreate {

// curator is the address of the basket curator who is able to change certain
// basket settings.
// Deprecated: This field is still populated and will be removed in the
// next version.
//
// Deprecated (Since Revision 1): This field is still populated and will be
// removed in the next version.
string curator = 2 [ deprecated = true ];
}

Expand All @@ -30,13 +31,15 @@ message EventPut {
string basket_denom = 2;

// credits are the credits that were added to the basket.
// Deprecated: This field is still populated and will be removed in the
// next version.
//
// Deprecated (Since Revision 1): This field is still populated and will be
// removed in the next version.
repeated BasketCredit credits = 3 [ deprecated = true ];

// amount is the integer number of basket tokens converted from credits.
// Deprecated: This field is still populated and will be removed in the
// next version.
//
// Deprecated (Since Revision 1): This field is still populated and will be
// removed in the next version.
string amount = 4 [ deprecated = true ];
}

Expand All @@ -51,12 +54,14 @@ message EventTake {
string basket_denom = 2;

// credits are the credits that were taken from the basket.
// Deprecated: This field is still populated and will be removed in the
// next version.
//
// Deprecated (Since Revision 1): This field is still populated and will be
// removed in the next version.
repeated BasketCredit credits = 3 [ deprecated = true ];

// amount is the integer number of basket tokens converted to credits.
// Deprecated: This field is still populated and will be removed in the
// next version.
//
// Deprecated (Since Revision 1): This field is still populated and will be
// removed in the next version.
string amount = 4 [ deprecated = true ];
}
Loading