scripts: Update for amino/launchpad refactor

This commit is contained in:
willclarktech
2021-03-25 11:00:10 +01:00
parent a33c1ff1f1
commit 2d9638bedb
8 changed files with 9 additions and 13 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env node
/* eslint-disable @typescript-eslint/naming-convention */
const { encodeSecp256k1Pubkey, makeCosmoshubPath, Secp256k1HdWallet } = require("@cosmjs/launchpad");
const { encodeSecp256k1Pubkey, makeCosmoshubPath, Secp256k1HdWallet } = require("@cosmjs/amino");
const prefix = "wasm";
const accountsToCreate = [
+1 -1
View File
@@ -1,9 +1,9 @@
#!/usr/bin/env node
/* eslint-disable @typescript-eslint/naming-convention */
const { coins } = require("@cosmjs/amino");
const { Random } = require("@cosmjs/crypto");
const { Bech32 } = require("@cosmjs/encoding");
const { coins } = require("@cosmjs/launchpad");
const { DirectSecp256k1HdWallet } = require("@cosmjs/proto-signing");
const { assertIsBroadcastTxSuccess, SigningStargateClient } = require("@cosmjs/stargate");