osmosis
osmosis copied to clipboard
The AMM Laboratory
## Background https://github.com/osmosis-labs/osmosis/pull/2440 removed the `debug` osmosis image, but we still have some reference to it in the Makefile: https://github.com/osmosis-labs/osmosis/blob/c4f2cfc68ce9c731cd118c11fd6cc5a014dbe95b/Makefile#L292-L294 We should remove any reference to the `debug` osmosis image...
The BeforeSend hook implementation returns an error gained from the smart contract execution and depends on the info provided with the SC implementation. **Artifacts:** - osmosis/cosmos sdk fork at commit...
## Background Something thats come up a few times is we need a process for between major releases reviewing every state breaking change. This issue details some plans that help...
## Background While Docker is a powerful tool to improve developer performance, it can only hinder it when used improperly. In particular, poorly structured Dockerfiles lead to significant impediments to...
## Background Ref: https://github.com/osmosis-labs/osmosis/pull/2802#discussion_r975861292 We should test our binary search implementation(s) on different bounds (currently all of them use the same min and max value). ## Suggested Design Cases to...
## Background Similar to how we made a test battery for `messages` to check things like encoding, we should make a battery of tests for queries. One thing in the...
--- ./x/tokenfactory/keeper/genesis.go 2022-09-26 13:17:05.034500501 +0000 +++ /tmp/go-mutesting-3740572161/./x/tokenfactory/keeper/genesis.go.5 2022-09-26 13:21:09.982514437 +0000 @@ -19,7 +19,8 @@ ```go for _, genDenom := range genState.GetFactoryDenoms() { creator, _, err := types.DeconstructDenom(genDenom.GetDenom()) if err !=...
## Background Even with extremely generous precision bounds, since we're dealing with non-linear `k` values for our stableswap CFMM it will almost always be possible to trigger an overflow if...
## Background IBC rate limiting needs a contract to be instantiated and limits to be setup for specific channels/assets. We also need to configure the contract in the param ##...
During the audit of the possible BeforeSend hook impact, the Implementation of the hook is analyzed for issues and improvements. **Artifact:** - Full Token Factory [branch](https://github.com/osmosis-labs/osmosis/tree/fullpowered-tokenfactory) holding new features Context...