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

Add burn contract #413

Merged
merged 8 commits into from
Jun 10, 2020
Merged

Add burn contract #413

merged 8 commits into from
Jun 10, 2020

Conversation

ethanfrey
Copy link
Member

Closes #387

Adds a simple contract to test migrations

@ethanfrey ethanfrey marked this pull request as ready for review June 9, 2020 09:17
@ethanfrey ethanfrey requested a review from webmaster128 June 9, 2020 09:18
@ethanfrey ethanfrey force-pushed the add-burn-contract branch from 32bde26 to 49e7ab3 Compare June 10, 2020 12:30
@ethanfrey
Copy link
Member Author

I addressed all PR comments. Waiting for CI and a re-review


/// HandleMsg is a placeholder where we don't take any input
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct HandleMsg {}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enum?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, I want it to accept anything, so I can give the custom error message in the code ("only supports migration") rather than some obstuse json parse error

Copy link
Member

@webmaster128 webmaster128 Jun 10, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, since the wasm implementation of serde JSON does not have an any type, I don't think this is possible in a non-hacky way. You can leave it like this, which probably accepts any JSON object as an input and ignored all extra fields.


/// QueryMsg is a placeholder where we don't take any input
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct QueryMsg {}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enum?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See above. I would rather accept any struct and return Err(generic_err("You can only use this contract for migrations"))

What do you think? A better suggestion for error message?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is a use case we want to promote, I think the nicest way would be to make the init/handle/query exports optional. Then we get the best error reporting by the VM: e.g. this contract does not support init

@ethanfrey ethanfrey merged commit e223918 into master Jun 10, 2020
@ethanfrey ethanfrey deleted the add-burn-contract branch June 10, 2020 16:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Create demo migrate-burn contract
2 participants