Update cosmwasm-launchpad dependencies
This commit is contained in:
parent
ea03958398
commit
cc9d7b29d7
@ -40,7 +40,7 @@
|
||||
"!**/testdata/"
|
||||
],
|
||||
"dependencies": {
|
||||
"@cosmjs/cosmwasm": "^0.24.0-alpha.10",
|
||||
"@cosmjs/cosmwasm-launchpad": "^0.24.0-alpha.10",
|
||||
"@cosmjs/crypto": "^0.24.0-alpha.10",
|
||||
"@cosmjs/encoding": "^0.24.0-alpha.10",
|
||||
"@cosmjs/faucet-client": "^0.24.0-alpha.10",
|
||||
|
||||
@ -37,7 +37,7 @@ export async function main(originalArgs: readonly string[]): Promise<void> {
|
||||
|
||||
const imports = new Map<string, readonly string[]>([
|
||||
[
|
||||
"@cosmjs/cosmwasm",
|
||||
"@cosmjs/cosmwasm-launchpad",
|
||||
[
|
||||
// cosmwasmclient
|
||||
"Account",
|
||||
|
||||
@ -48,7 +48,7 @@
|
||||
"postdefine-proto": "prettier --write \"src/codec/generated/codecimpl.*\""
|
||||
},
|
||||
"dependencies": {
|
||||
"@cosmjs/cosmwasm": "^0.24.0-alpha.10",
|
||||
"@cosmjs/cosmwasm-launchpad": "^0.24.0-alpha.10",
|
||||
"@cosmjs/crypto": "^0.24.0-alpha.10",
|
||||
"@cosmjs/encoding": "^0.24.0-alpha.10",
|
||||
"@cosmjs/launchpad": "^0.24.0-alpha.10",
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import { Code } from "@cosmjs/cosmwasm";
|
||||
import { Code } from "@cosmjs/cosmwasm-launchpad";
|
||||
import { sha256 } from "@cosmjs/crypto";
|
||||
import { Bech32, fromAscii, fromBase64, fromHex, toAscii, toBase64 } from "@cosmjs/encoding";
|
||||
import { coins, logs, StdFee } from "@cosmjs/launchpad";
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import { Code, CodeDetails, Contract, ContractCodeHistoryEntry, JsonObject } from "@cosmjs/cosmwasm";
|
||||
import {
|
||||
Code,
|
||||
CodeDetails,
|
||||
Contract,
|
||||
ContractCodeHistoryEntry,
|
||||
JsonObject,
|
||||
} from "@cosmjs/cosmwasm-launchpad";
|
||||
import { fromAscii, toHex } from "@cosmjs/encoding";
|
||||
import {
|
||||
Block,
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import { UploadMeta } from "@cosmjs/cosmwasm";
|
||||
import { UploadMeta } from "@cosmjs/cosmwasm-launchpad";
|
||||
import { sha256 } from "@cosmjs/crypto";
|
||||
import { toHex } from "@cosmjs/encoding";
|
||||
import { coin, coins, GasPrice } from "@cosmjs/launchpad";
|
||||
|
||||
@ -9,7 +9,7 @@ import {
|
||||
MigrateResult,
|
||||
UploadMeta,
|
||||
UploadResult,
|
||||
} from "@cosmjs/cosmwasm";
|
||||
} from "@cosmjs/cosmwasm-launchpad";
|
||||
import { sha256 } from "@cosmjs/crypto";
|
||||
import { fromBase64, toAscii, toHex } from "@cosmjs/encoding";
|
||||
import {
|
||||
|
||||
@ -1,4 +1,10 @@
|
||||
import { Code, CodeDetails, Contract, ContractCodeHistoryEntry, JsonObject } from "@cosmjs/cosmwasm";
|
||||
import {
|
||||
Code,
|
||||
CodeDetails,
|
||||
Contract,
|
||||
ContractCodeHistoryEntry,
|
||||
JsonObject,
|
||||
} from "@cosmjs/cosmwasm-launchpad";
|
||||
import { Block, Coin, SearchTxFilter, SearchTxQuery } from "@cosmjs/launchpad";
|
||||
import {
|
||||
Account,
|
||||
|
||||
@ -7,7 +7,7 @@ import {
|
||||
MigrateResult,
|
||||
UploadMeta,
|
||||
UploadResult,
|
||||
} from "@cosmjs/cosmwasm";
|
||||
} from "@cosmjs/cosmwasm-launchpad";
|
||||
import { Coin, CosmosFeeTable, GasLimits, GasPrice, StdFee } from "@cosmjs/launchpad";
|
||||
import { EncodeObject, OfflineSigner, Registry } from "@cosmjs/proto-signing";
|
||||
import { BroadcastTxResponse } from "@cosmjs/stargate";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user