Update Aug 29th 2019: Hyperledger Composer has been deprecated. Please see the README for more information.

Hyperledger Composer Card List

Composer Card List

List all business network cards stored in the local wallet, or if a card is specified, display details of that business network card.

Copy
composer card list --card admin@tutorial-network

Syntax

Copy
Options:
  --help         Show help  [boolean]
  -v, --version  Show version number  [boolean]
  --card, -c     The name of the card to list  [string]
  --quiet, -q    Only display the card name  [boolean]

Javascript API Example

Copy
const CardList = require('composer-cli').Card.List;

let options = {
  card: 'admin@tutorial-network'
};

CardList.handler(options);