Remove package cosmwasm-launchpad
See original GitHub issueNobody seems to be using this.
- Let cosmwasm-stargate not depend on cosmwasm-launchpad anymore (#848)
- Merge
packages/cli/examples/coralnet.ts
andpackages/cli/examples/helpers.ts
into a new CosmWasm+Stargatre example (#849) - Delete cosmwasm-launchpad from repo (850)
- Mark @cosmjs/cosmwasm-launchpad and @cosmjs/cosmwasm as deprecated on npm
Issue Analytics
- State:
- Created 2 years ago
- Comments:10 (9 by maintainers)
Top Results From Across the Web
Remove Launchpad client #947 - cosmos/cosmjs - GitHub
The Launchpad client in @cosmjs/launchpad connects to Cosmos SDK 0.37-0.39 networks. Nobody seems to be running such networks anymore.
Read more >@cosmjs/cosmwasm-launchpad - npm
Start using @cosmjs/cosmwasm-launchpad in your project by running `npm i ... TypeScript icon, indicating that this package has built-in type ...
Read more >Develop dApp | CosmWasm Documentation
Note that we remove OperationResult , both the route and the component, since we won't be making transactions in this dApp.
Read more >Keeping multiple maps in sync in query and index in ... - Medium
IndexedMap will simply keep your multiple maps in-sync. That means, instead of writing these and manually adding/removing each map: You can ...
Read more >Tutorial: Local Gaia testnet and CosmJS transaction
package.jsonreporter: specslow: 75timeout: 2000ui: bddrequire: ... import { coins, GasPrice } from "@cosmjs/launchpad";import ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Given that Secret uses a fork of CosmJS anyways and there is great potential to reuse latest upstream dependencies, we’ll remove the package now. I think replacing some of the higher level functionality with a fork while building on top of lower level CosmJS packages is a solid long term solution.
Correction:
x/wasm
versions. Of course we expect you to embed it in your app (and I think you swap out with a customwasmvm
which is great for your use case). The main point is it is tested with a certain set of messages and queries and handlers and if those differ, the CosmJS code may not match.With stargate we put more effort into making it generic. Thus, you could import all the standard components and build
SigningSecretClient
on those same basic points, not wrappingSigningCosmWasmClient
but at the same level as it. That means, just one package for you to maintain and the rest is upstream.