This module provides KeyValueStore implementation for hfc backed by hashicorp vault
npm install vault-hfc-kvstore
npm install vault-hfc-kvstore
`
1. Import the module
`
var vaultkv = require('vault-hfc-kvstore');
`
1. Create an instance of vault KeyValueStore
`
var vault = vaultkv.newVaultKeyValStore(vaultUrl, vaultToken);
`
1. Set the keyValueStore on chain instance
`
var chain = hfc.newChain(chainName);
// Other initializations for chain
chain.setKeyValStore(vault);
``