diff --git a/src/index.ts b/src/index.ts index ff02f52..359493d 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,7 +20,7 @@ const createUser = async (config: any) : Promise => { config.dappchainPrivateKey, config.chainId, config.loomGatewayEthAddress, - GatewayVersion.SINGLESIG + GatewayVersion.MULTISIG ); } @@ -112,20 +112,6 @@ program // DPOS BINDINGS -program - .command("map-accounts") - .description("Connects the user's eth/dappchain addresses") - .action(async function() { - const user = await createUser(config) - try { - console.log('trying to map acc') - await user.mapAccountsAsync(); - console.log('mapped acc') - } catch (err) { - console.error(err); - } - }); - program .command("map-accounts") .description("Connects the user's eth/dappchain addresses")