From a3f5c7617509acf690fdc6b9959f5bf7a4278de2 Mon Sep 17 00:00:00 2001 From: JeremyParish69 <95667791+JeremyParish69@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:51:08 -0600 Subject: [PATCH 1/7] Update pool-setup.md --- docs/overview/integrate/pool-setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/overview/integrate/pool-setup.md b/docs/overview/integrate/pool-setup.md index 72b3e9ccf..d1ee64065 100644 --- a/docs/overview/integrate/pool-setup.md +++ b/docs/overview/integrate/pool-setup.md @@ -236,7 +236,7 @@ For parameter values: ## Weighted Pool -Weighted Pools on Osmosis are essentially a copy of [Balancer’s v1 implementation](https://balancer.fi/whitepaper.pdf) of a Liquidity Pool, which uses the weighted constant product formula: `k = x^wx * y^wy`. +Weighted Pools on Osmosis are essentially a copy of Balancer’s v1 implementation of a Liquidity Pool, which uses the weighted constant product formula: `k = x^wx * y^wy`. ### Create Pool @@ -294,7 +294,7 @@ There are recommendations for creating balancer pools: ## Stableswap Pool -[Stableswap Pools on Osmosis](https://osmosis.zone/blog/osmosis-dex-stableswap) are inspired by [Curve’s StableSwap implementation](https://berkeley-defi.github.io/assets/material/StableSwap.pdf), allowing for a targeted flat section of the price curve where the relative values of the tokens are meant to be consistent (e.g., with a pair of USD stablecoins because both are meant to be worth $1.00 USD), although technically uses a slightly different(, and more computationally efficient,) formula: k = xy(x^2 + y^2) +Stableswap Pools on Osmosis are inspired by [Curve’s StableSwap implementation](https://berkeley-defi.github.io/assets/material/StableSwap.pdf), allowing for a targeted flat section of the price curve where the relative values of the tokens are meant to be consistent (e.g., with a pair of USD stablecoins because both are meant to be worth $1.00 USD), although technically uses a slightly different(, and more computationally efficient,) formula: k = xy(x^2 + y^2) ### Create Pool From 3dafe20016709cc5ed9ff770c1f705e7349be6a3 Mon Sep 17 00:00:00 2001 From: JeremyParish69 <95667791+JeremyParish69@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:53:14 -0600 Subject: [PATCH 2/7] Update registration.md --- docs/overview/integrate/registration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/integrate/registration.md b/docs/overview/integrate/registration.md index 74d9a3cc7..811fd4cff 100644 --- a/docs/overview/integrate/registration.md +++ b/docs/overview/integrate/registration.md @@ -112,7 +112,7 @@ The Osmosis Labs' Assetlist Registry is used to serve asset metadata displayed o 1. Review the [Osmosis Assetlists Registry](https://github.com/osmosis-labs/assetlists) docs and schema: 1. [README.md](https://github.com/osmosis-labs/assetlists/blob/main/README.md) 2. [LISTING.md](https://github.com/osmosis-labs/assetlists/blob/main/LISTING.md) - 3. [assetlist.schema.json](https://github.com/osmosis-labs/assetlists/blob/main/assetlist.schema.json) + 3. [zone_assets.schema.json](https://github.com/osmosis-labs/assetlists/blob/main/zone_assets.schema.json) 2. Submit a pull request with necessary changes to enlist the asset: - Ensure the source chain in included in `osmosis-1/osmosis.zone_chains.json`. - If not yet registered, add the chain object to the end of the `chains` array. From 57438ae5b988dcf51b0e67249aecebef7f1d2b4b Mon Sep 17 00:00:00 2001 From: JeremyParish69 <95667791+JeremyParish69@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:56:29 -0600 Subject: [PATCH 3/7] Update pyth.md --- docs/overview/integrate/external_projects/pyth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/integrate/external_projects/pyth.md b/docs/overview/integrate/external_projects/pyth.md index 8a2ec585f..71f80aa2e 100644 --- a/docs/overview/integrate/external_projects/pyth.md +++ b/docs/overview/integrate/external_projects/pyth.md @@ -10,7 +10,7 @@ Cosmwasm contracts can update and fetch the Pyth prices using the Pyth Cosmwasm ## Update Price Feeds -The mechanism by which price feeds are updated on Cosmwasm is explained in the [Pyth documentation](https://docs.pyth.network/documentation/pythnet-price-feeds/pull-updates). The [`@pythnetwork/price-service-client` TypeScript package](https://github.com/pyth-network/pyth-crosschain/tree/main/price_service/client/js) can be used to fetch the latest price feed data which then can be passed to the contract as the `UpdatePriceFeeds` ExecuteMsg. +The mechanism by which price feeds are updated on Cosmwasm is explained in the [Pyth documentation](https://docs.pyth.network/price-feeds/fetch-price-updates). The [`@pythnetwork/price-service-client` TypeScript package](https://github.com/pyth-network/pyth-crosschain/tree/main/price_service/client/js) can be used to fetch the latest price feed data which then can be passed to the contract as the `UpdatePriceFeeds` ExecuteMsg. Pyth publishes prices for two kinds of feeds: From 4b897c2ab5419fc3882cee93e739fb77c9403f7a Mon Sep 17 00:00:00 2001 From: JeremyParish69 <95667791+JeremyParish69@users.noreply.github.com> Date: Mon, 26 Aug 2024 12:59:40 -0600 Subject: [PATCH 4/7] Update on-chain.md --- docs/overview/integrate/on-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/integrate/on-chain.md b/docs/overview/integrate/on-chain.md index f8fd84bcd..49ce2ca3b 100644 --- a/docs/overview/integrate/on-chain.md +++ b/docs/overview/integrate/on-chain.md @@ -66,7 +66,7 @@ cargo add osmosis-std ### Usage -The following is an example of how you might use types and querier in your CosmWasm contract, for more info, see the crate's [doc.rs](https://docs.rs/osmosis-std/osmosis_std/types/osmosis/concentratedliquidity/index.html). +The following is an example of how you might use types and querier in your CosmWasm contract, for more info, see the crate's [doc.rs](https://docs.rs/osmosis-std/latest/osmosis_std/types/osmosis/concentratedliquidity/index.html). Note that queries are only available if they are [whitelisted here](https://github.com/osmosis-labs/osmosis/blob/main/wasmbinding/stargate_whitelist.go). From cfc8e7fe8618dc5a52da60181bcb82d0f680222b Mon Sep 17 00:00:00 2001 From: JeremyParish69 <95667791+JeremyParish69@users.noreply.github.com> Date: Mon, 26 Aug 2024 13:01:57 -0600 Subject: [PATCH 5/7] Update osmosis.md --- docs/overview/educate/osmosis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/educate/osmosis.md b/docs/overview/educate/osmosis.md index d854f347a..e58baf591 100644 --- a/docs/overview/educate/osmosis.md +++ b/docs/overview/educate/osmosis.md @@ -8,7 +8,7 @@ As IBC continues to explode – with more than 50 blockchains connected and doze ![](../../assets/welcome.png) -The [Osmosis Ecosystem](https://osmosis.zone/ecosystem) is a suite of premier, DAO-gated dApps that are tightly integrated into the Osmosis AMMs and IBC routing capabilities. Dozens of developer teams are building index tokens, options, perps, stops and limit orders, automated trading, yield vaults, NFTs, and more. +The [Osmosis App Store](https://app.osmosis.zone/apps) is a suite of dApps that are tightly integrated into the Osmosis AMMs and IBC routing capabilities. Many developer teams are building index tokens, options, perps, stops and limit orders, automated trading, yield vaults, NFTs, and more. With new apps and features like stableswap, concentrated liquidity, rate-limiting, in-protocol MEV capture, and more going live all the time, Osmosis is continuing to expand its moat as the only full-service, cross-chain exchange and DeFi hub, one that rivals the smooth user experience of a CEX without compromising on the benefits of decentralized finance – self-custody, trust-minimized transactions, direct on-chain access, and privacy. From 01cdbced2a451453636631c86fe44668f01b6d80 Mon Sep 17 00:00:00 2001 From: JeremyParish69 <95667791+JeremyParish69@users.noreply.github.com> Date: Mon, 26 Aug 2024 13:06:22 -0600 Subject: [PATCH 6/7] Update protorev.md --- docs/overview/features/protorev.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview/features/protorev.md b/docs/overview/features/protorev.md index 2a7f1c18f..e61c3f14e 100644 --- a/docs/overview/features/protorev.md +++ b/docs/overview/features/protorev.md @@ -18,7 +18,7 @@ ProtoRev is a module that: 8. Burns the same amount of asset previously minted to execute the swap 9. Redistributes the profit captured back to the Osmosis ecosystem based on Governance. -For ecosystem context about the purpose of the module, please see the ProtoRev governance proposal discussion: [https://gov.osmosis.zone/discussion/7078-skip-x-osmosis-proposal-to-capture-mev-as-protocol-revenue-on-chain](https://gov.osmosis.zone/discussion/7078-skip-x-osmosis-proposal-to-capture-mev-as-protocol-revenue-on-chain) +For ecosystem context about the purpose of the module, please see the ProtoRev governance proposal discussion: [https://commonwealth.im/osmosis/discussion/7078-skip-x-osmosis-proposal-to-capture-mev-as-protocol-revenue-on-chain](https://commonwealth.im/osmosis/discussion/7078-skip-x-osmosis-proposal-to-capture-mev-as-protocol-revenue-on-chain) # Concepts From 9da7c79dfe164f5272542fbd7b5800c02b0cd1e1 Mon Sep 17 00:00:00 2001 From: JeremyParish69 <95667791+JeremyParish69@users.noreply.github.com> Date: Mon, 26 Aug 2024 13:06:58 -0600 Subject: [PATCH 7/7] Update ibc-relayers-list.md --- docs/osmosis-core/relaying/ibc-relayers-list.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/osmosis-core/relaying/ibc-relayers-list.md b/docs/osmosis-core/relaying/ibc-relayers-list.md index 45b3f0fdc..413270d2b 100644 --- a/docs/osmosis-core/relaying/ibc-relayers-list.md +++ b/docs/osmosis-core/relaying/ibc-relayers-list.md @@ -7,7 +7,6 @@ sidebar_position: 4 | Relayer | Contact | How to Support | Support for new relayers | Chains Relaying with Osmosis | | -------- | -------- | --- | --- | --- | | [3ventures.io](https://www.3ventures.io/) | team@3ventures.io
Twitter Twitter [@3venturesio](https://twitter.com/3venturesio)
Discord Discord 3venturesio#8876
Telegram Telegram [Threeventures chat](https://t.me/threeventures), @ossca, @ElonMuscleMoon, @VitalikButter | :lock: Delegate to 3ventures.io on: Chihuahua, Stargaze, Deweb, Axelar, Gravity Bridge, Umee, Comdex, Evmos
:pray: Donations accepted @ `osmo1mlzgx9zsncyrhzl23w9dt6c9zphsx5h87033xz` | :information_desk_person: Supports new relayers | Umee, Stargaze, Gravity Bridge, Chihuahua, Comdex, Evmos | -| [BlockNgine](https://blockngine.io/) | support@blockngine.io
Twitter Twitter [@BlockNgine](https://twitter.com/BlockNgine)
Discord Discord BlockNgine#7943
Telegram Telegram [BlockNgine chat](https://t.me/BlockNgine), @NGINE | :lock: Delegate to BlockNgine on: [Osmosis](https://wallet.keplr.app/#/osmosis/stake?modal=detail&chainId=osmosis-1&validator=osmovaloper1pxphtfhqnx9ny27d53z4052e3r76e7qq495ehm), Cardano, Terra, Sifchain, Injective, Osmosis, Secret, Harmony, Kava, Band, Mina, Akash, Sentinel, Comdex, e-Money, Odin, Konstellation
:pray: Donations accepted @ `osmo1a0q8rqxy9npr3hysrammsegrxwekuamwdf8gy8` | :heavy_dollar_sign: Offers Relaying as a Service (RaaS) (contact directly for pricing)
:information_desk_person: Supports new relayers | Secret, Akash, Kava, Comdex | | [Blockscope](https://blockscope.net/) | blockscope@protonmail.com
Discord Discord feida \| Blockscope.net#8484
Telegram Telegram [Blockscope Group](https://t.me/joinchat/fQpJZhQzpaRkOGE0) | :lock: Delegate to Blockscope.net on: Gravity Bridge, Umee, AssetMantle, Fetch.ai, OmniFlix, Ixo, Ki, BitCanna, Crescent, Chronic, Galaxy
:pray: Donations accepted @ `osmo1exmqgkjw5wv099ce906n0w08jp7xrgjzynzm8u` | :heavy_dollar_sign: Offers Relaying as a Service (RaaS) (contact directly for pricing)
:information_desk_person: Supports new relayers | Cosmos Hub, Gravity Bridge, Umee, AssetMantle, Fetch.ai, OmniFlix, Galaxy, Ixo, Ki, BitCanna | | [BloClick](https://bloclick.com/) | bloclick@protonmail.com
Discord Discord ivandiazperez#5927 | :lock: Delegate to BloClick on: Ixo, Fetch.ai, Bitcanna, Regen, AssetMantle, Desmos, Stargaze, OmniFlix, Gravity Bridge, Chronic, Umee | :heavy_dollar_sign: Offers Relaying as a Service (RaaS) (contact directly for pricing)
:information_desk_person: Supports new relayers | OmniFlix, Stargaze | | [Bro_n_Bro](https://monitor.bronbro.io/) | Twitter Twitter [@bro_n_bro](https://twitter.com/Bro_n_Bro)
Telegram Telegram [Bro_n_Bro chat](https://t.me/bro_n_bro_community) | :lock: Delegate to Bro_n_Bro on: [Osmosis](https://wallet.keplr.app/#/osmosis/stake?modal=detail&chainId=osmosis-1&validator=osmovaloper13tk45jkxgf7w0nxquup3suwaz2tx483xe832ge), Bostrom, Osmo, e-Money, Juno, Stars, Microtick, Gravity, OmniFlix, Evmos | :information_desk_person: Supports new relayers | Bostrom | @@ -27,4 +26,4 @@ sidebar_position: 4 | [StakeLab](https://www.stakelab.fr/) | hello@stakelab.fr
Twitter Twitter [@StakeLab](https://twitter.com/StakeLab)
Telegram Telegram [StakeLab chat](https://t.me/stakelab_fr) | :lock: Delegate to StakeLab on: [Osmosis](https://wallet.keplr.app/#/osmosis/stake?modal=detail&chainId=osmosis-1&validator=osmovaloper16q8xd335y38xk2ul67mjg27vdnrcnklt4wx6kt), Akash, Asset Mantle, Axelar, Band Protocol, Bitcanna, Bitsong, Cerberus, Certik, Chihuahua, Comdex, Cosmos Hub, Decentr, Desmos, Dig Chain, E-money, Evmos, Fetch Ai, Galaxy, Gravity Bridge, Injective, Iris, Ixo, Juno, Kava, Ki Chain, Konstellation, Lum, Medibloc, Meme, Microtick, Nomic, Omniflix, Osmosis, Persistence, Regen, Rizon, Secret, Sentinel, Sifchain, Sommelier, Stargaze, Starname, Terra, Umee, Vidulum | :information_desk_person: Supports new relayers | Almost all our blockchains supported | | [strangelove-ventures](https://www.strangelove.ventures/) | Twitter Twitter [@strangelovefund](https://twitter.com/strangelovefund), [@jack_zampolin](https://twitter.com/jack_zampolin), [@Etheral0ne](https://twitter.com/Ethereal0ne) | :lock: Delegate to strangelove-ventures on: [Osmosis](https://wallet.keplr.app/#/osmosis/stake?modal=detail&chainId=osmosis-1&validator=osmo1r2u5q6t6w0wssrk6l66n3t2q3dw2uqny0l6fwk), Cosmos Hub, Akash, Axelar, Crescent, Sentinel, OmniFlix
:pray: Donations accepted @ `osmo1r2u5q6t6w0wssrk6l66n3t2q3dw2uqny0l6fwk` | :heavy_dollar_sign: Offers Relaying as a Service (RaaS) (contact directly for pricing)
:information_desk_person: Supports new relayers | Cosmos Hub, Juno, Axelar, Sommelier | | [Witval](http://Vitwit.com) | validators@vitwit.com
Twitter Twitter @vitwit_, @anilcse_
Telegram Telegram @anilcse | :lock: Delegate to Witval on: [Osmosis](https://wallet.keplr.app/#/osmosis/stake?modal=detail&chainId=osmosis-1&validator=osmovaloper1ddle9tczl87gsvmeva3c48nenyng4n56yscals), Cosmos Hub, Regen, Akash, Desmos, Juno, Stargaze, Gravity Bridge, Evmos, Agoric, Comdex, e-Money, OmniFlix, Persistence, Sentinel | :heavy_dollar_sign: Offers Relaying as a Service (RaaS) (contact directly for pricing)
:information_desk_person: Supports new relayers | Cosmos Hub, Regen, Akash, Juno, Persistence, Comdex, Sentinel, Stargaze, Gravity Bridge, Provenance | -| [Crypto Assassin] | cryptoassassinos@gmail.com
Twitter Twitter [@CryptoAssassi11](https://twitter.com/CryptoAssassi11)
Discord Discord: Crypto Assassin#8752
Telegram Telegram @Khuwarzmi | :lock: Delegate to Crypto Assassin on: [Osmosis](https://wallet.keplr.app/#/osmosis/stake?modal=detail&chainId=osmosis-1&validator=osmovaloper1f6wx6r7567wu5j4ysskshkmsrk29sme97x25ca), Chihuahua | :information_desk_person: Supports new relayers | \ No newline at end of file +| [Crypto Assassin] | cryptoassassinos@gmail.com
Twitter Twitter [@CryptoAssassi11](https://twitter.com/CryptoAssassi11)
Discord Discord: Crypto Assassin#8752
Telegram Telegram @Khuwarzmi | :lock: Delegate to Crypto Assassin on: [Osmosis](https://wallet.keplr.app/#/osmosis/stake?modal=detail&chainId=osmosis-1&validator=osmovaloper1f6wx6r7567wu5j4ysskshkmsrk29sme97x25ca), Chihuahua | :information_desk_person: Supports new relayers |