Skip to content

Commit 71f101f

Browse files
committed
- clean up
1 parent b816827 commit 71f101f

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

cli-typescript/src/cmds/general.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,6 @@ export const createNewWalletCmd = () =>
4141
new Command('create-wallet')
4242
.command('create-wallet <symbol>')
4343
.description('create a new wallet for a collection')
44-
.addOption(
45-
getForceOption(
46-
`
47-
overwrite the existing wallet.json for the collection.
48-
Note: this will NOT delete the existing wallet in turnkey if a wallet with the same collection name already exists.
49-
Please reconcile manually in turnkey if you want to delete the existing wallet.
50-
`,
51-
false,
52-
),
53-
)
5444
.action(newWalletAction);
5545

5646
export const initContractCmd = () =>

cli-typescript/src/utils/ContractManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ export class ContractManager {
360360
const data = encodeFunctionData({
361361
abi: [ERC1155M_ABIS.setTransferable],
362362
functionName: ERC1155M_ABIS.setTransferable.name,
363-
args: [false],
363+
args: [!freeze],
364364
});
365365

366366
const txHash = await this.sendTransaction({

cli-typescript/src/utils/cmdActions/newProjectAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const newProjectAction = async (
5151
`Successfully set up new project for ${symbol}`,
5252
`
5353
path: ${projectStore.root}
54-
walletInfo: ${JSON.stringify(walletInfo, null, 2)}
54+
${walletInfo ? `walletInfo: ${JSON.stringify(walletInfo, null, 2)}` : ''}
5555
5656
${signerInfo}
5757
`,

0 commit comments

Comments
 (0)