how to add custom functionality manually using golang? #31
-
So I have been using Ignite to build a chain for my purpose, which requires adding additional functionality. Any help is greatly appreciated (: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
What you describe is what we call a "module". A module can have its own messages and store, it can also query and execute messages in other modules in your chain and it can execute actions at the beginning and end of every block. Please take a look at these docs: https://docs.cosmos.network/main/building-modules/intro
Regarding your specific use case I can't give you very specific advice, other than to investigate about oracles or interchain queries. |
Beta Was this translation helpful? Give feedback.
What you describe is what we call a "module". A module can have its own messages and store, it can also query and execute messages in other modules in your chain and it can execute actions at the beginning and end of every block. Please take a look at these docs: https://docs.cosmos.network/main/building-modules/intro
Regarding your specific use case I can't give you very specific advice, other than to investigate about oracles or interchain queries.