Skip to content

Commit

Permalink
pools
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Jun 22, 2023
1 parent 3fbdeb2 commit 0224e9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/osmojs/starship/__tests__/pools.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { generateMnemonic } from '@confio/relayer/build/lib/helpers';
import { assertIsDeliverTxSuccess } from '@cosmjs/stargate';
import { coin, coins } from '@cosmjs/amino';
import Long from 'long';
import { DirectSecp256k1HdWallet } from '@cosmjs/proto-signing';
import { Secp256k1HdWallet } from '@cosmjs/amino';

import { osmosis, google, getSigningOsmosisClient } from '../../src/codegen';
import { useChain, calcShareOutAmount, transferIbcTokens } from '../src';
Expand All @@ -27,7 +27,7 @@ describe('Pool testing over IBC tokens', () => {
denom = getCoin().base;

// Initialize wallet
wallet = await DirectSecp256k1HdWallet.fromMnemonic(generateMnemonic(), {
wallet = await Secp256k1HdWallet.fromMnemonic(generateMnemonic(), {
prefix: chainInfo.chain.bech32_prefix
});
address = (await wallet.getAccounts())[0].address;
Expand Down

0 comments on commit 0224e9f

Please sign in to comment.