Skip to content

Commit

Permalink
refactor(amplifier): use common utils instead of evm ones
Browse files Browse the repository at this point in the history
  • Loading branch information
eguajardo committed Aug 28, 2024
1 parent b0fc268 commit b5be09d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cosmwasm/deploy-contract.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require('dotenv').config();
const { isNil } = require('lodash');

const { isNumber, printInfo, loadConfig, saveConfig, prompt, getChainConfig } = require('../evm/utils');
const { isNumber, printInfo, loadConfig, saveConfig, prompt, getChainConfig } = require('../common');
const {
prepareWallet,
prepareClient,
Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/submit-proposal.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const {
instantiate2AddressForProposal,
governanceAddress,
} = require('./utils');
const { isNumber, saveConfig, loadConfig, printInfo, prompt } = require('../evm/utils');
const { isNumber, saveConfig, loadConfig, printInfo, prompt } = require('../common');
const {
StoreCodeProposal,
StoreAndInstantiateContractProposal,
Expand Down

0 comments on commit b5be09d

Please sign in to comment.