-
Notifications
You must be signed in to change notification settings - Fork 12
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
[Migration Review - DO NOT MERGE] Application module #381
Conversation
ignite scaffold module application --dep bank,account,gateway --params max-delegated-gateways:uint
ignite scaffold map application stake:coin service-configs:array.string delegatee-gateway-addresses:array.string --no-message --module application --index address --signer address
ignite scaffold message stake-application stake:coin services:array.string --signer address --module application
ignite scaffold message unstake-application --signer address --module application
ignite scaffold message delegate-to-gateway gateway-address:string --signer app-address --module application
ignite scaffold message undelegate-from-gateway gateway-address:string --signer app-address --module application
|
||
// the address capable of executing a MsgUpdateParams message. Typically, this | ||
// should be the x/gov module account. | ||
authority string | ||
|
||
bankKeeper types.BankKeeper |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use ModuleInputs for this instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This whole file is a scaffold by ignite scaffold module application --dep bank,account,gateway
. We didn't altere it and should be kept that way IMO.
Also ModuleInputs
has public properties, while the Keeper
struct has them private.
@red-0ne please add
|
Summary
Human Summary
Review branch for the application module migration to rollkit/cosmos-sdk v0.50.x (see: migration notion doc).
Once this branch is approved, review and merge #378
NOTE:
*.pulsar.go
code is auto-generated and can be ignoredIssue
Type of change
Select one or more:
Testing
make go_develop_and_test
make test_e2e
devnet-test-e2e
label to the PR. This is VERY expensive, only do it after all the reviews are complete.Sanity Checklist