-
Notifications
You must be signed in to change notification settings - Fork 2
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 Token Factory integration #11
base: official-ibc-fork
Are you sure you want to change the base?
Conversation
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.
Nice. Couldn't find explanation why protobuf types copied instead of using osmosis-std
(please add module-level comment)
bail!("Subdenom {subdenom} by sender {sender} doesn't exist") | ||
} | ||
|
||
// We mint. No need for transactional cache here, if this fails, the tokenfactory mint fails |
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.
// We mint. No need for transactional cache here, if this fails, the tokenfactory mint fails | |
// We burn. No need for transactional cache here, if this fails, the tokenfactory burn fails |
typo
src/tokenfactory/osmosis.rs
Outdated
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.
Wonder why not to use osmosis-std?
I copied, because i don't want to bring osmosis-std here it's soooooo heavy ! |
This PR adds token factory capabilites into cw-multi-test.
For now the 3 following messages are handled for Osmosis :
MsgCreateDenom
MsgMint
MsgBurn
TODO :
Implement queries (is it needed ?)
Implement other tokenfactory flavors (neutron and xion have the same flavor)