File tree Expand file tree Collapse file tree 3 files changed +2
-12
lines changed
Expand file tree Collapse file tree 3 files changed +2
-12
lines changed Original file line number Diff line number Diff 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
5646export const initContractCmd = ( ) =>
Original file line number Diff line number Diff 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 ( {
Original file line number Diff line number Diff 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 ` ,
You can’t perform that action at this time.
0 commit comments