UNPKG

@ethersphere/swarm-cli

Version:
34 lines (27 loc) 1.29 kB
import { LeafCommand } from 'furious-commander' import { getPrintableIdentityType, getSimpleWallet, isSimpleWallet, isV3Wallet } from '../../service/identity' import { createKeyValue } from '../../utils/text' import { IdentityCommand } from './identity-command' export class List extends IdentityCommand implements LeafCommand { public readonly name = 'list' public readonly alias = 'ls' public readonly description = 'List keypairs which can be used to sign chunks' public run(): void { super.init() this.throwIfNoIdentities() for (const [identityName, identity] of Object.entries(this.commandConfig.config.identities)) { const { wallet, identityType } = identity let address = '' if (isV3Wallet(wallet, identityType)) { address = `0x${wallet.address}` } else if (isSimpleWallet(wallet, identityType)) { address = getSimpleWallet(wallet).getAddressString() } this.console.log(createKeyValue('Name', identityName)) this.console.log(createKeyValue('Type', getPrintableIdentityType(identity.identityType))) this.console.log(createKeyValue('Address', address)) this.console.quiet(identityName, getPrintableIdentityType(identity.identityType), address) this.console.divider() } } }